Microsoft Office Integration

Size: px
Start display at page:

Download "Microsoft Office Integration"

Transcription

1 Microsoft Office Integration Product version: 4.60 Document version: 1.0 Document creation date: Purpose This technical note describes the functionality of the Microsoft Office integration with EPiServer from a technical point of view, including customization and filters. TECHNICAL NOTE

2 2 Microsoft Office Integration Table of Contents INTRODUCTION 2 SYSTEM REQUIREMENTS... 2 OFFICE INTEGRATION PACKAGE... 3 THE PUBLISHING PROCESS 3 OVERVIEW... 3 DETAILED DESCRIPTION... 3 FILTERS 6 STRICT FILTER... 7 TOLERANT FILTER... 7 CHARACTERISTICS AND LIMITATIONS OF THE CONVERSION... 7 CUSTOMIZATION 9 GETTING STARTED... 9 CONFIGURING WIZARDS CONFIGURING SCRIPTS CONFIGURING THE START PAGE CONFIGURING FILTERS DOCUMENT PAGE TEMPLATE 12 WAI AND XHTML 13 SECURITY ISSUES 14 Introduction The EPiServer Office Integration has been created to make it possible to publish content into EPiServer using Microsoft Office programs Word, Excel or PowerPoint. The user downloads a client application that will install an add-in in Word, Excel and PowerPoint. A new toolbar button, Publish to EPiServer, is available to help the user create a new page in EPiServer based on the current document. This technical note requires that you are familiar with the EPiServer Office Integration as described in the white paper, Microsoft Office Integration. System Requirements The Microsoft Office integration has the following client requirements: Operating system Microsoft Windows 2000 Service Pack 2 or Microsoft Windows XP. Microsoft Office XP / 2002 or Microsoft Office The Microsoft Office integration has the following requirements on the server: EPiServer 4.40 or later. Forms Authentication or Integrated Authentication with automatic logon Note Basic authentication is not supported.

3 The Publishing Process 3 Office Integration Package The EPiServer Office Integration package consists of a server-side and a client-side application that communicate with each other using HTTP. SSL is supported. The server side is built into EPiServer and is activated from Admin mode by setting the appropriate access rights for the function in Permissions for Functions under the Security section of the Config tab in Admin mode. The client side application is installed from Edit mode under the Microsoft Office Add-In tab on the EPiServer welcome page. The Publishing Process Overview When you select Publish to EPiServer in one of the supported Microsoft Office applications, a wizard is activated. In the first part of the wizard the user selects a site and location to publish the page to. The next steps in the wizard are, technically, Web pages placed on the Web server, but shown in the wizard. After the user has chosen to save and view, a script is downloaded from the server that creates local HTML documents, images and other files. The resulting files are then uploaded to the EPiServer page folder of the newly created page and a filter is activated on the server that creates the final HTML output. Detailed Description The main flow can be divided into the following parts: 1. Select location, enter metadata and properties in the wizard. 2. Creation of the EPiServer page. 3. Preparation of HTML. 4. Uploading files. 5. Filtering of the HTML content. 6. Preview. Step 1 The Wizard The most visible part of the solution is the wizard, which is activated from the Microsoft Office programs Word, Excel and PowerPoint. First, the wizard lets the user choose the EPiServer site to publish to. (Information about EPiServer Web sites that are available for the user is stored in the registry together with an activation key.) When the user selects a Web site, the wizard will contact the server using a Web service, receive pages from the site and make it possible for the user to choose a location for the new page. If no password or session cookie has been stored earlier, a login prompt will appear. A session cookie for an authenticated connection will be stored until the user logs off the computer. Note If the Microsoft Office document was unsaved, the user will be prompted to save the document or cancel before the process continues.

4 4 Microsoft Office Integration Note When a document is published for the first time, a Microsoft Office property will be placed in the document to describe where the document has been published, if the AllowDocumentUpdate property is used on the page type and set to true. This applies, for example, on the Document page type by default. If a user tries to republish a document that has already been published, a warning appears. The user can now decide if the EPiServer page based on the document should be updated or if a new page should be created. When the user has selected a location for the page, an EPiServer page type must be selected. This step has the same behavior as the "Create new page" functionality in EPiServer and will display page types based on the allowed child page types from the parent page type. If the parent page only allows one kind of page type, the wizard will jump to the next step. As we need to convert the source document to fit the page type we add another restriction that the page type needs both a configured filter, script and wizard for the current document type (based on the extension). By default all page types have support for extensions.doc,.xls and.ppt. The next step in the wizard will make it possible for the user to enter metadata for the page. The fields that will be available are configured by the system administrator or developer. A selection of metadata will be displayed by default, such as page name. The fields shown are ordinary EPiServer properties and will behave exactly as they would if they were shown in EPiServer Edit mode.

5 The Publishing Process 5 Tip! If you want to add complex custom functionality in a step, configure a step in the wizard to be rendered by a custom user control. Note The DHTML editor is not supported in the wizard, if you need to add a property to let the user enter text, you should use an ordinary text area. Step 2 - Create the EPiServer Page The wizard is completed by selecting Save and view. This will activate the next step in the publishing process, which is the creation of an unpublished page in EPiServer. (The page will be published later in the process.) After the page has been created with the data entered by the user, some information is returned to the client, e.g. Page ID, to be able to continue with the next step. Step 3 - Preparing Data on the Client When a page has been created, the process of preparing the data to be sent to the server will start. All Office programs can produce an HTML version of the document. The basic HTML preparation is therefore done on the client side using the program that the document was created in. The preparation is from a technical point of view handled by a script file (.wsc), which is downloaded from the Web server. This also means that a developer can create new script files without updating the client computers. You can configure different scripts for different EPiServer page types and different Office applications (actually different file extensions). All scripts will produce output in the form of HTML files, images and other resources. These files will be placed in a temporary, local resource folder. Tip! If you want to automatically create publication formats other than HTML (e.g. PDF, RTF or XML), add this functionality to a custom script file. The final output of a customized format should be placed in the Resource Folder to be automatically uploaded. Note If the property IsDocumentPageType is not present on the page, the original document will not be uploaded. The built-in scripts will also customize the output as this property indicates that the rich HTML version is not needed in, for example, PowerPoint. This property exists in the new page template Document. Step 4 Uploading Files The client application will upload all files to EPiServer by posting one file at a time to the server. If a file is larger than 4MB in size, it will be split into smaller parts to make sure that an upper restriction in the ASP.NET environment is not hit and to keep memory usage down.

