My IC Customizer: Descriptors of Skins and Webapps for third party User Guide

Size: px
Start display at page:

Download "My IC Customizer: Descriptors of Skins and Webapps for third party User Guide"

Transcription

1 User Guide 8AL USAA ed01 09/2013

2 Table of Content 1. About this Document Who Should Read This document What This Document Tells You Terminology and Definitions Description of a webapp or a skin by extra data Skin: How to get the data for skin parameters PARAMETERS OF THE SKIN USAGE OF THE PARAMETERS OF THE SKIN DECLARATION RULES MY IC CUSTOMIZER HELP Homepage: How to get the parameters for buttons of webapp PARAMETERS OF THE BUTTONS USAGE OF THE PARAMETERS OF THE BUTTONS DECLARATION RULES Homepage: How to get the parameters for preview of a webapp PARAMETERS OF THE PREVIEW USAGE OF THE PARAMETERS OF THE PREVIEW DECLARATION RULES Homepage: How to get the parameters for custom buttons from a webapp PARAMETERS OF ACTIONS FOR THE CUSTOM BUTTONS USAGE OF THE PARAMETERS FOR THE CUSTOM BUTTONS DECLARATION RULES SDK and My IC Customizer Help FOR SKIN FOR WEBAPP Legal notice: Alcatel, Lucent, Alcatel-Lucent and the Alcatel-Lucent logo are trademarks of Alcatel-Lucent. All other trademarks are the property of their respective owners. The information presented is subject to change without notice. Alcatel-Lucent assumes no responsibility for inaccuracies contained herein. Copyright 2013 Alcatel-Lucent. All rights reserved. 8AL USAA ed01 2 /16

3 1. About this Document 1.1 Who Should Read This document This document is intended for developers who develop webapps or skins. The objective is to add a file giving information relative to the buttons, actions and previews which are exported to the homepage webapp. This information in a third party webapp or skins will be extracted by My IC Customizer tool and facilitate the customization of the 8082 My IC Phone. 1.2 What This Document Tells You This document describes in details all the metadata or comments to be added in the sources of a third party webapp or skin, in order to declare to My IC Customizer tool, the data exported to the homepage webapp. Without these declarations, it is not possible to parse simply the code to retrieve them. These metadata or comments are mandatory for My IC Customizer. For a Skin, the tool needs to know the name, the author and the identifier. For a webapp, all data exported to the homepage webapp, useful for the customization of the views of the homepage in both modes standard and preview. They concern the button identifier, the class of the associated icon, its coded English label, also if a preview frame is managed and the method to use to display it on the homepage view in Preview mode, and the exported actions which can be associated to any programmed custom keys. 1.3 Terminology and Definitions HTTP HTTPS I18n IC Touch L10n URI URL Webapp XML DM Hypertext Transport Protocol Secure Hypertext Transfer Protocol Internationalization Acronym for Instant Communication Touch Localization Universal Resource Indicator Uniform Resource Locator Web application extensible Markup Language Device Manager 8AL USAA ed01 3 /16

4 2. Description of a webapp or a skin by extra data My IC Customizer tool needs extra data extracted from packages. This chapter is going to detail what are they used for, how they look like and how to declare them. Notes: In this document we are talking only about webapps or skins made by a third party. The generic Alcatel-Lucent webapps or skins are not concerned by the rules of declaration of the extra data. 2.1 Skin: How to get the data for skin parameters PARAMETERS OF THE SKIN - Skin identifier: This identifier is the name of the repositories where are stored the changes in the CSS files and images regarding to the skin Challenger. This identifier is not seen usually by the user of the phone. - Skin label (name): This name is a label visible by the user. It is a more user friendly way to identify the skin with the user point of view. It is a string. I.e. The skin called Challenger, gets the name Challenger and the identifier Default. All the skins done by third party are relative regarding to the reference skin Challenger - Skin author and date creation: These are the name of the author of the skin and the last date of the upgrading. Both are strings without any format USAGE OF THE PARAMETERS OF THE SKIN It is possible to see these parameters with My IC Customizer when a package containing skins are imported. They are visible in the following window launched by the menu Resources->Skins. My IC Customizer Packages->Skins 8AL USAA ed01 4 /16

5 These parameters are used when you want to set a new skin on your phone. To do that, select the setting SkinsList and call the browser to add a new skin to the list: My IC Customizer: edit setting SkinsList When the browser is open, select the wanted skin. My IC Customizer: browser of extracted Skins You obtain: My IC Customizer: Selected skin is added as allowed value 8AL USAA ed01 5 /16

6 Then, identifier and name of the skin are displayed and can be used to configure the settings My IC Customizer: Selected skin populates the setting Skinslist DECLARATION RULES These parameters are extracted from the file providedfiles.json located in repository <Installation path>/library/ictouchapi/config/themes/<skin identifier>/providedfiles.json Directory of file providedfiles.json In this file the extra data are written in comments located at the top of the file: //Name=<label of the skin> //Author=<Name of the author if the skin> //CreationDate=<date of the last update of the Skin> { name : "<skin identifier>", 8AL USAA ed01 6 /16