6 6 Microsoft Office Integration Step 5 - Filtering and Final Adjustments When the page is created and files are uploaded, a Web Service is called to commit data from the uploaded files to properties of the page. This Web Service will start an HTML washer on the server to clean the HTML produced by the client based on server defined rules. Microsoft Office programs often produce some unwanted HTML tags that will not be displayed in a proper way on the Web site, which may interfere with the overall Web site design. Some of them will also break XHTML 1.1 and WAI compatibility. As a result of this, the filter will need to remove some HTML tags used to build up the document design to make sure it gets adapted to EPiServer. One advantage of the filter is that it has support to replace styles used in Word with styles used on the Web site. This has to be configured manually if you use custom styles on your Web site other than the default H1-H6. As of EPiServer 4.30 all style sheets are configured for paragraphs that use H1-H6 by default. For further information on the filters, refer to the Filters chapter. Tip! If you want to programmatically adjust the page created by the Office Integration package, listen to the EPiServer.ClientTools.ContentImport.ImportedPage event that will be triggered before the page is saved with the new content. For example, you could take the content created and add index to the page, adjust internal links or split the page into more pages. You can also use any information or file uploaded from the client side conversion process, for example adding customized metadata from the document. Step 6 Preview The user previews the document and selects Publish when satisfied with the document. If the user selects Cancel the document and the uploaded files will be deleted. Filters The conversion of Microsoft Office documents from Office format to EPiServer format consists of two main steps. The first step uses the Office functionality to save the document in HTML format, as described in the previous chapter. The second step uses a filter to remove unnecessary formatting code and to adapt the document for EPiServer. This chapter describes the filter functionality. Depending on which filter is used, you can decide which formatting code is to be removed, which is to be allowed and which is to be modified. At the present there are two filter levels: a strict level and a tolerant level. The strict filter removes almost all formatting in order to fully apply the EPiServer Web style sheet (CSS formatting) instead, in accordance with the current XHTML recommendations. The tolerant filter allows a greater part of the formatting code in order to preserve the formatting of tables etc., giving a result that agrees more with the original document. However, this alternative does not fully live up to the current recommendations. When the filter has been completed, the content will be saved into a predefined property of the page defined in the filter configuration. This is by default the MainBody property. The EPiServer Office Integration package does not only produce a filtered HTML edition. It also saves the complete HTML representation produced by the Office program if the IsDocumentPageType property has been set. This is especially interesting to use when publishing Excel or PowerPoint documents. A published PowerPoint presentation is fully operational even when saved as HTML. The problem is that it will not fit a normal Web page and because of this, the Document template provided in the package will open this pure HTML version in a new window. The Document template does not use filtering at all and enables a very rich view of a document.

7 Filters 7 Strict Filter The strict version of the filter is designed to remove all inline formatting, to make the resulting HTML rely merely on CSS formatting, in accordance with current XHTML recommendations. Applying this filter will result in the following: Font, font size and font colors are removed. Before filtration, this formatting is included in the style attribute of a <span> tag, and all <span> tags are removed. Table formatting is removed colors, alignments, widths/heights etc. Before filtration, some of this formatting is included in the style attribute of a <span> tag, and all <span> tags are removed. The rest is removed from the corresponding tags (<table>/<tr>/<td>). Bold/Italic/Underlined text format is preserved. Formatting is made by <b>/<i>/<u> tags, which are preserved. Image alternative texts are preserved. Attributes of the <img> tag and these attributes are preserved. Hyperlink information is preserved. Attributes of the <a> tag and these attributes are preserved. Hyperlink indices are preserved. Attributes of the <a> tag and these attributes are preserved. Empty paragraphs (caused by blank lines) are removed. Before filtration, these are represented by <p> </p>, but they are removed. Script blocks and xml blocks are removed. Tolerant Filter The tolerant version of the filter is designed to remove some of the inline formatting, to make the resulting HTML rely both on CSS formatting in combination with inline formatting. This does not fully live up to the current XHTML recommendations, but is a compromise to make the Office integration as helpful as possible for editors by giving them the expected results when converting their documents to EPiServer. Applying this filter will result in the following: Font family is removed in order to assure Web style according to the style sheet. However, font size and font colors are preserved in tables. Font size and font colors in tables consist of the style attribute of the <span> tag in a <td> tag. Table formatting is preserved colors, alignments, widths/heights etc. This formatting is included as attributes of <table/tr/td> tags. Bold/Italic/Underlined text format is preserved. Formatting is made by <b>/<i>/<u> tags, which are preserved. Image alignment and alt texts are preserved. Attributes of the <img> tag and these attributes are preserved. Hyperlink information is preserved. Attributes of the <a> tag and these attributes are preserved. Hyperlink indices are preserved. Attributes of the <a> tag and these attributes are preserved. Empty paragraphs (caused by blank lines) are removed. Before filtration, these are represented by <p> </p>, but they are removed. Script blocks and xml blocks are removed. Characteristics and Limitations of the Conversion Word Documents with Images and Tables The Word document is first saved as filtered HTML using Word s functionality, and is then passed through a filter and is finally saved as an EPiServer page. WAI Alternative texts can be specified for images. Titles and descriptions can be specified for hyperlinks.

8 8 Microsoft Office Integration CSS is used to format headings and text. No identification of column headers or row headers for tables is made. Strict filter No table formatting. Tolerant filter Inline table formatting instead of CSS. XHTML CSS is used to format headings and text. Strict filter Tolerant filter - Inline table formatting instead of CSS. Editor Alignments and alt texts of images are preserved. Texts, targets and titles of hyperlinks are preserved. CSS is used to format headings and text to Web look. Strict filter Table formatting is lost. Tolerant filter Table text colors, background colors, borders and alignments of tables are preserved. PowerPoint Documents Each page of the PowerPoint presentation is converted into a.png image when published to a non-document page type, and the images are inserted one beneath the other. WAI No alternative texts are created for the images created from the presentation pages. XHTML - Editor In order to provide alt texts for the images, the HTML code view has to be used. Note The slide show functionality, including any animations, is preserved in the full HTML version of the PowerPoint document. However, this version will be available only when publishing using the Document page type. Excel Documents The active sheet, or the selected area in the case an area has been selected, of the Excel document is saved in filtered HTML format using Word s functionality*, and is then passed through a filter to finally be saved as an EPiServer page. * ) This way, the style classes used in Excel can be converted to inline styles in Word, which after filtering and rearranging styles makes the code adapted to EPiServer s Editor for subsequent formatting. WAI Alternative texts can be specified for images. No alternative texts can be specified for charts. CSS is used to format text that has not been specifically formatted. No identification of column headers or row headers for tables is made. Strict filter No table or headings formatting. Tolerant filter Inline table and headings formatting instead of CSS. XHTML CSS is used to format text that has not been specifically formatted. Strict filter No table or headings formatting. Tolerant filter Inline table and headings formatting instead of CSS.

9 Customization 9 Editor Alignments and alternative texts of images are preserved. Alignments of charts are preserved, in order to provide alternative texts the HTML code view has to be used. CSS is used to format text that has not been specifically formatted to Web look. Strict filter No formatting of contents. Tolerant filter Font sizes, text colors, background colors, borders, widths, heights and alignments are preserved. Customization It is possible to modify the behavior of the script being executed, the wizard configuration, the filter, and the start page. Getting Started If configuration is not added, a default configuration will be used. This example configuration can be added to web.config to reconstruct the default behavior and get a start to configuration. <configuration> <configsections> <sectiongroup name="episerver"> <section name="clienttools" allowdefinition="machinetoapplication" allowlocation="false" type="episerver.clienttools.configurationhandler,episerver" /> </sectiongroup> </configsections> <episerver> <clienttools> <filters> <filter pagetypes="*" extensions="*" src="util/htmlfilters/wordhtml.config" /> </filters> <wizards> <wizard pagetypes="*" extensions="*" src="util/clienttools/wizard/default.config" /> </wizards> <scripts> <script pagetypes="*" extensions="doc" src="util/clienttools/components/episerver.word.wsc" /> <script pagetypes="*" extensions="xls" src="util/clienttools/components/episerver.excel.wsc" /> <script pagetypes="*" extensions="ppt" src="util/clienttools/components/episerver.powerpoint.wsc" /> </scripts> </clienttools> All sections support both page type and extension as criteria for selection a page type must match all three of these sections to show up in the wizard. In this configuration we point all page types to the default files. The page type's attribute should be the ID number of the page type or a comma-separated list of ID numbers. Note Do not edit the default files such as WordHtml.config, because it may be modified during an upgrade. Always configure your custom files in a custom directory.

10 10 Microsoft Office Integration Configuring Wizards Wizards are displayed from the Microsoft Office application whenever a user selects a special page type. The following example adds a custom wizard for page type 38. <wizards> <wizard pagetypes="38" extensions="xls" src="test/onlycategories.config" /> <wizard pagetypes="*" extensions="*" src="util/clienttools/wizard/default.config" /> </wizards> The wizard configuration looks like this: <?xml version="1.0" encoding="utf-8"?> <wizard name="default" targetproperty="mainbody"> <step name="metadata" title="meta data"> <property name="pagename" /> <property name="pagestartpublish" /> <property name="pagestoppublish" /> <property name="mainintro" /> </step> <step name="done" title="done" customcontrol="./done.ascx" /> </wizard> Note The DHTML editor is currently not supported in a wizard step. Configuring Scripts Scripts are executed to convert a document to HTML in a customized way. The scripts are treated as COM components so you can either use a.wsc file located on the server or specify a CLSID of a COM object. This option will require you to install the object on the client machines. <scripts> <script pagetypes="*" extensions="doc" src="util/clienttools/components/episerver.word.wsc" /> <script pagetypes="*" extensions="xls" src="util/clienttools/components/episerver.excel.wsc" /> <script pagetypes="*" extensions="ppt" src="util/clienttools/components/episerver.powerpoint.wsc" /> </scripts> The COM object must support 2 methods: Convert and Cleanup. The convert method must take a single argument which is the configuration of the current execution. The following method exercises the input object. Function Convert(oConfig) oconfig.debugwrite "Entering My Convertor (script file)" spath = oconfig.filepath oconfig.pagename = "New Page Name" If oconfig.isdocumentpagetype Then (..) End If oconfig.uploadfolder = myresourcefolder End Function Note The oconfig.debugwrite method writes an entry to a log file that always exists on the client computer to make it easy to troubleshoot. The file is stored in C:\Documents and Settings\<user>\Local Settings\Application Data\EPiServer. The Local Settings folder is used to make sure the file doesn t get replicated to a roaming profile in a Microsoft domain.