7 For example: //Name=myhotel //Author=John Doe //CreationDate=2011/10/13 { name : "myhotel", type : "Partial", associatedfullskin : "Default", "ICTouchAPI" : ["main.css","icons.css"], "UIElements" : { "AppBar" : ["base.css","8082.css"], "AppButton" : ["base.css","8082.css"], } } "minifiedcss" : ["myhotel_mini8082.css"] MY IC CUSTOMIZER HELP When the tool generates the sources for a skin it fills in these extra data when the providedfiles.json is composed. 2.2 Homepage: How to get the parameters for buttons of webapp This concerns the declaration of buttons of a webapp which is registered in the homepage. All other buttons belonging to the webapp, which are not included in the homepage, do not need to be declared. These buttons have been foreseen to be configured in the settings HomepageKeys or HomepageButtons PARAMETERS OF THE BUTTONS - Button identifier: This identifier is a string which has to be unique for the whole system. The naming rule declares that it should end with _BTN and be composed with uppercase characters. - Button label: This label will be displayed below the button. It is a string. - Class of icon: In order to manage different size and states of the button with the same picture, the 8082 My IC Phone software manages a CSS class representing a set of.png files referring to the picture seen differently according to the situation. The button is associated to a class of icon. Notes: My IC Customizer uses only the pictures referring to button sized 64x64 pixels and in state normal. The same parameters will represent the button in the homepage in standard mode and in preview mode. These parameters are mainly used to help the user to visualize what he is being configuring. The most important parameter is the Button identifier. Only this parameter will be written in the settings HomepageKeys or HomepageButtons. The other parameters are needed just to have a simulated overview for help. 8AL USAA ed01 7 /16

8 2.2.2 USAGE OF THE PARAMETERS OF THE BUTTONS When the parameters of the button are extracted from the package, the button is managed like any button of the generic webapps. My IC Customizer: Button of webapp belongs to generic buttons list Then it can be selected to customize the homepage, and displayed for visualization and configuration. My IC Customizer: Button of webapp in Homepage 8AL USAA ed01 8 /16

9 My IC Customizer: Button of webapp configured in setting DECLARATION RULES To declare these parameters, a new file is needed which will contain all the information My IC Customizer needs. This file is parsed and data extracted when the package of the webapp is imported by the tool. The file is named customizerdata.xml and contains the following information: <?xml version="1.0" encoding="utf-8"?> <customizerdata> <metadata> <version> </version> <creation-date> </creation-date> <application-data> <keys> <key id= "> <values> <value> </value> </values> </key> </keys> </application-data> </metadata> </customizerdata> Content of customizerdata.xml Where: - Node <version> is a string - Node <creation-date> is formatted like Thu Aug 25 16:30:52 CEST Node <key> is a key for My IC Customizer to recognize the different parameters - Node <value> depends on the key id In our case key id = HomepageProgKeys 8AL USAA ed01 9 /16

10 Format of value is: Example: For key id= HomepageProgKeys, the format of the tag <value> is: <value>{ id :, label :, icon : }</value> <key id="homepageprogkeys"> <values> <value>{ 'id': 'MYWEBAPP_BTN', 'label': 'MyWebapp', 'icon': 'mywebapp-application' }</value> </values> </key> 2.3 Homepage: How to get the parameters for preview of a webapp This concerns the declaration of the data related to the preview of a webapp displayed on the homepage in preview mode PARAMETERS OF THE PREVIEW - Method: This method is used by the homepage to display the content of the preview. This method is usually called webapp.<name of the webapp>.get<name of the webapp>preview. Example: the method webapp.contacts.getcontactpreview is called to display the Preview Favorites In the homepage. - Title: This string represents the title displayed on top of the preview. Example: Favorites. - Setting: The value of this setting enables or not the display the preview. It is usually named Enable<Nameof the webapp>preview. Example: EnableContacsPreview USAGE OF THE PARAMETERS OF THE PREVIEW When the parameters of the preview of a webapp are declared and extracted from the package, the preview is managed like any preview of the generic webapps. Then it can be selected to customize the homepage and displayed for visualization and configuration. 8AL USAA ed01 10 /16

11 My IC Customizer: add imported preview DECLARATION RULES To declare these parameters, a new key is defined in the file customizerdata.xml. See previous chapter. In this case key id = HomepagePreviews Format of value is: For key id= HomepagePreviews, the format of the tag <value> is: <value>preview displayer;title;setting enabling </value> Example: <key id="homepagepreviews"> <values> <value> webapp.mywebapp.getmywebapppreview;my webapp;enablemywebapppreview </value> </values> </key> 8AL USAA ed01 11 /16

12 2.4 Homepage: How to get the parameters for custom buttons from a webapp This concern the declaration of parameters related to actions exported by the webapp to the webapp progkeys, which is in charge to manage the custom buttons. This webapp provides methods onprogkeyconfig, onprogkeyconfigreturn, onprogkeyactions, onprogkeydisplay, onprogkeyclick. These actions can be then associated to custom buttons (also called Programmable Keys) and then placed in the homepage PARAMETERS OF ACTIONS FOR THE CUSTOM BUTTONS - Button Identifier: This identifier is computed by the tool My IC Customizer and cannot be modified. It starts with the value BTN_ID and continues with BTN_ID #2, then BTN_ID #3. - Button label: This label will be displayed below the button. It is a string. This label and only that one associated to a Custom button can be localized by My IC Customizer tool. - Action: This is a string defined and dedicated to the webapp. It is hardcoded and the associated code is processed reacting to a click on the custom button. - webappname: It is the name of the webapp where the action is coded. - Default Class of icon: In order to manage different sizes and states of the button with the same picture, the 8082 My IC Phone software manages a CSS class representing a set of.png files referring to the picture seen differently according to the situation. When a custom button is created by My IC Customizer, it is possible to associate a class of icon to it. This parameter is the class of icon to be associated to the button by default, when the action is selected. - Arguments: (optional) this is a string containing a list of label of parameters, separated by the character ;. The field is not to be declared. My IC Customizer tool offers a field arguments to be written if necessary. If there are several arguments, it is recommended to separate them with the character ;. It is a string formatted like this: value 1;value 2;value 3;value 4;value 5;. Notes: The tool My IC Customizer uses only the pictures referring to button sized 64x64 pixels and in state normal. The same parameters will represent the button in the homepage in standard mode and in preview mode. These parameters are mainly used to help the user to visualize what he is being configuring. In the case of custom buttons, the button identifier is created automatically by the tool. These button identifiers and the other associated parameters are stored in the setting HomepageProgKeys. The button identifier of such a custom button is managed like any other button (generic or defined in a webapp third party and available on homepage). It can be used in homepage in both modes. It is written in the settings HomepageKeys or HomepageButtons. The other parameters are used to have a simulated overview for help and are also stored in the settings HomepageProgKeys. The label associated to a custom Button can be localized by filling in the setting HomepageProgKeysLocalisation with My IC Customizer tool. It defines the identifier of the strings which are the translations of the label. The translation can have a value totally distinct from the label. My IC Customizer displays the label, not the English or the French translation of the label. To have a better understanding, it is recommended to define the label as its English translation. 8AL USAA ed01 12 /16