11 Customization 11 Configuring the Start Page It is possible to configure the start page for the Office add-in so that it is set to a different start page than that used by the Web site. The start page is the root that appears and expands the Web site when clicking Publish to EPiServer in Microsoft Office programs. The setting is done in web.config. If you do not include this value, the start page for the site is used instead. <add key="epnofficestartpage" value="3" /> Configuring Filters Overview Filters are used to prepare and clean HTML for the DHTML editor in EPiServer. It is possible to change the default configuration, so that all page types use the built-in strict filter instead: <filters> <filter pagetypes="*" extensions="*" src="util/htmlfilters/wordhtmlstrict.config" /> </filters> Tip! If you are building a customized filter, copy one of our files and save it in your own folder. Functionality Global Settings for the Filters The following attributes are available on the global settings node for the filter config file. The values for these can be either true of false. cleanstyles Global setting that defines if styles should be cleaned according to the rules defined in the allowedstyles section. removefonttags Not used (Depreciated) removeunknownnamespaces Global setting that defines if unknown namespaces should be removed from content. removecomments Global setting that defines if comment nodes should be removed from content. allowedclassregex A regular expression that defines which classes should be spared if they are not defined under the classmapping node. Allowed Styles All styles to be kept in the final HTML should be configured here. You can specify styles for all tags using an asterisk (*) or specify styles to be kept for a specific tag. Example: <allowedstyles> <add key="*" value="" /> <add key="table" value="border,width" /> </allowedstyles> Node Mappings This part can be used to replace one tag with another. It is especially useful to convert a tag like <h1> to a classbased tag like <p class= heading1 >. The value should be the complete tag encoded for a XML attribute. Example:

12 12 Microsoft Office Integration <nodemappings> <add key="h1" value="<p></p>" /> </nodemappings> Delete Tags In deletetags you can specify which tags should be totally removed from the HTML. This section does not remove content inside the tag. Use deleteblock for that function. Example: <deletetags> <add key="span" /> </deletetags> Class Mappings In classmapping you can define the class that a class in Word should represent on the Web. The filter will change all styles accordingly. Example: <classmapping> <add key="wordstyle1" value="webstyle1" /> </classmapping> Delete Blocks Tags defined in deleteblock will be deleted with all content contained in the tag. Tip! If you want to remove all instances of <p> </p>, you could write the syntax below. It will use the search ability in the filter and search for all <p> tags that include. The whole tag will be deleted. Example: <deleteblock> <add key="p[text()='&nbsp;']" /> </deleteblock> Delete Tag Attributes If you want to delete specific attributes in a tag, you should specify them here. Example: <deletetagattributes> <add key="*" value="hspace, vspace" /> </deletetagattributes> Document Page Template The Document page template was built to be able to display the rich HTML version of a document without losing any functionality or overall design. The reason why this page type behaves differently is defined in a number of properties that you can use on any page type. The properties are stand-alone and are independent of each other. Property name DocumentInternalPath DocumentInternalHtmlPath Description If the IsDocumentPageType is set, this property will contain the path to the uploaded source document. If the IsDocumentPageType is set, this property will contain the path to the starting point for the rich HTML version.

13 WAI and XHTML 13 DocumentExternalPath IsDocumentPageType AllowDocumentUpdate The path to the location of the source document may be used, for example, by other editors to see which document was used to publish this page. Controls if the client application should upload a copy of the original document. This will also be sent to the convert scripts that will skip building a rich HTML version if this property has not been set. Controls if the client application should add properties to the word document so that the user can republish the document. WAI and XHTML Within this solution, it is possible to create pages that follow XHTML 1.1 recommendations. The filter must, however, be configured rather strictly, which leads to a loss of graphical design elements. It is up to the system administrator to decide on the level of HTML to be produced. The solution does support adding descriptions of images (ALT attribute) using Word and Excel. Some images such as charts in Excel does not support descriptions, this means that some pages created using Office Integration needs to be adjusted within EPiServer to fully follow WAI recommendations. Tip! If you right-click an image in Word and choose the Web tag, you can add an alternative text in Word that will be shown in the HTML edition.

14 14 Microsoft Office Integration Security Issues In the Office Integration solution, calls will be made to a Web Service that makes it possible to read and alter data in EPiServer. Calls will also be made to different.aspx pages to read data, alter data and upload files. The security model used is that all server-side parts of the solution require that users have specific permission to the function called View and publish pages from Microsoft Office Add-In. The user is not required to have access to Edit mode to be able to use the Office Integration, but will need access to Edit mode to be able to activate the account. You can, of course, allow a user temporary access to Edit mode to activate the account. On activation in edit mode, a randomized string, which is cryptographically unique per user, will be created. This key is stored both in EPiServer and on the client. This activation key is then used to encrypt the password using 128-bits encryption whenever sent to the server and then decrypted by the server with the same key. The user can activate the account on different machines as the activation key is not regenerated after first created. The activated sites are stored per user in Microsoft Windows on the client, so different profiles on the same computer can have different settings. The activation key is not used by the individual Web services and Web forms. You still have to be restrictive with the permissions for functions. The activation key is an extra layer of protection on top of both the authentication Web service and the user's password, while transmitted over the network. The client application has an option to remember the user's password. If the user selects this option, the password will be stored in the local registry encrypted based on the local user account and not the activation key. Neither the encrypted password nor the activation key can therefore not be moved to another user. Copyright ElektroPost Stockholm AB. ElektroPost and EPiServer are registered trademarks of ElektroPost Stockholm AB. Other product and company names mentioned in this document may be the trademarks of their respective owners. The document may be freely distributed in its entirety, either digitally or in printed format, to all EPiServer users. Changes to the content or partial copying of the content may not be carried out without permission from ElektroPost Stockholm AB: ElektroPost Stockholm AB Finlandsgatan 38 SE Kista Sweden Changes are periodically made to the document and these will be published in new editions of the document. ElektroPost reserves the right to improve or change the products or programs included in this document at any time.