13 2.4.2 USAGE OF THE PARAMETERS FOR THE CUSTOM BUTTONS The webapp has to declare only the parameters action, default class of icon and arguments. The button identifier and the label belong to the process of customization of a custom button, by following the steps: - Step 1: Create a button (button identifier) - Step 2: Define its label - Step 3: Associate to it an action (may be that one extracted from the webapp and its parameters) - Step 4: Change the icon if default does not suit My IC Customizer: creation of a custom button. Step 1 to 4 - Step 5: Then place the created button on the homepage. My IC Customizer: creation of a custom button. Step 5 8AL USAA ed01 13 /16

14 - Step 6: And finally, localize the label. My IC Customizer: creation of a custom button. Step 6 This supposes that the package of the webapp has been declared in the properties of the project in order to request the tool to extract the declarations of the available custom actions DECLARATION RULES To declare these parameters, a new key is defined in the file customizerdata.xml. See chapter above. In this case key id = HomepageProgKeysActions Format of value is: For key id= HomepageProgKeysActions, the format of the tag <value> is : <value>{ action :, webappname :, icon : }</value> Example: <key id= "HomepageProgKeysActions "> <values> <value>{ 'action': 'my-action', 'webappname': 'mywebapp' 'mywebapp-myaction' }</value> </values> </key>, 'icon': 8AL USAA ed01 14 /16

15 2.5 SDK and My IC Customizer Help FOR SKIN My IC Customizer helps you generating source codes and filling appropriately the comments in the file providedfiles.json FOR WEBAPP SDK helps you preparing template of webapp that you have to fill in according to your coding. The webapp creator tool creates the file customizerdata.xml in the repository config/ of your webapp project. The content of this template is: <?xml version="1.0" encoding="utf-8"?> <customizerdata> <metadata> <version></version> <creation-date></creation-date> <application-data> <! Declare Buttons visible in Homepage. <key id= HomepageProgKeys"> <values> <! Format: <value>{ id :, label :, icon : }</value> Example: <value>{ 'id': 'MYWEBAPP_BTN', 'label': 'MyWebapp', 'icon': 'mywebapp-application' }</value> --> </values> </key> 8AL USAA ed01 15 /16

16 <! Declare Preview visible in Homepage. <key id= HomepagePreviews"> <values> <! Format: <value>preview displayer;title;setting enabling </value> Example: <value> webapp.mywebapp.getmywebapppreview;my webapp;enablemywebapppreview </value> --> </values> </key> </keys> <! Declare Actions which can be programmed in a programmed key. <key id= HomepageProgKeys"> <values> <! Format: <value>{ action :, webappname :, icon : }</value> Example: <value>{ 'action': 'my-action', 'webappname': 'mywebapp', 'icon': 'mywebapp-myaction' }</value> --> </values> </key> </keys> </application-data> </metadata> </customizerdata> Template of customizerdata.xml It is the responsibility of the developer to fill in the different fields according to the activity of the webapp. Only the button which is given as parameter with the wizard is declared in the file. The others are not and should be added manually. 8AL USAA ed01 16 /16

OmniTouch 8600 My Instant Communicator Mobile Edition for BlackBerry Release 4.1. User guide. OpenTouch (OpenTouch User)

OmniTouch 8600 My Instant Communicator Mobile Edition for BlackBerry Release 4.1. User guide. OpenTouch (OpenTouch User) OmniTouch 8600 My Instant Communicator Mobile Edition for BlackBerry Release 4.1 User guide OpenTouch (OpenTouch User) June 2012 Table of content 1 INTRODUCTION... 3 1.1 BUSINESS MODE... 3 1.2 PRIVATE

More information

Customer Tips. Xerox Network Scanning HTTP/HTTPS Configuration using Microsoft IIS. for the user. Purpose. Background

Customer Tips. Xerox Network Scanning HTTP/HTTPS Configuration using Microsoft IIS. for the user. Purpose. Background Xerox Multifunction Devices Customer Tips June 5, 2007 This document applies to these Xerox products: X WC Pro 232/238/245/ 255/265/275 for the user Xerox Network Scanning HTTP/HTTPS Configuration using

More information

OmniTouch 8400 Instant Communications Suite. My Instant Communicator for Microsoft Outlook User guide. Release 6.7

OmniTouch 8400 Instant Communications Suite. My Instant Communicator for Microsoft Outlook User guide. Release 6.7 OmniTouch 8400 Instant Communications Suite My Instant Communicator for Microsoft Outlook User guide Release 6.7 8AL 90243USAD ed01 Sept 2012 Table of contents 1 MY INSTANT COMMUNICATOR FOR MICROSOFT OUTLOOK...

More information

U S E R M A N U A L. Alcatel-Lucent. Click to call plugin for OmniPCX Enterprise. User manual. Alcatel-Lucent Enterprise Services Page 1/12

U S E R M A N U A L. Alcatel-Lucent. Click to call plugin for OmniPCX Enterprise. User manual. Alcatel-Lucent Enterprise Services Page 1/12 U S E R M A N U A L Alcatel-Lucent Click to call plugin for OmniPCX Enterprise User manual Alcatel-Lucent Enterprise Services Page 1/12 Index table 1 D o c u m e n t h i s t o r y 3 2 S c o p e 3 2.1 Overview...

More information

Version 1.0 January 2011. Xerox Phaser 3635MFP Extensible Interface Platform

Version 1.0 January 2011. Xerox Phaser 3635MFP Extensible Interface Platform Version 1.0 January 2011 Xerox Phaser 3635MFP 2011 Xerox Corporation. XEROX and XEROX and Design are trademarks of Xerox Corporation in the United States and/or other countries. Changes are periodically

More information

ThirtySix Software WRITE ONCE. APPROVE ONCE. USE EVERYWHERE. www.thirtysix.net SMARTDOCS 2014.1 SHAREPOINT CONFIGURATION GUIDE THIRTYSIX SOFTWARE

ThirtySix Software WRITE ONCE. APPROVE ONCE. USE EVERYWHERE. www.thirtysix.net SMARTDOCS 2014.1 SHAREPOINT CONFIGURATION GUIDE THIRTYSIX SOFTWARE ThirtySix Software WRITE ONCE. APPROVE ONCE. USE EVERYWHERE. www.thirtysix.net SMARTDOCS 2014.1 SHAREPOINT CONFIGURATION GUIDE THIRTYSIX SOFTWARE UPDATED MAY 2014 Table of Contents Table of Contents...

More information

Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x

Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x Configuring Secure Socket Layer (SSL) communication for a standalone environment... 2 Import the Process Server WAS root SSL certificate into

More information

Sage CRM. Sage CRM 2016 R1 Mobile Guide

Sage CRM. Sage CRM 2016 R1 Mobile Guide Sage CRM Sage CRM 2016 R1 Mobile Guide Contents Chapter 1: Introduction to Sage CRM Mobile Solutions 1 Chapter 2: Setting up Sage CRM Mobile Apps 2 Prerequisites for Sage CRM mobile apps 3 Enabling users

More information

Alcatel-Lucent OmniPCX Enterprise Communication Server. IP Desktop SoftPhone-For Flex Office Deployment Guide

Alcatel-Lucent OmniPCX Enterprise Communication Server. IP Desktop SoftPhone-For Flex Office Deployment Guide Alcatel-Lucent OmniPCX Enterprise Communication Server IP Desktop SoftPhone-For Flex Office Deployment Guide Alcatel-Lucent Services for Enterprise All Rights Reserved Alcatel-Lucent 2007 Legal notice

More information

User Manual. Call Center - Agent Assistant Application

User Manual. Call Center - Agent Assistant Application User Manual Call Center Agent Assistant Application Release 8.0 September 2010 Legal notice: Alcatel, Lucent, AlcatelLucent and the AlcatelLucent logo are trademarks of AlcatelLucent. All other trademarks

More information

Alcatel-Lucent OmniPCX Enterprise Free Desktop. Free Desktop version 3.0.1 Linux Installation Guide

Alcatel-Lucent OmniPCX Enterprise Free Desktop. Free Desktop version 3.0.1 Linux Installation Guide Alcatel-Lucent OmniPCX Enterprise Free Desktop Free Desktop version 3.0.1 Linux Installation Guide Alcatel-Lucent Services for Enterprise All Rights Reserved Alcatel-Lucent 2008 Legal notice Alcatel, Lucent,

More information

Magento module Documentation

Magento module Documentation Table of contents 1 General... 4 1.1 Languages... 4 2 Installation... 4 2.1 Search module... 4 2.2 Installation in Magento... 6 2.3 Installation as a local package... 7 2.4 Uninstalling the module... 8

More information

Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0

Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Part No. E52543-01 April 2014 Oracle Financial Services Software Limited Oracle Park Off Western Express Highway

More information

Tool for Automated Provisioning System (TAPS) Version 1.2 (1027)

Tool for Automated Provisioning System (TAPS) Version 1.2 (1027) Tool for Automated Provisioning System (TAPS) Version 1.2 (1027) 2015 VoIP Integration Rev. July 24, 2015 Table of Contents Product Overview... 3 Application Requirements... 3 Cisco Unified Communications

More information

7.0 Wireless Mobile Guide

7.0 Wireless Mobile Guide 7.0 Wireless Mobile Guide Copyright 2010 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated, microfilmed,

More information

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

HP A-IMC Firewall Manager

HP A-IMC Firewall Manager HP A-IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW101-20110805 Legal and notice information Copyright 2011 Hewlett-Packard Development Company, L.P. No part of this

More information

Sage CRM. Sage CRM 7.3 Mobile Guide

Sage CRM. Sage CRM 7.3 Mobile Guide Sage CRM Sage CRM 7.3 Mobile Guide Copyright 2014 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated,

More information

Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades.

Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades. 28 VIRTUAL EXHIBIT Virtual Exhibit (VE) is the instant Web exhibit creation tool for PastPerfect Museum Software. Virtual Exhibit converts selected collection records and images from PastPerfect to HTML

More information

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner

More information

Extended Communication Server Virtual Desktop and MCC User Guide

Extended Communication Server Virtual Desktop and MCC User Guide Extended Communication Server Virtual Desktop and MCC User Guide April 2010 AlcatelLucent Office Communication Solutions All Rights Reserved AlcatelLucent 2010 Legal notice: Alcatel, Lucent, AlcatelLucent

More information