Creating Accessible Web Sites with EPiServer

Creating Accessible Web Sites with EPiServer Creating Accessible Web Sites with EPiServer Abstract This white paper describes how EPiServer promotes the creation of accessible Web sites. Product version: 4.50 Document version: 1.0 2 Creating Accessible

More information

Globalization TECHNICAL NOTE. Purpose. Product version: Document version: 1.1. Document creation date:

Globalization TECHNICAL NOTE. Purpose. Product version: Document version: 1.1. Document creation date: Globalization Product version: 4.60 Document version: 1.1 Document creation date: 04-05-2006 Purpose EPiServer has supported the creation of multilingual Web sites, with the multi-language functionality,

More information

Developing with XForms

Developing with XForms Developing with XForms Product version: 4.60 Document version: 1.0 Document creation date: 29-03-2006 Purpose EPiServer XForms contains logic to store and present forms and data posted from forms. Together

More information

Getting Started with EPiServer 4

Getting Started with EPiServer 4 Getting Started with EPiServer 4 Abstract This white paper includes information on how to get started developing EPiServer 4. The document includes, among other things, high-level installation instructions,

More information

Getting Started with EPiServer 4

Getting Started with EPiServer 4 Getting Started with EPiServer 4 Abstract This white paper includes information on how to get started developing EPiServer 4. The document includes, among other things, high-level installation instructions,

More information

Accessibility of EPiServer s Sample Templates

Accessibility of EPiServer s Sample Templates Accessibility of EPiServer s Templates An evaluation of the accessibility of EPiServer s sample according to current recommendations and guidelines elaborated by the World Wide Web Consortium s (W3C) Web

More information

Getting Started with EPiServer 4

Getting Started with EPiServer 4 White Paper Getting Started with EPiServer 4 System requirements This is a guide for getting started with development using EPiServer 4 and it is assumed that you as a developer have access to the following:

More information

Working with Multiple Languages in EPiServer

Working with Multiple Languages in EPiServer Working with Multiple Languages in EPiServer Product version: 4.60 Document version: 1.1 Document creation date: 04-04-2006 Purpose EPiServer's support for multilingual Web sites (multi-language) has been

More information

Accessible Web Sites and EPiServer

Accessible Web Sites and EPiServer Accessible Web Sites and EPiServer How implementation of accessible Web sites can increase equal access and opportunities for everyone using the Web. WHITE PAPER WHAT IS ACCESSIBILITY? Accessibility affects

More information

Content Mirroring in EPiServer

Content Mirroring in EPiServer Content Mirroring in EPiServer Abstract From EPiServer 4.50 it is possible to define a selection of pages that can be mirrored to, for example, another system. This white paper describes the functionality

More information

Content Mirroring Configuration

Content Mirroring Configuration Content Mirroring Configuration Product version: 4.50 Document version: 1.0 Document creation date: 17-05-2005 Purpose This document describes how to configure mirroring in EPiServer and contains information

More information

IBM. Tips and Troubleshooting Guide. IBM Emptoris Contract Management. Version SC

IBM. Tips and Troubleshooting Guide. IBM Emptoris Contract Management. Version SC IBM Emptoris Contract Management IBM Tips and Troubleshooting Guide Version 10.0.4 SC27-5345-03 IBM Emptoris Contract Management IBM Tips and Troubleshooting Guide Version 10.0.4 SC27-5345-03 ii IBM Emptoris

More information

Ektron Advanced. Learning Objectives. Getting Started

Ektron Advanced. Learning Objectives. Getting Started Ektron Advanced 1 Learning Objectives This workshop introduces you beyond the basics of Ektron, the USF web content management system that is being used to modify department web pages. This workshop focuses

More information

Setting Up EPiServer for Demo

Setting Up EPiServer for Demo Setting Up EPiServer for Demo Abstract This document describes how to set up a standard EPiServer installation so that it can be used in a demo environment. Product version: 4.51 Document version: 1.0

More information

FileNET Guide for AHC PageMasters

FileNET Guide for AHC PageMasters ACADEMIC HEALTH CENTER 2 PageMasters have the permissions necessary to perform the following tasks with Site Tools: Application Requirements...3 Access FileNET...3 Login to FileNET...3 Navigate the Site...3

More information

EPiStore Configuration

EPiStore Configuration EPiStore Configuration Product version: 2.3 Document version: 1.0 Document creation date 15-06-2005 Document last saved: 23-01-2008 Purpose This technical note provides information on how to set up and

More information

FileNET Guide for AHC PageMasters

FileNET Guide for AHC PageMasters PageMasters have the permissions necessary to perform the following tasks with Site Tools: ACADEMIC HEALTH CENTER 2 Application Requirements...3 Access FileNET...3 Log in to FileNET...3 Navigate the Site...3

More information

EPiServer Installation Instructions

EPiServer Installation Instructions EPiServer Installation Instructions Abstract From EPiServer 4.50, installation and upgrade of EPiServer installations is carried out with EPiServer Manager. This document describes how to install, upgrade

More information

Content Mirroring Configuration

Content Mirroring Configuration Content Mirroring Configuration Product version: 4.51 Document version: 1.1 Document creation date: 02-01-2006 Purpose This document describes how to configure mirroring in EPiServer and contains information

More information