P R O V I S I O N I N G O R A C L E H Y P E R I O N F I N A N C I A L M A N A G E M E N T

P R O V I S I O N I N G O R A C L E H Y P E R I O N F I N A N C I A L M A N A G E M E N T O R A C L E H Y P E R I O N F I N A N C I A L M A N A G E M E N T, F U S I O N E D I T I O N R E L E A S E 1 1. 1. 1.x P R O V I S I O N I N G O R A C L E H Y P E R I O N F I N A N C I A L M A N A G E

More information

OmniTouch 8440 Messaging Software Quick Reference Guide. Messaging Services Telephone User Interface

OmniTouch 8440 Messaging Software Quick Reference Guide. Messaging Services Telephone User Interface Quick Reference Guide Introduction Access to voice messaging is available: Via the Telephone User Interface The Telephone User Interface is accessible from any phone, whether internal or external to the

More information

Alcatel-Lucent OmniTouch Contact Center Standard Edition. Agent on VoIP Plug-in R10.0

Alcatel-Lucent OmniTouch Contact Center Standard Edition. Agent on VoIP Plug-in R10.0 Alcatel-Lucent OmniTouch Contact Center Standard Edition Agent on VoIP Plug-in R10.0 Legal notice: Alcatel, Lucent, Alcatel-Lucent and the Alcatel-Lucent logo are trademarks of Alcatel-Lucent. All other

More information

Alcatel-Lucent OpenTouch Connection for Microsoft Outlook. User guide R2.0

Alcatel-Lucent OpenTouch Connection for Microsoft Outlook. User guide R2.0 Alcatel-Lucent OpenTouch Connection for Microsoft Outlook User guide R2.0 8AL90633USAAed01 March 2014 Table of contents 1. OpenTouch Connection for Microsoft Outlook... 3 2. Start OpenTouch Connection...

More information

Introduction to XML Applications

Introduction to XML Applications EMC White Paper Introduction to XML Applications Umair Nauman Abstract: This document provides an overview of XML Applications. This is not a comprehensive guide to XML Applications and is intended for

More information

User Manual. Call Center - Agent Assistant Application

User Manual. Call Center - Agent Assistant Application User Manual Call Center Agent Assistant Application Release 9.1 April 2013 Legal notice: Alcatel, Lucent, AlcatelLucent and the AlcatelLucent logo are trademarks of AlcatelLucent. All other trademarks

More information

CREATE A CUSTOM THEME WEBSPHERE PORTAL 8.0.0.1

CREATE A CUSTOM THEME WEBSPHERE PORTAL 8.0.0.1 CREATE A CUSTOM THEME WEBSPHERE PORTAL 8.0.0.1 WITHOUT TEMPLATE LOCALIZATION, WITHOUT WEBDAV AND IN ONE WAR FILE Simona Bracco Table of Contents Introduction...3 Extract theme dynamic and static resources...3

More information

Sage CRM. 7.2 Mobile Guide

Sage CRM. 7.2 Mobile Guide Sage CRM 7.2 Mobile Guide Copyright 2013 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated, microfilmed,

More information

How To Pay With Worldpay (Hosted Call Centre)

How To Pay With Worldpay (Hosted Call Centre) Corporate Gateway Mail and Telephone Order Payment Service (Hosted Call Centre) Guide V4.0 June 2014 Use this guide to: Learn how to use the Mail and Telephone Order Payment service (Hosted Call Centre)

More information

Pipeliner CRM Phaenomena Guide Sales Pipeline Management. 2015 Pipelinersales Inc. www.pipelinersales.com

Pipeliner CRM Phaenomena Guide Sales Pipeline Management. 2015 Pipelinersales Inc. www.pipelinersales.com Sales Pipeline Management 2015 Pipelinersales Inc. www.pipelinersales.com Sales Pipeline Management Learn how to manage sales opportunities with Pipeliner Sales CRM Application. CONTENT 1. Configuring

More information

Grandstream Networks, Inc.

Grandstream Networks, Inc. Grandstream Networks, Inc. XML Based Downloadable Phone Book Guide GXP21xx/GXP14xx/GXP116x IP Phone Version 2.0 XML Based Downloadable Phone Book Guide Index INTRODUCTION... 4 WHAT IS XML... 4 WHY XML...

More information

PORTAL ADMINISTRATION

PORTAL ADMINISTRATION 1 Portal Administration User s Guide PORTAL ADMINISTRATION GUIDE Page 1 2 Portal Administration User s Guide Table of Contents Introduction...5 Core Portal Framework Concepts...5 Key Items...5 Layouts...5

More information

HP IMC Firewall Manager

HP IMC Firewall Manager HP IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW102-20120420 Legal and notice information Copyright 2012 Hewlett-Packard Development Company, L.P. No part of this

More information

Jet Data Manager 2012 User Guide

Jet Data Manager 2012 User Guide Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform

More information

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved 1 1. Update Before you start updating, please refer to 2. Important changes to check if there are any additional instructions

More information

Self-Service Portal Implementation Guide

Self-Service Portal Implementation Guide Self-Service Portal Implementation Guide Salesforce, Winter 6 @salesforcedocs Last updated: October 0, 05 Copyright 000 05 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Section 8 Scheduler. Alcatel-Lucent OmniVista 4760 Network Management System

Section 8 Scheduler. Alcatel-Lucent OmniVista 4760 Network Management System Alcatel-Lucent OmniVista 4760 Network Management System Section 8 Scheduler Alcatel-Lucent OmniVista 4760 Network Management System All Rights Reserved Alcatel-Lucent 2011 Legal notice: Alcatel, Lucent,

More information

Infor ERP BaanIV / Baan 5.0 / LN 6.1. User's Guide for Worktop 2.4