EPiServer Operator's Guide

EPiServer Operator's Guide EPiServer Operator's Guide Product version: 4.60 Document version: 1.0 Document creation date: 27-03-2006 Purpose This document is mainly intended for administrators and developers that operate EPiServer

More information

Building Web Sites Using the EPiServer Content Framework

Building Web Sites Using the EPiServer Content Framework Building Web Sites Using the EPiServer Content Framework Product version: 4.60 Document version: 1.0 Document creation date: 28-03-2006 Purpose A major part in the creation of a Web site using EPiServer

More information

Design your source document with accessibility in mind. Do NOT use character formatting for headings, use the program s styles.

Design your source document with accessibility in mind. Do NOT use character formatting for headings, use the program s styles. Contents 2 Create an Accessible Microsoft Word Document 2 Use Styles 3 Columns 5 Lists 6 Tables 7 Links 7 Add Alternative Text 9 Microsoft Word 2010 Accessibility Checker Adobe Acrobat X Creating Accessible

More information

Independence Community College Independence, Kansas

Independence Community College Independence, Kansas Independence Community College Independence, Kansas C O N T E N T S Unit 1: Creating, Modifying, and Enhancing FrontPage Webs and Pages 1 Chapter 1 Investigating FrontPage 2002 3 Exploring World Wide Web

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

ITEC447 Web Projects CHAPTER 9 FORMS 1

ITEC447 Web Projects CHAPTER 9 FORMS 1 ITEC447 Web Projects CHAPTER 9 FORMS 1 Getting Interactive with Forms The last few years have seen the emergence of the interactive web or Web 2.0, as people like to call it. The interactive web is an

More information

BCI.com Sitecore Publishing Guide. November 2017

BCI.com Sitecore Publishing Guide. November 2017 BCI.com Sitecore Publishing Guide November 2017 Table of contents 3 Introduction 63 Search 4 Sitecore terms 66 Change your personal settings 5 Publishing basics 5 Log in to Sitecore Editing 69 BCI.com

More information

User Guide Product Design Version 1.7

User Guide Product Design Version 1.7 User Guide Product Design Version 1.7 1 INTRODUCTION 3 Guide 3 USING THE SYSTEM 4 Accessing the System 5 Logging In Using an Access Email 5 Normal Login 6 Resetting a Password 6 Logging Off 6 Home Page

More information

Chapter 9. Web Applications The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill

Chapter 9. Web Applications The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Chapter 9 Web Applications McGraw-Hill 2010 The McGraw-Hill Companies, Inc. All rights reserved. Chapter Objectives - 1 Explain the functions of the server and the client in Web programming Create a Web

More information

EPiServer s Compliance to WCAG and ATAG

EPiServer s Compliance to WCAG and ATAG EPiServer s Compliance to WCAG and ATAG An evaluation of EPiServer s compliance to the current WCAG and ATAG guidelines elaborated by the World Wide Web Consortium s (W3C) Web Accessibility Initiative

More information

Tzunami Deployer Lotus Notes Exporter Guide

Tzunami Deployer Lotus Notes Exporter Guide Tzunami Deployer Lotus Notes Exporter Guide Version 2.5 Copyright 2010. Tzunami Inc. All rights reserved. All intellectual property rights in this publication are owned by Tzunami, Inc. and protected by

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

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

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

More information

CREATING ACCESSIBLE SPREADSHEETS IN MICROSOFT EXCEL 2010/13 (WINDOWS) & 2011 (MAC)

CREATING ACCESSIBLE SPREADSHEETS IN MICROSOFT EXCEL 2010/13 (WINDOWS) & 2011 (MAC) CREATING ACCESSIBLE SPREADSHEETS IN MICROSOFT EXCEL 2010/13 (WINDOWS) & 2011 (MAC) Screen readers and Excel Users who are blind rely on software called a screen reader to interact with spreadsheets. Screen

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide MS-Expression Web Quickstart Guide Page 1 of 24 Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program,

More information

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager Vector Issue Tracker and License Manager - Administrator s Guide Configuring and Maintaining Vector Issue Tracker and License Manager Copyright Vector Networks Limited, MetaQuest Software Inc. and NetSupport

More information

Modern Requirements4TFS 2018 Release Notes

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

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

HTML and CSS COURSE SYLLABUS

HTML and CSS COURSE SYLLABUS HTML and CSS COURSE SYLLABUS Overview: HTML and CSS go hand in hand for developing flexible, attractively and user friendly websites. HTML (Hyper Text Markup Language) is used to show content on the page

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

Style Report Enterprise Edition

Style Report Enterprise Edition INTRODUCTION Style Report Enterprise Edition Welcome to Style Report Enterprise Edition! Style Report is a report design and interactive analysis package that allows you to explore, analyze, monitor, report,

More information

Deccansoft Software Services

Deccansoft Software Services Deccansoft Software Services (A Microsoft Learning Partner) HTML and CSS COURSE SYLLABUS Module 1: Web Programming Introduction In this module you will learn basic introduction to web development. Module

More information

Dreamweaver MX The Basics

Dreamweaver MX The Basics Chapter 1 Dreamweaver MX 2004 - The Basics COPYRIGHTED MATERIAL Welcome to Dreamweaver MX 2004! Dreamweaver is a powerful Web page creation program created by Macromedia. It s included in the Macromedia

More information

2 P age. Pete s Pagebuilder revised: March 2008

2 P age. Pete s Pagebuilder revised: March 2008 AKA DNN 4 Table of Content Introduction... 3 Admin Tool Bar... 4 Page Management... 6 Advanced Settings:... 7 Modules... 9 Moving Modules... 10 Universal Module Settings... 11 Basic Settings... 11 Advanced

More information