Infor ERP BaanIV / Baan 5.0 / LN 6.1. User's Guide for Worktop 2.4 Infor ERP BaanIV / Baan 5.0 / LN 6.1 User's Guide for Worktop 2.4 Copyright 2008 Infor All rights reserved. The word and design marks set forth herein are trademarks and/or registered trademarks of Infor

More information

DITA CMS Release 4.0 (Dynamic Release Management Module): Detailed Release Notes

DITA CMS Release 4.0 (Dynamic Release Management Module): Detailed Release Notes DITA CMS Release 4.0 (Dynamic Release Management Module): Detailed Release Notes WWW.IXIASOFT.COM / DITACMS v. 4.0, Build 4.0.12 / Copyright 2015 IXIASOFT Technologies. All rights reserved. Last revised:

More information

Setting Up Resources in VMware Identity Manager

Setting Up Resources in VMware Identity Manager Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

StarWind iscsi SAN: Configuring HA File Server for SMB NAS February 2012

StarWind iscsi SAN: Configuring HA File Server for SMB NAS February 2012 StarWind iscsi SAN: Configuring HA File Server for SMB NAS February 2012 TRADEMARKS StarWind, StarWind Software and the StarWind and the StarWind Software logos are trademarks of StarWind Software which

More information

AWS Plug-in Guide. Qlik Sense 1.1 Copyright 1993-2015 QlikTech International AB. All rights reserved.

AWS Plug-in Guide. Qlik Sense 1.1 Copyright 1993-2015 QlikTech International AB. All rights reserved. AWS Plug-in Guide Qlik Sense 1.1 Copyright 1993-2015 QlikTech International AB. All rights reserved. Copyright 1993-2015 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik Sense, QlikView,

More information

Automation Services 9.5 Workflow Reference

Automation Services 9.5 Workflow Reference Automation Services 9.5 Workflow Reference CONTENTS Contents Introduction...3 Where we're coming from...3 Conventions in this book...3 Understanding workflows...5 Workflows...6 Execute QPP Script...6 Export

More information

User Replicator USER S GUIDE

User Replicator USER S GUIDE User Replicator USER S GUIDE Contents 1. Introduction... 2 1.1. User Replicator requirements... 2 2. Creating users in Learning Center from the Active Directory... 3 2.1. Process File... 3 2.2 Users Mappings...

More information

Samsung KNOX EMM Authentication Services. SDK Quick Start Guide

Samsung KNOX EMM Authentication Services. SDK Quick Start Guide Samsung KNOX EMM Authentication Services SDK Quick Start Guide June 2014 Legal notice This document and the software described in this document are furnished under and are subject to the terms of a license

More information

Getting Started With Halo for Windows For CloudPassage Halo

Getting Started With Halo for Windows For CloudPassage Halo Getting Started With Halo for Windows For CloudPassage Halo Protecting your Windows servers in a public or private cloud has become much easier and more secure, now that CloudPassage Halo is available

More information

Centrify Mobile Authentication Services

Centrify Mobile Authentication Services Centrify Mobile Authentication Services SDK Quick Start Guide 7 November 2013 Centrify Corporation Legal notice This document and the software described in this document are furnished under and are subject

More information

StreamServe Persuasion SP5 Document Broker Plus

StreamServe Persuasion SP5 Document Broker Plus StreamServe Persuasion SP5 Document Broker Plus User Guide Rev A StreamServe Persuasion SP5 Document Broker Plus User Guide Rev A 2001-2010 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520

More information

5.1 Features 1.877.204.6679. sales@fourwindsinteractive.com Denver CO 80202

5.1 Features 1.877.204.6679. sales@fourwindsinteractive.com Denver CO 80202 1.877.204.6679 www.fourwindsinteractive.com 3012 Huron Street sales@fourwindsinteractive.com Denver CO 80202 5.1 Features Copyright 2014 Four Winds Interactive LLC. All rights reserved. All documentation

More information

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training QAD Enterprise Applications Training Guide Demand Management 6.1 Technical Training 70-3248-6.1 QAD Enterprise Applications February 2012 This document contains proprietary information that is protected

More information

Products that are referred to in this document may be trademarks and/or registered trademarks of the respective owners.

Products that are referred to in this document may be trademarks and/or registered trademarks of the respective owners. 2015 GEOVAP, spol. s r. o. All rights reserved. GEOVAP, spol. s r. o. Cechovo nabrezi 1790 530 03 Pardubice Czech Republic +420 466 024 618 http://www.geovap.cz Products that are referred to in this document

More information

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

Getting Started with the Aloha Community Template for Salesforce Identity

Getting Started with the Aloha Community Template for Salesforce Identity Getting Started with the Aloha Community Template for Salesforce Identity Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved.

More information

Crystal Reports Installation Guide

Crystal Reports Installation Guide Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks

More information

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01 ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01 FEBRUARY 2010 COPYRIGHT Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Part

More information

10CS73:Web Programming

10CS73:Web Programming 10CS73:Web Programming Question Bank Fundamentals of Web: 1.What is WWW? 2. What are domain names? Explain domain name conversion with diagram 3.What are the difference between web browser and web server

More information

OmniTouch 8400 Instant Communications Suite. My Instant Communicator Desktop User guide. Release 6.7

OmniTouch 8400 Instant Communications Suite. My Instant Communicator Desktop User guide. Release 6.7 OmniTouch 8400 Instant Communications Suite My Instant Communicator Desktop User guide Release 6.7 8AL 90219 USAE ed01 Sept 2012 Table of content MY INSTANT COMMUNICATOR FOR THE PERSONAL COMPUTER... 3

More information

Adeptia Suite 6.2. Application Services Guide. Release Date October 16, 2014

Adeptia Suite 6.2. Application Services Guide. Release Date October 16, 2014 Adeptia Suite 6.2 Application Services Guide Release Date October 16, 2014 343 West Erie, Suite 440 Chicago, IL 60654, USA Phone: (312) 229-1727 x111 Fax: (312) 229-1736 Document Information DOCUMENT INFORMATION

More information

Cloud Administration Guide for Service Cloud. August 2015 E65820-01

Cloud Administration Guide for Service Cloud. August 2015 E65820-01 Cloud Administration Guide for Service Cloud August 2015 E65820-01 Table of Contents Introduction 4 How does Policy Automation work with Oracle Service Cloud? 4 For Customers 4 For Employees 4 Prerequisites

More information

Portal Version 1 - User Manual

Portal Version 1 - User Manual Portal Version 1 - User Manual V1.0 March 2016 Portal Version 1 User Manual V1.0 07. March 2016 Table of Contents 1 Introduction... 4 1.1 Purpose of the Document... 4 1.2 Reference Documents... 4 1.3 Terminology...

More information

Microsoft Visual Studio Integration Guide

Microsoft Visual Studio Integration Guide Microsoft Visual Studio Integration Guide MKS provides a number of integrations for Integrated Development Environments (IDEs). IDE integrations allow you to access MKS Integrity s workflow and configuration

More information

RoomWizard Synchronization Software Manual Installation Instructions

RoomWizard Synchronization Software Manual Installation Instructions 2 RoomWizard Synchronization Software Manual Installation Instructions Table of Contents Exchange Server Configuration... 4 RoomWizard Synchronization Software Installation and Configuration... 5 System

More information

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved 1 1. Update Before you start updating, please refer to 2. Important changes to check if there are any additional instructions

More information

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Ed-Fi ODS and Ed-Fi ODS API Version 2.0 - Technical Preview October 2014 2014 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark

More information

Colligo Contributor File Manager 4.6. User Guide

Colligo Contributor File Manager 4.6. User Guide Colligo Contributor File Manager 4.6 User Guide Contents Colligo Contributor File Manager Introduction... 2 Benefits... 2 Features... 2 Platforms Supported... 2 Installing and Activating Contributor File

More information

Creating a generic user-password application profile

Creating a generic user-password application profile Chapter 4 Creating a generic user-password application profile Overview If you d like to add applications that aren t in our Samsung KNOX EMM App Catalog, you can create custom application profiles using

More information

NS DISCOVER 4.0 ADMINISTRATOR S GUIDE. July, 2015. Version 4.0

NS DISCOVER 4.0 ADMINISTRATOR S GUIDE. July, 2015. Version 4.0 NS DISCOVER 4.0 ADMINISTRATOR S GUIDE July, 2015 Version 4.0 TABLE OF CONTENTS 1 General Information... 4 1.1 Objective... 4 1.2 New 4.0 Features Improvements... 4 1.3 Migrating from 3.x to 4.x... 5 2

More information

Work with the Mobile Web App. Schoolwires Centricity2

Work with the Mobile Web App. Schoolwires Centricity2 Work with the Mobile Web App Schoolwires Centricity2 Trademark Notice Schoolwires, the Schoolwires logos, and the unique trade dress of Schoolwires are the trademarks, service marks, trade dress and logos

More information

Information Server Documentation SIMATIC. Information Server V8.0 Update 1 Information Server Documentation. Introduction 1. Web application basics 2

Information Server Documentation SIMATIC. Information Server V8.0 Update 1 Information Server Documentation. Introduction 1. Web application basics 2 Introduction 1 Web application basics 2 SIMATIC Information Server V8.0 Update 1 System Manual Office add-ins basics 3 Time specifications 4 Report templates 5 Working with the Web application 6 Working

More information

Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5

Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5 Technical Note Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5 In the VMware Infrastructure (VI) Perl Toolkit 1.5, VMware

More information

Using Entrust certificates with Microsoft Office and Windows

Using Entrust certificates with Microsoft Office and Windows Entrust Managed Services PKI Using Entrust certificates with Microsoft Office and Windows Document issue: 1.0 Date of issue: May 2009 Copyright 2009 Entrust. All rights reserved. Entrust is a trademark

More information

Configuring IBM Cognos Controller 8 to use Single Sign- On

Configuring IBM Cognos Controller 8 to use Single Sign- On Guideline Configuring IBM Cognos Controller 8 to use Single Sign- On Product(s): IBM Cognos Controller 8.2 Area of Interest: Security Configuring IBM Cognos Controller 8 to use Single Sign-On 2 Copyright

More information

SMS for REST Professional

SMS for REST Professional RockendSMS Enhanced Integration SMS for REST Professional RockendSMS has newly designed and developed an upgrade to the way you send SMS through REST Professional V14 and above (RockendSMS Enhanced Integration).

More information

SageCRM 6.1. Wireless Mobile Guide

SageCRM 6.1. Wireless Mobile Guide SageCRM 6.1 Wireless Mobile Guide Copyright 2007 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated,

More information

Using PayPal in CloudTrax

Using PayPal in CloudTrax CLOUDTRAX USER GUIDE Using PayPal in CloudTrax CloudTrax is a free cloud-based network controller that helps you build, manage and monitor your wireless networks from anywhere in the world. This guide

More information

nopcommerce User Guide

nopcommerce User Guide nopcommerce User Guide Open source ecommerce solution Version 1.90 Copyright Notice Information in this document, including URL and other Internet Web site references, is subject to change without notice.

More information

HP Enterprise Integration module for SAP applications

HP Enterprise Integration module for SAP applications HP Enterprise Integration module for SAP applications Software Version: 2.50 User Guide Document Release Date: May 2009 Software Release Date: May 2009 Legal Notices Warranty The only warranties for HP