Using Sitecore 5.3.1

Using Sitecore 5.3.1 Using Sitecore 5.3.1 An End-User s Guide to Using and Administrating Sitecore Author: Sitecore Corporation Date: December 12, 2007 Release: Rev. 1.0 Language: English Sitecore is a registered trademark.

More information

USER GUIDE. MADCAP FLARE 2017 r3. Import

USER GUIDE. MADCAP FLARE 2017 r3. Import USER GUIDE MADCAP FLARE 2017 r3 Import Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

CA Productivity Accelerator 12.1 and Later

CA Productivity Accelerator 12.1 and Later CA Productivity Accelerator 12.1 and Later Localize Content Localize Content Once you have created content in one language, you might want to translate it into one or more different languages. The Developer

More information

EPiFields Developer Information

EPiFields Developer Information EPiFields Developer Information Product version: 4.40.1.0 Document version: 1.0 Document creation date: 01-02-2005 Purpose EPiFields is an EPiServer add-in, enabling the editor to enter variable data into

More information

EPiServer Operator's Guide

EPiServer Operator's Guide EPiServer Operator's Guide Abstract This document is mainly intended for administrators and developers that operate EPiServer or want to learn more about EPiServer's operating environment. The document

More information

Qlik, QlikTech and QlikView are trademarks and registered trademarks of QlikTech International AB.

Qlik, QlikTech and QlikView are trademarks and registered trademarks of QlikTech International AB. WorkBench Copyright 1994-2010 Qlik Tech International AB, Sweden. Under international copyright laws, neither the documentation nor the software may be copied, photocopied, reproduced, translated or reduced

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

FrontPage 2000 Tutorial -- Advanced

FrontPage 2000 Tutorial -- Advanced FrontPage 2000 Tutorial -- Advanced Shared Borders Shared Borders are parts of the web page that share content with the other pages in the web. They are located at the top, bottom, left side, or right

More information

ER/Studio Enterprise Portal User Guide

ER/Studio Enterprise Portal User Guide ER/Studio Enterprise Portal 1.1.1 User Guide Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights

More information

Using Adobe Contribute 4 A guide for new website authors

Using Adobe Contribute 4 A guide for new website authors Using Adobe Contribute 4 A guide for new website authors Adobe Contribute allows you to easily update websites without any knowledge of HTML. This handout will provide an introduction to Adobe Contribute

More information

EDITING AN EXISTING REPORT

EDITING AN EXISTING REPORT Report Writing in NMU Cognos Administrative Reporting 1 This guide assumes that you have had basic report writing training for Cognos. It is simple guide for the new upgrade. Basic usage of report running

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

FileLoader for SharePoint

FileLoader for SharePoint Administrator s Guide FileLoader for SharePoint v. 2.0 Last Updated 6 September 2012 Contents Preface 3 FileLoader Users... 3 Getting Started with FileLoader 4 Configuring Connections to SharePoint 8

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

Mail & Deploy Reference Manual. Version 2.0.5

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

More information

Report Commander 2 User Guide

Report Commander 2 User Guide Report Commander 2 User Guide Report Commander 2.5 Generated 6/26/2017 Copyright 2017 Arcana Development, LLC Note: This document is generated based on the online help. Some content may not display fully

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

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

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

Adobe Experience Manager (AEM) Author Training

Adobe Experience Manager (AEM) Author Training Adobe Experience Manager (AEM) Author Training McGladrey.com 11/6/2014 Foster, Ken Table of Contents AEM Training Agenda... 3 Overview... 4 Author and Publish Instances for AEM... 4 QA and Production Websites...

More information

Quark XML Author September 2016 Update for Platform with Business Documents

Quark XML Author September 2016 Update for Platform with Business Documents Quark XML Author 05 - September 06 Update for Platform with Business Documents Contents Getting started... About Quark XML Author... Working with the Platform repository... Creating a new document from

More information

CST272 Getting Started Page 1

CST272 Getting Started Page 1 CST272 Getting Started Page 1 1 2 3 4 5 6 8 Introduction to ASP.NET, Visual Studio and C# CST272 ASP.NET Static and Dynamic Web Applications Static Web pages Created with HTML controls renders exactly

More information

SQL Deluxe 2.0 User Guide

SQL Deluxe 2.0 User Guide Page 1 Introduction... 3 Installation... 3 Upgrading an existing installation... 3 Licensing... 3 Standard Edition... 3 Enterprise Edition... 3 Enterprise Edition w/ Source... 4 Module Settings... 4 Force

More information

08/10/2018. Istanbul Now Platform User Interface

08/10/2018. Istanbul Now Platform User Interface 08/10/2018 Contents Contents...5 UI16... 9 Comparison of UI16 and UI15 styles... 11 Activate UI16... 15 Switch between UI16 and UI15...15 UI16 application navigator... 16 System settings for the user

More information

EXCEL CONNECT USER GUIDE

EXCEL CONNECT USER GUIDE USER GUIDE Developed and published by Expedience Software Copyright 2012-2017 Expedience Software Excel Connect Contents About this Guide... 1 The Style Palette User Guide 1 Excel Connect Overview... 2

More information

Mirroring - Configuration and Operation

Mirroring - Configuration and Operation Mirroring - Configuration and Operation Product version: 4.60 Document version: 1.0 Document creation date: 31-03-2006 Purpose This document contains a description of content mirroring and explains how

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

Integrated Projects for Presentations

Integrated Projects for Presentations Integrated Projects for Presentations OUTLINING AND CREATING A PRESENTATION Outlining the Presentation Drafting a List of Topics Imagine that your supervisor has asked you to prepare and give a presentation.

More information

GOBENCH IQ Release v