More information

LogMeIn Backup. Getting Started Guide

LogMeIn Backup. Getting Started Guide LogMeIn Backup Getting Started Guide Contents Getting Started with LogMeIn Backup...3 About LogMeIn Backup...3 How does LogMeIn Backup Work, at-a-glance?...3 About Security in LogMeIn Backup...3 LogMeIn

More information

TheEducationEdge. Export Guide

TheEducationEdge. Export Guide TheEducationEdge Export Guide 102111 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

Infor Enterprise Server Plug-in for Microsoft SQL Server Reporting Services Development Guide

Infor Enterprise Server Plug-in for Microsoft SQL Server Reporting Services Development Guide Infor Enterprise Server Plug-in for Microsoft SQL Server Reporting Services Development Guide Copyright 2015 Infor Important Notices The material contained in this publication (including any supplementary

More information

StarWind iscsi SAN Configuring HA File Server for SMB NAS

StarWind iscsi SAN Configuring HA File Server for SMB NAS Hardware-less VM Storage StarWind iscsi SAN Configuring HA File Server for SMB NAS DATE: FEBRUARY 2012 TECHNICAL PAPER Trademarks StarWind, StarWind Software and the StarWind and the StarWind Software

More information

026-1010 Rev 7 06-OCT-2011. Site Manager Installation Guide

026-1010 Rev 7 06-OCT-2011. Site Manager Installation Guide 026-1010 Rev 7 06-OCT-2011 Site Manager Installation Guide Retail Solutions 3240 Town Point Drive NW, Suite 100 Kennesaw, GA 30144, USA Phone: 770-425-2724 Fax: 770-425-9319 Table of Contents 1 SERVER

More information

MadCap Software. Upgrading Guide. Pulse

MadCap Software. Upgrading Guide. Pulse MadCap Software Upgrading Guide Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

More information

Content Manager User Guide Information Technology Web Services

Content Manager User Guide Information Technology Web Services Content Manager User Guide Information Technology Web Services The login information in this guide is for training purposes only in a test environment. The login information will change and be redistributed

More information

for Sage 100 ERP Business Insights Overview Document

for Sage 100 ERP Business Insights Overview Document for Sage 100 ERP Business Insights Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

Xerox Multifunction Devices. Verify Device Settings via the Configuration Report

Xerox Multifunction Devices. Verify Device Settings via the Configuration Report Xerox Multifunction Devices Customer Tips March 15, 2007 This document applies to these Xerox products: X WC 4150 X WCP 32/40 X WCP 35/45/55 X WCP 65/75/90 X WCP 165/175 X WCP 232/238 X WCP 245/255 X WCP

More information

ETSI TS 124 423 V8.4.0 (2012-01)

ETSI TS 124 423 V8.4.0 (2012-01) TS 124 423 V8.4.0 (2012-01) Technical Specification Digital cellular telecommunications system (Phase 2+); Universal Mobile Telecommunications System (UMTS); LTE; TISPAN; PSTN/ISDN simulation services;

More information

Millennium SMS. Setup Guide. Version 1.01

Millennium SMS. Setup Guide. Version 1.01 Millennium SMS Setup Guide Version 1.01 Copyright Information 2013 Millennium by Harms Software Inc. All rights reserved. Every effort has been made to ensure that the information in this guide is accurate.

More information

StreamServe Persuasion SP5 Control Center

StreamServe Persuasion SP5 Control Center StreamServe Persuasion SP5 Control Center User Guide Rev C StreamServe Persuasion SP5 Control Center User Guide Rev C OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other international patents

More information

Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER

Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER Table of Contents Introduction.... 3 Requirements.... 3 Horizon Workspace Components.... 3 SAML 2.0 Standard.... 3 Authentication

More information

An Oracle White Paper June 2014. RESTful Web Services for the Oracle Database Cloud - Multitenant Edition

An Oracle White Paper June 2014. RESTful Web Services for the Oracle Database Cloud - Multitenant Edition An Oracle White Paper June 2014 RESTful Web Services for the Oracle Database Cloud - Multitenant Edition 1 Table of Contents Introduction to RESTful Web Services... 3 Architecture of Oracle Database Cloud

More information

CA Adapter. Cisco IPSec VPN Configuration Guide. r2.2.9

CA Adapter. Cisco IPSec VPN Configuration Guide. r2.2.9 CA Adapter Cisco IPSec VPN Configuration Guide r2.2.9 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation )

More information

Table of Contents. Table of Contents 3

Table of Contents. Table of Contents 3 User Guide EPiServer 7 Mail 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 Community on EPiServer

More information

Using IIS and UltraDev Locally page 1

Using IIS and UltraDev Locally page 1 Using IIS and UltraDev Locally page 1 IIS Web Server Installation IIS Web Server is the web server provided by Microsoft for platforms running the various versions of the Windows Operating system. It is

More information

Using the Synchronization Client

Using the Synchronization Client Using the Synchronization Client The owncloud Desktop Client remains in the background and is visible as an icon in the system tray (Windows, KDE), status bar (Mac OS X), or notification area (Linux).

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Single Sign-On Configuration Guide 6.2.6 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Composite.Community.Newsletter - User Guide

Composite.Community.Newsletter - User Guide Composite.Community.Newsletter - User Guide Composite 2015-11-09 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 4 1.1 Who Should Read This

More information

Weather Widget Usage Guide

Weather Widget Usage Guide Weather Widget Usage Guide 1 DWUser.com - Weather Widget - Usage Guide Table of Contents Introduction... 3 Getting Started - Accessing the Extension... 4 Using the Extension... 6 Making Changes... 9 Advanced

More information