GOBENCH IQ Release v GOBENCH IQ Release v1.2.3.3 2018-06-11 New Add-Ons / Features / Enhancements in GOBENCH IQ v1.2.3.3 GOBENCH IQ v1.2.3.3 contains several new features and enhancements ** New version of the comparison Excel

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

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

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

Integrating with EPiServer

Integrating with EPiServer Integrating with EPiServer Abstract EPiServer is an excellent tool when integration with existing systems within an organization is a requirement. This document outlines the Web services that are shipped

More information

ELM Server Exchange Edition ArchiveWeb version 5.5

ELM Server Exchange Edition ArchiveWeb version 5.5 ELM Server Exchange Edition ArchiveWeb version 5.5 Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All

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

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

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

Table of Contents. Table of Contents 3

Table of Contents. Table of Contents 3 User Guide for Administrators EPiServer 7 CMS Revision A, 2012 Table of Contents 3 Table of Contents Table of Contents 3 Introduction 5 About this Documentation 5 Accessing EPiServer Help System 5 Online

More information

SelectSurveyASP Advanced User Manual

SelectSurveyASP Advanced User Manual SelectSurveyASP Advanced User Manual Creating Surveys 2 Designing Surveys 2 Templates 3 Libraries 4 Item Types 4 Scored Surveys 5 Page Conditions 5 Piping Answers 6 Previewing Surveys 7 Managing Surveys

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

Qlik NPrinting. September 2018 Copyright QlikTech International AB. All rights reserved.

Qlik NPrinting. September 2018 Copyright QlikTech International AB. All rights reserved. Qlik NPrinting Qlik NPrinting September 2018 Copyright 1993-2018 QlikTech International AB. All rights reserved. Contents 1 What is Qlik NPrinting? 22 1.1 How does Qlik NPrinting work? 22 Qlik NPrinting

More information

Episerver CMS. Editor User Guide

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

More information

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

Episerver CMS. Editor User Guide

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

More information

Hands-On Introduction to Queens College Web Sites

Hands-On Introduction to Queens College Web Sites Hands-On Introduction to Queens College Web Sites This handout accompanies training workshops for Queens College Content Editors who will manage and maintain the web content in their areas. Overview of

More information

Qlik NPrinting September 2018 Release Notes

Qlik NPrinting September 2018 Release Notes Release Notes Qlik NPrinting September 2018 Release Notes qlik.com Table of Contents What s new in Qlik NPrinting September 2018 3 Improvements 4 Bug fixes 6 Known issues and limitations 9 Upgrade notes

More information

HP Records Manager. Kofax Capture Template. Software Version: 8.1. Document Release Date: August 2014

HP Records Manager. Kofax Capture Template. Software Version: 8.1. Document Release Date: August 2014 HP Records Manager Software Version: 8.1 Kofax Capture Template Document Release Date: August 2014 Software Release Date: August 2014 Legal Notices Warranty The only warranties for HP products and services

More information

Oracle Enterprise Performance Reporting Cloud

Oracle Enterprise Performance Reporting Cloud Oracle Enterprise Performance Reporting Cloud September Update (16.09) Release Content Document August 2016 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE ENTERPRISE PERFORMANCE REPORTING CLOUD, SEPTEMBER

More information

Mastering phpmyadmiri 3.4 for

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

More information

User Manual. Admin Report Kit for IIS 7 (ARKIIS)

User Manual. Admin Report Kit for IIS 7 (ARKIIS) User Manual Admin Report Kit for IIS 7 (ARKIIS) Table of Contents 1 Admin Report Kit for IIS 7... 1 1.1 About ARKIIS... 1 1.2 Who can Use ARKIIS?... 1 1.3 System requirements... 2 1.4 Technical Support...

More information

4/27/2018 Blackbaud Internet Solutions 4.5 US 2015 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted

4/27/2018 Blackbaud Internet Solutions 4.5  US 2015 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted Email Guide 4/27/2018 Blackbaud Internet Solutions 4.5 Email US 2015 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic,

More information

Qlik NPrinting February 2019

Qlik NPrinting February 2019 Qlik NPrinting February 2019 Release notes Q L I K. C O M TABLE OF CONTENTS What s new in Qlik NPrinting February 2019 2 Improvements 3 Bug fixes 4 Upgrade notes 6 Known issues and limitations 7 Qlik NPrinting

More information

WebStudio User Guide. OpenL Tablets BRMS Release 5.18

WebStudio User Guide. OpenL Tablets BRMS Release 5.18 WebStudio User Guide OpenL Tablets BRMS Release 5.18 Document number: TP_OpenL_WS_UG_3.2_LSh Revised: 07-12-2017 OpenL Tablets Documentation is licensed under a Creative Commons Attribution 3.0 United

More information

DRAFT. Table of Contents About this manual... ix About CuteSITE Builder... ix. Getting Started... 1

DRAFT. Table of Contents About this manual... ix About CuteSITE Builder... ix. Getting Started... 1 DRAFT Table of Contents About this manual... ix About CuteSITE Builder... ix Getting Started... 1 Setting up... 1 System Requirements... 1 To install CuteSITE Builder... 1 To register CuteSITE Builder...

More information

IBM TRIRIGA Application Platform Version 3 Release 4.2. Object Migration User Guide

IBM TRIRIGA Application Platform Version 3 Release 4.2. Object Migration User Guide IBM TRIRIGA Application Platform Version 3 Release 4.2 Object Migration User Guide Note Before using this information and the product it supports, read the information in Notices on page 41. This edition

More information

The Dreamweaver Interface

The Dreamweaver Interface The Dreamweaver Interface Let s take a moment to discuss the different areas of the Dreamweaver screen. The Document Window The Document Window shows you the current document. This is where you are going

More information