Webnodes Developers Quick Guide

Size: px
Start display at page:

Download "Webnodes Developers Quick Guide"

Transcription

1 Webnodes Webnodes Developers Quick Guide Want to get started right away? Ole Gulbrandsen 1/1/2010

2 Webnodes Developers Quick Guide Want to get started right away? This guide is for C# developers and will help you get started with the Webnodes Adaptive Framework (WAF). After reading this short guide you should have a basic knowledge of the key features in WAF and be able to start building basic websites and web applications. Definitions and meanings of words... 3 Installation... 3 Editing content... 4 Things to try out... 5 The WAF data model... 8 Examples of data query... 9 Why are the data modelling capabilities so important? Some words about processes outside the context page view execution Making your own templates Creating your own content class Standard modules Welcome Content SMS and MMS File library Blog Forum Templates Semantics User Explorer System Wastebin Other key functionality Functionality in development and soon to be released: Some examples of what is possible with WAF P a g e

3 Definitions and meanings of words When using the term WAF in this document, it is the short expression for Webnodes Adaptive Framework Installation 1. Make sure you got: A Windows PC with.net 3.51 or later Visual Studio 2008/2010 or Visual Studio Express MS SQL Server, MS SQL Server Express or MySQL 2. Launch the setup from 3. Click the Create button to install a new site. 4. Choose the Visual Studio project installation: 5. Follow the setup wizard in your browser and select the The WAF framework site which is an empty WAF installation. If the setup for some reason fail or you abort it halfway, you must delete all files in the website folder and run WAF.Setup.exe again. 3 P a g e

4 Editing content Type edit after the root URL of the website. This will take you to the WAF interface. Use the master login you specified during the setup. WAF works best with IE or Firefox. Maximize the browser window. Open the preview by clicking on the Preview button on the top right corner. Select one of the articles in the menu and click Edit at the top. You can now make changes to the text, Save and click Refresh above the preview frame and to watch the change live. This will open the page in WAF and your interface should look similar to this 4 P a g e

5 Things to try out Move articles in the tree view by simple drag drop operations with the mouse. Copy articles in the tree view by drag drop operations while you hold the SHIFT key in. Search for articles in the search box to the top right. Upload images by clicking on the Upload button in the Files field below the blue editor. Select a range of images from your hard drive and watch WAF upload multiple images in one go. Once the images are uploaded you can insert them into the editor using the image icon on the editor toolbar, or simply drag and drop them into the editor. Try resizing it and notice how WAF re-samples a new version for each size automatically. Once an image is inserted in the HTML field you can edit it by right clicking on the image. This should give you access to the Image Editor: You can use the mouse wheel to zoom in and out of the image. Dragging outside the image moves the image. Dragging inside creates a new cut out. 5 P a g e

6 You can copy and paste inside the editor to work on multiple versions of the same image: There are also advanced image manipulations features like image seam carving for better automatic cropping of images. Example: Notice how all the sailboats are present in the right image. WAF automatically removes low contrast areas of the image while keeping the boats intact. The crop mode is selected in the image editor: Upload a video file to the same field as the images. Insert it in the editor using the media icon on the editor toolbar. WAF will automatically convert the video to the size and quality you want. 6 P a g e

7 Once the player is inserted you can resize and resample the video by simply resizing it like an image: Another thing you can try is the Content Link graph. This is a visualization of all links and relations to the document: 7 P a g e

8 The WAF data model The semantic data modelling capabilities in WAF is unique and differentiate WAF from other CMS system. It is the semantic data modelling capabilities that really make WAF a true web application framework you can use for almost any web application, and not just web publishing. In essence WAF is a fully fledged ORM system with an integrated UI and functionality related to web. For those of you who are not familiar with ORM systems. ORM is short for Object-relational mapping and is a technology for converting data and data models found in rational databases with object oriented language systems. Typically you define your data model in a XML document and the system generates the database fields and code files for you. In WAF there is a XML file that defines the semantic data model, but there is also a built in content type editor that is much easier to work with: The WAF ORM system has built in support for advanced functionality like: Object inheritance, Many to Many relations, hierarchical relations, revision and role control on all content changes, multiple language versions of the same object, super fast query caches, cross field free text searches, etc. Everything you see in WAF is based on the WAF ORM system. That means users, documents, templates etc. are all part of the same semantic data model and can be queried via the same API. You can change and customize built in types and make your own utilizing all the capabilities of object oriented programming. 8 P a g e

9 Examples of data query For example, to write out the names of all objects in WAF you can make this basic query: foreach (var o in WAFContext.Session.GetContents()) { Response.Write(o.Name); } To get all objects that is part of the menu hierarchy: foreach (var o in WAFContext.Session.GetContents<HierarchicalContent>()) { Response.Write(o.Name); } To get a list of all users from a particular country: WAFContext.Session.Query<SystemUser>().Where(AqlSystemUser.Country == France ).Execute(); The query language is typed checked at compile time and supports concepts such as group by, nested inner joins, aggregate functions etc: An example of an inner join between users and user groups: var group = new AqlAliasUserGroup(); var user = new AqlAliasSystemUser(); var relation = new AqlAliasRelUserGroup(group, user); var query = new AqlQuery(WAFContext.Session); query.from(relation); var groupname = query.select(group.groupname); query.where(user.country == "France" user.country == "England"); query.orderby(user.changedate); query.distinct = true; var result = query.execute(); var groupnames = new List<string>(); while (result.read()) groupnames.add(groupname.value); This query will return a list of names of all user groups that has users from France or England. Since everything you work with is compiled classes and you get the full benefits of super fast performance and good integration with Visual Studio and support for full intellisense on all custom defined classes. 9 P a g e

10 Why is semantic data modelling so important? Our motivation for making WAF was that we saw that most websites were becoming increasingly complex and that page publication was just a small part of it. Sure, today most CMS systems come with a lot of added modules for functionality like Blog, E-shop etc, and so do WAF, but the problem is that the websites are becoming increasingly integrated with the business processes of a company, and every company has different needs. Sometimes standardized module can help you out, but often you need to build things from scratch as it is not possible to customizing the standard modules enough or using the modules will result in hard compromises on the functionality. Custom building things from scratch is time consuming and expensive. In addition, the customized systems become disconnected from the rest of the website and have separate UI. With the semantic data modelling capabilities of WAF you do not need to create separate customized systems. WAF will generate the code and database fields for you automatically and it all becomes part of a tightly integrated system. To summarize, the key aim with WAF is to: Combine the freedom and flexibility found in custom built software with the cost and user-friendliness found in standardized software 10 P a g e

11 Some words about processes outside the context page view execution An important aspect of WAF is the ability to run application threads outside the context of a page view. Often it is difficult to complete an operation during the execution of a page view, and sometimes you want to perform the operation at regular intervals during the week completely disconnected to a page view. Examples could be sending out thousands of SMS s or compiling complex financial reports in PDF from multiple data sources. In WAF all of this can be achieved within the context of IIS. There is no need to set up a separate Windows Service. This makes hosting less complicated and you can install in shared hosting environments that are available at a very low cost. ( or ) WAF utilizes the Windows Workflow Foundation (WF) to manage the processes. In fact behind every dialogue you see in WAF there is a running workflow. This is something that is unique to WAF and makes it very easy to manage and control complicated interface dialogue sequences. WAF extends the WF framework with an interface API that utilizes AJAX for real time interface updates. A typical example is a process progress bar. A key feature of Windows Workflow Foundation is the ability to release threads and serialize the workflow object to the database while it is waiting for input from the user. This is critical if you want to handle dialogues to many users simultaneously. Otherwise you would quickly run out of the 20 or so ASP.Net threads. Here is a very simple example on how you make own workflow: Add a C# class file to the App_Code folder, call it Test.cs Add this code to the class: using System; using System.Threading; using WAF.Engine.Workflow.Methods; public class Test : WorkflowMethod { public override NextCall Invoke(WorkflowMethod invoker) { Info.InBackgroundMode = false; Info.Caption = "Test workflow running"; for (int i = 0; i < 100; i++) { Thread.Sleep(100); Info.Description = "Processing item " + i; Info.PercentageComplete = i; } return null; } } To run this workflow from any template you can write: WAFContext.StartWorkflowMethod(new Test()); 11 P a g e

12 You may also make the process run automatically every midnight by adding a scheduled task in the system module: And then enter the following settings: 12 P a g e

13 When you save and close this dialogue it will run every day after midnight. You may also start it instantly by clicking the Run button: It is beyond the scope of this quick guide to go further into this, but it is an important architectural feature of WAF and can add invaluable functionality that will take your web applications to a new level. (Workflows can also be created using the Workflow Designer in Visual Studio, but to our experience it is has some performance issues and it is often easier to just write the code by hand as in this example. A new designer is coming in with.net 4.0 and Visual Studio 2010 and this is much better.) 13 P a g e

14 Making your own templates Templates in WAF are just normal.aspx files and is created and edited in Visual Studio. You can organize them and put them in any folder you like. You can make use of all ASP.NET controls and build master pages and user controls to create the templates you need for your site. To make a new template try this: Copy the existing template file call Article.aspx under the folder Templates. Once you have created the.aspx file you must create a template instance in WAF that refers to this file. Open the template module: Then double click on the article2.aspx file and click on the button Create template for this file. Next, click the Select button as shown below to select. 14 P a g e

15 You may edit the template file directly in WAF by clicking on the Codebehind File tab, but for most of the time we recommend using Visual Studio to edit the templates. To make an article use this template open an article in the contents module and select the Options tab: You can change the appearance of template in Visual Studio. To change the template of a number of articles in one go you can enable the Show advanced property options : This will open a dialogue where you can change any property value on many contents on one go. 15 P a g e

16 Creating your own content class Open the Semantics module. And select New Class: Type the class name NewTestClass and let it inherit from HierarchicalContent. Then, add a property named MyProperty of type HTML 16 P a g e

17 Next, compile the changes by selecting Full rebuild in the menu under New Definitions. Now the system will make the necessary changes to the database and generate the class files in the App_Code folder. When the compilation is complete you can add the class to the site: Now you re ready to use the new content class. Select New in the content menu and the new class will appear in the menu: 17 P a g e

18 Standard modules Welcome The default opening module with information about the latest traffic and last edited documents. Content The default module for editing all content. Newsletter A module for sending out newsletters. SMS and MMS A module for sending and receiving SMS and MMS messages. File library A module for sharing files across multiple sites and contents. Blog A module creating blogs in your site. Forum A module for creating forums in your site. Templates A module for editing and managing template files and stylesheets. Semantics A module for setting up and modifying the data model. This includes classes, relations, enumerations and content cultures. User A module for organizing users and user groups. User groups are key to controlling user permissions. Explorer A module for directly accessing the file system. Can be used to upload and download large number of files. It supports uploading and expansion of large ZIP archives. System A module for monitoring the load status of the system and make system changes like moving the database, downloading the whole site or re-index all documents etc. Wastebin A module where all deleted objects are stored when they are deleted. 18 P a g e

19 Other key functionality Other key functionality not mentioned in this guide: A free text search engine based on Lucene that enables searches across all fields and text inside files like PDF, Word, Excel, Windows Write. Etc A built in gateway for sending large quantities of , SMS and MMS Out of the box integration with Google Analytics. Including a simple API to access their REST API for querying analytics data server side. Word like inline spellchecker in for all major languages. Functionality in development and soon to be released: A Forms module, enabling non technical users to create and manage forms. A LINQ provider Visit side controls to make template creation easier E-commerce module Some examples of what is possible with WAF P a g e

Webnodes Developers Manual

Webnodes Developers Manual Webnodes Webnodes Developers Manual Framework programming manual Administrator 1/1/2010 Webnodes Developers manual Webnodes Overview... 5 Definitions and meanings of words... 5 Introduction... 5 Key components...

More information

Quick Start Guide. This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions:

Quick Start Guide. This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions: Quick Start Guide This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions:. How can I install Kentico CMS?. How can I edit content? 3. How can I insert an image or

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

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Introduction to Cognos

Introduction to Cognos Introduction to Cognos User Handbook 7800 E Orchard Road, Suite 280 Greenwood Village, CO 80111 Table of Contents... 3 Logging In To the Portal... 3 Understanding IBM Cognos Connection... 4 The IBM Cognos

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

Bringing Together One ASP.NET

Bringing Together One ASP.NET Bringing Together One ASP.NET Overview ASP.NET is a framework for building Web sites, apps and services using specialized technologies such as MVC, Web API and others. With the expansion ASP.NET has seen

More information

Instructor: Clara Knox. Reference:

Instructor: Clara Knox. Reference: Instructor: Clara Knox Reference: http://www.smith.edu/tara/cognos/documents/query_studio_users_guide.pdf Reporting tool for creating simple queries and reports in COGNOS 10.1, the web-base reporting solution.

More information

Content Publisher User Guide

Content Publisher User Guide Content Publisher User Guide Overview 1 Overview of the Content Management System 1 Table of Contents What's New in the Content Management System? 2 Anatomy of a Portal Page 3 Toggling Edit Controls 5

More information

SCHULICH MEDICINE & DENTISTRY Website Updates August 30, Administrative Web Editor Guide v6

SCHULICH MEDICINE & DENTISTRY Website Updates August 30, Administrative Web Editor Guide v6 SCHULICH MEDICINE & DENTISTRY Website Updates August 30, 2012 Administrative Web Editor Guide v6 Table of Contents Chapter 1 Web Anatomy... 1 1.1 What You Need To Know First... 1 1.2 Anatomy of a Home

More information

Prezi: Moving beyond Slides

Prezi: Moving beyond Slides [ Prezi: Moving beyond Slides ] by: Charina Ong Centre for Development of Teaching and Learning National University of Singapore Table of Contents About the Workshop... i Workshop Objectives... i Session

More information

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions.

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions. USER GUIDE This guide is intended for users of all levels of expertise. The guide describes in detail Sitefinity user interface - from logging to completing a project. Use it to learn how to create pages

More information

Get in Touch Module 1 - Core PHP XHTML

Get in Touch Module 1 - Core PHP XHTML PHP/MYSQL (Basic + Advanced) Web Technologies Module 1 - Core PHP XHTML What is HTML? Use of HTML. Difference between HTML, XHTML and DHTML. Basic HTML tags. Creating Forms with HTML. Understanding Web

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

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Joomla

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Joomla About the Tutorial Joomla is an open source Content Management System (CMS), which is used to build websites and online applications. It is free and extendable which is separated into frontend templates

More information

Reporting Center. Primary (Stand-Alone) Interface

Reporting Center. Primary (Stand-Alone) Interface Reporting Center The Reporting Center is where you will go to run or create reports on projects. It can be accessed in any of the follow ways, each with a slightly different user interface and functionality.

More information

In the fourth unit you will learn how to upload and add images and PDF files.

In the fourth unit you will learn how to upload and add images and PDF files. Introduction Here at SUNY New Paltz, we use the Terminal Four (T4) web content management system (CMS). This puts the power of editing content on our college s webpage in the hands of our authorized users.

More information

What's New in Sitecore CMS 6.4

What's New in Sitecore CMS 6.4 Sitecore CMS 6.4 What's New in Sitecore CMS 6.4 Rev: 2010-12-02 Sitecore CMS 6.4 What's New in Sitecore CMS 6.4 This document describes the new features and changes introduced in Sitecore CMS 6.4 Table

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

Creating the Data Layer

Creating the Data Layer Creating the Data Layer When interacting with any system it is always useful if it remembers all the settings and changes between visits. For example, Facebook has the details of your login and any conversations

More information

Kentico CMS Web Parts

Kentico CMS Web Parts Kentico CMS Web Parts Abuse report Abuse report In-line abuse report Articles Article list BizForms BizForm (on-line form) Blogs Comment view Recent posts Post archive Blogs comments viewer New blog Blog

More information

10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010

10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010 10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010 Course Overview This instructor-led course provides knowledge and skills on developing Web applications by using Microsoft Visual

More information

Coveo Platform 6.5. Microsoft SharePoint Connector Guide

Coveo Platform 6.5. Microsoft SharePoint Connector Guide Coveo Platform 6.5 Microsoft SharePoint Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

Web logs (blogs. blogs) Feed support BLOGS) WEB LOGS (BLOGS

Web logs (blogs. blogs) Feed support BLOGS) WEB LOGS (BLOGS Web logs (blogs blogs) You can create your own personal Web logs (blogs) using IBM Lotus Notes. Using the blog template (dominoblog.ntf), you create a blog application, such as myblog.nsf, which you can

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

A new clients guide to: Activating a new Studio 3.0 Account Creating a Photo Album Starting a Project Submitting a Project Publishing Tips

A new clients guide to: Activating a new Studio 3.0 Account Creating a Photo Album Starting a Project Submitting a Project Publishing Tips Getting Started With Heritage Makers A Guide to the Heritage Studio 3.0 Drag and Drop Publishing System presented by Heritage Makers A new clients guide to: Activating a new Studio 3.0 Account Creating

More information

SharePoint Designer Customizing and Branding SharePoint 2010 and Office 365

SharePoint Designer Customizing and Branding SharePoint 2010 and Office 365 SharePoint Designer 2010 - Customizing and Branding SharePoint 2010 and Office 365 55010; 3 Days, Instructor-led Course Description This three-day instructor-led course provides students with the knowledge

More information

QUERY USER MANUAL Chapter 7

QUERY USER MANUAL Chapter 7 QUERY USER MANUAL Chapter 7 The Spectrum System PeopleSoft Financials Version 7.5 1. INTRODUCTION... 3 1.1. QUERY TOOL... 3 2. OPENING THE QUERY TOOL... 4 3. THE QUERY TOOL PANEL... 5 3.1. COMPONENT VIEW

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

Introduction...5. Chapter 1. Installing System Installing Server and ELMA Designer... 7

Introduction...5. Chapter 1. Installing System Installing Server and ELMA Designer... 7 Chapter 1 Contents Installing System Contents Introduction...5 Chapter 1. Installing System... 6 1.1. Installing Server and ELMA Designer... 7 1.2. Verifying ELMA Server and ELMA Designer Installation...

More information

SMARTdoc v2 User Manual

SMARTdoc v2 User Manual Pages: 1/49 SMARTdoc v2 Pages: 2/49 1 Introduction SMARTdoc is an easy to use but full functional document management system. The mean focus is easy and fast. SMARTdoc is all about document and information

More information

VERSION GROUPWISE WEBACCESS USER'S GUIDE

VERSION GROUPWISE WEBACCESS USER'S GUIDE VERSION GROUPWISE WEBACCESS USER'S GUIDE TM Novell, Inc. makes no representations or warranties with respect to the contents or use of this manual, and specifically disclaims any express or implied warranties

More information

New features in version 8 TERMINALFOUR 8.0

New features in version 8 TERMINALFOUR 8.0 New features in version 8 TERMINALFOUR 8.0 TERMINALFOUR Web Developer 1 1999-2015 All Rights Reserved, TERMINALFOUR Solutions Ltd 1999-2014 All Rights Reserved, TERMINALFOUR Solutions Ltd Copyright 1999-2015

More information

What s New in Cognos. Cognos Analytics Participant s Guide

What s New in Cognos. Cognos Analytics Participant s Guide What s New in Cognos Cognos Analytics Participant s Guide Welcome to What s New in Cognos! Illinois State University has undergone a version upgrade of IBM Cognos to Cognos Analytics. All functionality

More information

Contents. 1. Using Cherry 1.1 Getting started 1.2 Logging in

Contents. 1. Using Cherry 1.1 Getting started 1.2 Logging in 1 Contents 1. Using Cherry 1.1 Getting started 1.2 Logging in 2. Site Page Hierarchy Management 2.1 Page Addition 2.2 Page Deletion 2.3 Editing Page Details 3. Page Content Modification 3.1 Page Revisions

More information

Perch Documentation. U of M - Department of Computer Science. Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward

Perch Documentation. U of M - Department of Computer Science. Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward Perch Documentation U of M - Department of Computer Science Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward 1 TABLE OF CONTENTS Introduction to Perch History of Perch ---------------------------------------------

More information

HPCI CMS for Information Sharing User Manual Ver. 1

HPCI CMS for Information Sharing User Manual Ver. 1 Document ID:HPCI-OF01-003E-01 HPCI CMS for Information Sharing User Manual Ver. 1 2015/10/1 HPCI Operating Office Revision History Date Revision Contents 2015/10/1 First edition 1 Table of contents Revision

More information

Kentico CMS 6.0 User s Guide

Kentico CMS 6.0 User s Guide Kentico CMS 6.0 User s Guide 2 Kentico CMS 6.0 User s Guide Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile

More information

This walkthrough assumes you have completed the Getting Started walkthrough and the first lift and shift walkthrough.

This walkthrough assumes you have completed the Getting Started walkthrough and the first lift and shift walkthrough. Azure Developer Immersion In this walkthrough, you are going to put the web API presented by the rgroup app into an Azure API App. Doing this will enable the use of an authentication model which can support

More information

Creating a Course Web Site

Creating a Course Web Site Creating a Course Web Site What you will do: Use Web templates Use shared borders for navigation Apply themes As an educator or administrator, you are always looking for new and exciting ways to communicate

More information

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 Query Studio Training Guide Cognos 8 February 2010 DRAFT Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 2 Table of Contents Accessing Cognos Query Studio... 5

More information

Kentico CMS Web Parts

Kentico CMS Web Parts Kentico CMS Web Parts Abuse report Abuse report In-line abuse report Articles Article list Attachments Attachment image gallery Document attachments BizForms BizForm (on-line form) Blogs Comment view Recent

More information

Copyright About the Customization Guide Introduction Getting Started...13

Copyright About the Customization Guide Introduction Getting Started...13 Contents 2 Contents Copyright...10 About the Customization Guide...11 Introduction... 12 Getting Started...13 Knowledge Pre-Requisites...14 To Prepare an Environment... 14 To Assign the Customizer Role

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

Kentico CMS User s Guide 4.1

Kentico CMS User s Guide 4.1 Kentico CMS User s Guide 4.1 2 Kentico CMS User s Guide 4.1 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile

More information

Website Management with the CMS

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

More information

2016 TRTA Content Managers Resource Guide How to update and edit your local unit website. Roy Varney, TRTA Multimedia Specialist

2016 TRTA Content Managers Resource Guide How to update and edit your local unit website. Roy Varney, TRTA Multimedia Specialist 2016 TRTA Content Managers Resource Guide How to update and edit your local unit website. Roy Varney, TRTA Multimedia Specialist Table of Contents Introduction... 1 Basic information... 1 - How to log

More information

Beginning ASP.NET. 4.5 in C# Matthew MacDonald

Beginning ASP.NET. 4.5 in C# Matthew MacDonald Beginning ASP.NET 4.5 in C# Matthew MacDonald Contents About the Author About the Technical Reviewers Acknowledgments Introduction xxvii xxix xxxi xxxiii UPart 1: Introducing.NET. 1 & Chapter 1: The Big

More information

Record Zoom Session. Launch Zoom. Set Up Your Presentation

Record Zoom Session. Launch Zoom. Set Up Your Presentation Record Zoom Session Launch Zoom 1. Log into Inside SOU. 2. Scroll down the Online Services section and select Zoom (Web Conferencing). 3. Once Zoom opens, click on HOST A MEETING in the upper right corner.

More information

COMPUTER FOR BEGINNERS

COMPUTER FOR BEGINNERS COMPUTER FOR BEGINNERS INTRODUCTION Class Objective: This class will familiarize you with using computers. By the end of the session you will be familiar with: Starting programs Quitting programs Saving

More information

Contents. Common Site Operations. Home actions. Using SharePoint

Contents. Common Site Operations. Home actions. Using SharePoint This is a companion document to About Share-Point. That document describes the features of a SharePoint website in as much detail as possible with an emphasis on the relationships between features. This

More information

Prosphero Intranet Sample Websphere Portal / Lotus Web Content Management 6.1.5

Prosphero Intranet Sample Websphere Portal / Lotus Web Content Management 6.1.5 www.ibm.com.au Prosphero Intranet Sample Websphere Portal / Lotus Web Content Management 6.1.5 User Guide 7th October 2010 Authors: Mark Hampton & Melissa Howarth Introduction This document is a user guide

More information

Tivoli Common Reporting V2.x. Reporting with Tivoli Data Warehouse

Tivoli Common Reporting V2.x. Reporting with Tivoli Data Warehouse Tivoli Common Reporting V2.x Reporting with Tivoli Data Warehouse Preethi C Mohan IBM India Ltd. India Software Labs, Bangalore +91 80 40255077 preethi.mohan@in.ibm.com Copyright IBM Corporation 2012 This

More information

SharePoint General Instructions

SharePoint General Instructions SharePoint General Instructions Table of Content What is GC Drive?... 2 Access GC Drive... 2 Navigate GC Drive... 2 View and Edit My Profile... 3 OneDrive for Business... 3 What is OneDrive for Business...

More information

Siteforce Pilot: Best Practices

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

More information

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

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

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

More information

DATASTREAM CHART STUDIO GETTING STARTED

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

More information

Center for Academic Excellence engaging faculty inspiring learning. WordPress Quick-Reference Manual

Center for Academic Excellence engaging faculty inspiring learning. WordPress Quick-Reference Manual Center for Academic Excellence engaging faculty inspiring learning WordPress Quick-Reference Manual Contents Signing up for a WordPress account... 2 Adding a new blog... 2 Changing the theme of your blog...

More information

Free Download Dev. Virto Workflow Activities Kit for SP2010 computer software free download ]

Free Download Dev. Virto Workflow Activities Kit for SP2010 computer software free download ] Free Download Dev. Virto Workflow Activities Kit for SP2010 computer software free download ] Description: Although customized working processes are included in Microsoft Office SharePoint 2007, 2010 and

More information

Dashboard / Output Guide

Dashboard / Output Guide Interstage Business Process Manager Analytics V11.0 Dashboard / Output Guide Windows/Solaris/Linux J2U3-0053-01(00) December 2009 About this Manual This document describes how to use the Dashboard to display

More information

Embarcadero PowerSQL 1.1 Evaluation Guide. Published: July 14, 2008

Embarcadero PowerSQL 1.1 Evaluation Guide. Published: July 14, 2008 Embarcadero PowerSQL 1.1 Evaluation Guide Published: July 14, 2008 Contents INTRODUCTION TO POWERSQL... 3 Product Benefits... 3 Product Benefits... 3 Product Benefits... 3 ABOUT THIS EVALUATION GUIDE...

More information

CMS Shado 9. Quick Start Guide

CMS Shado 9. Quick Start Guide CMS Shado 9 Quick Start Guide 1 Logging In 3 Shado Central Interface 4 Sections, Pages and Containers 7 Sections 7 Pages 7 Containers 7 The Site Tree 8 Edit Content on a Page 9 Editing Container Content

More information

Visual Dialogue User Guide. Version 6.0

Visual Dialogue User Guide. Version 6.0 Visual Dialogue User Guide Version 6.0 2013 Pitney Bowes Software Inc. All rights reserved. This document may contain confidential and proprietary information belonging to Pitney Bowes Inc. and/or its

More information

Lionbridge Connector for Sitecore. User Guide

Lionbridge Connector for Sitecore. User Guide Lionbridge Connector for Sitecore User Guide Version 4.0.5 November 2, 2018 Copyright Copyright 2018 Lionbridge Technologies, Inc. All rights reserved. Lionbridge and the Lionbridge logotype are registered

More information

eschoolplus+ Cognos Query Studio Training Guide Version 2.4

eschoolplus+ Cognos Query Studio Training Guide Version 2.4 + Training Guide Version 2.4 May 2015 Arkansas Public School Computer Network This page was intentionally left blank Page 2 of 68 Table of Contents... 5 Accessing... 5 Working in Query Studio... 8 Query

More information

GFI WebMonitor 2009 ReportPack. Manual. By GFI Software Ltd.

GFI WebMonitor 2009 ReportPack. Manual. By GFI Software Ltd. GFI WebMonitor 2009 ReportPack Manual By GFI Software Ltd. http://www.gfi.com E-mail: info@gfi.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10 Land Information Access Association Community Center Software Community Center Editor Manual May 10, 2007 - DRAFT This document describes a series of procedures that you will typically use as an Editor

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

ArtfulBits Calendar Web Part

ArtfulBits Calendar Web Part ArtfulBits Calendar Web Part for Microsoft SharePoint 2010 User Guide Overview... 1 Feature List... 3 Why ArtfulBits Calendar Web Part?... 3 How to Use... 4 How to create new List View with ArtfulBits

More information

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

More information

Vizit Essential for SharePoint 2013 Version 6.x User Manual

Vizit Essential for SharePoint 2013 Version 6.x User Manual Vizit Essential for SharePoint 2013 Version 6.x User Manual 1 Vizit Essential... 3 Deployment Options... 3 SharePoint 2013 Document Libraries... 3 SharePoint 2013 Search Results... 4 Vizit Essential Pop-Up

More information

First Walkthrough: Fundamentals of Camtasia Studio

First Walkthrough: Fundamentals of Camtasia Studio First Walkthrough: Fundamentals of Camtasia Studio First Walkthrough: Fundamentals of Camtasia Studio 2 Table of Contents Recording with Camtasia Studio.............. 3-4 Editing with Camtasia Studio.................

More information

Result Point v3 User Manual, Revision Accelerated Technology Laboratories, Inc. All rights reserved.

Result Point v3 User Manual, Revision Accelerated Technology Laboratories, Inc. All rights reserved. User Manual Result Point v3 User Manual, Revision 2 Result Point User Manual Table of Contents WELCOME...1 LOGGING IN...1 RETRIEVING YOUR PASSWORD... 1 CHANGING YOUR PASSWORD... 1 CLIENT INTERFACE...2

More information

SelectSurvey.NET Developers Manual

SelectSurvey.NET Developers Manual Developers Manual (Last updated: 5/6/2016) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 Before Starting - Is your software up to date?...

More information

Joomla! Frontend Editing

Joomla! Frontend Editing Joomla! Frontend Editing Instructor for this Workshop Web Development School of Arts and Sciences TABLE OF CONTENTS Welcome... 3 What is Joomla?... 3 Joomla Overview Login... 4 How is Joomla! Organized?...

More information

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

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

More information

User Manual. ARK for SharePoint-2007

User Manual. ARK for SharePoint-2007 User Manual ARK for SharePoint-2007 Table of Contents 1 About ARKSP (Admin Report Kit for SharePoint) 1 1.1 About ARKSP 1 1.2 Who can use ARKSP? 1 1.3 System Requirements 2 1.4 How to activate the software?

More information

127 Church Street, New Haven, CT O: (203) E: GlobalSearch ECM User Guide

127 Church Street, New Haven, CT O: (203) E:   GlobalSearch ECM User Guide 127 Church Street, New Haven, CT 06510 O: (203) 789-0889 E: sales@square-9.com www.square-9.com GlobalSearch Table of Contents GlobalSearch ECM... 3 GlobalSearch Security... 3 GlobalSearch Licensing Model...

More information

Release Notes (Build )

Release Notes (Build ) Release Notes (Build 6.0.4660) New to this build (6.0.4660) New in build 6.0.4490 New in build 6.0.4434 OneWeb CMS 6 features Additional enhancements Changes Fixed Known Issues New to this build (6.0.4660)

More information

How to Export a Report in Cognos Analytics

How to Export a Report in Cognos Analytics IBM Cognos Analytics How to Export a Report in Cognos Analytics Reports viewed in IBM Cognos Analytics can be exported in many formats including Excel. Some of the steps for exporting are different depending

More information

Dell One Identity Manager Administration Guide for Connecting to SharePoint

Dell One Identity Manager Administration Guide for Connecting to SharePoint Dell One Identity Manager 7.1.3 Administration Guide for Connecting to SharePoint 2016 Dell Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual property

More information

HL7Spy 1.1 Getting Started

HL7Spy 1.1 Getting Started Inner Harbour Software HL7Spy 1.1 Getting Started Nov 14, 2009 DRAFT Main Areas of HL7Spy's User Interface The figure below shows the main areas of the HL7Spy user interface. The two main regions of the

More information

User Guide. Data Preparation R-1.0

User Guide. Data Preparation R-1.0 User Guide Data Preparation R-1.0 Contents 1. About this Guide... 4 1.1. Document History... 4 1.2. Overview... 4 1.3. Target Audience... 4 2. Introduction... 4 2.1. Introducing the Big Data BizViz Data

More information

SAS Web Report Studio 3.1

SAS Web Report Studio 3.1 SAS Web Report Studio 3.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Web Report Studio 3.1: User s Guide. Cary, NC: SAS

More information

User manual. Release Notes DYNAMICWEB 7.1. Internal version number: Version: English

User manual. Release Notes DYNAMICWEB 7.1. Internal version number: Version: English User manual Release Notes DYNAMICWEB 7.1 Internal version number: 19.1.0.0 Version: 1.0 2010.05.17 English LEGAL INFORMATION Copyright 2010 Dynamicweb Software A/S (Ltd). All rights reserved. Alteration

More information

Index A Access data formats, 215 exporting data from, to SharePoint, forms and reports changing table used by form, 213 creating, cont

Index A Access data formats, 215 exporting data from, to SharePoint, forms and reports changing table used by form, 213 creating, cont Index A Access data formats, 215 exporting data from, to SharePoint, 215 217 forms and reports changing table used by form, 213 creating, 237 245 controlling availability of, 252 259 data connection to,

More information

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved.

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved. Master web design skills with Microsoft FrontPage 98. This step-by-step guide uses over 40 full color close-up screen shots to clearly explain the fast and easy way to design a web site. Use edteck s QuickGuide

More information

Content Management and Product Catalogue Using epages V6.16.3

Content Management and Product Catalogue Using epages V6.16.3 Content Management and Product Catalogue Using epages V6.16.3 ecorner Pty Ltd Australia Free Call: 1800 033 845 New Zealand: 0800 501 017 International: +61 2 9494 0200 Email: info@ecorner.com.au The information

More information

SAP BW 3.5 Enhanced Reporting Capabilities SAP AG

SAP BW 3.5 Enhanced Reporting Capabilities SAP AG SAP BW 3.5 Enhanced Reporting Capabilities SAP AG Learning Objectives As a result of this lecture, you will: Be familiar with Business Explorer (BEx) suite 3.5 Know the available new features Understand

More information

User Guide. Data Preparation R-1.1

User Guide. Data Preparation R-1.1 User Guide Data Preparation R-1.1 Contents 1. About this Guide... 4 1.1. Document History... 4 1.2. Overview... 4 1.3. Target Audience... 4 2. Introduction... 4 2.1. Introducing the Big Data BizViz Data

More information

ZP NEWS ZONEPRO CUSTOMER SUPPORT NEWSLETTER. August 2010 Volume 14, Number 2

ZP NEWS ZONEPRO CUSTOMER SUPPORT NEWSLETTER. August 2010 Volume 14, Number 2 ZP NEWS ZONEPRO CUSTOMER SUPPORT NEWSLETTER August 2010 Volume 14, Number 2 HOPPING ON THE GO-TO-MEETING BANDWAGON Maybe you've seen the commercials or read the ads. GoToMeeting.com is everywhere these

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

Beginner Workshop Activity Guide 2012 User Conference

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

More information

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training OBIEE Oracle Business Intelligence Enterprise Edition Rensselaer Business Intelligence Finance Author Training TABLE OF CONTENTS INTRODUCTION... 1 USER INTERFACE... 1 HOW TO LAUNCH OBIEE... 1 TERMINOLOGY...

More information

SharePoint: Fundamentals

SharePoint: Fundamentals SharePoint: Fundamentals This class will introduce you to SharePoint and cover components available to end users in a typical SharePoint site. To access SharePoint, you will need to log into Office 365.

More information

Digication eportfolio Student s Guide (Last update: 8/2017)

Digication eportfolio Student s Guide (Last update: 8/2017) Digication eportfolio Student s Guide (Last update: 8/2017) 2 Table of Contents Introduction... 1 Creating Your eportfolio... 3 Editing Your eportfolio... 4 Area 1: Top Menu Bar... 6 Area 2: The Main Tabs...

More information

Main Window. Overview. Do this Click the New Report link. Create a New Report.

Main Window. Overview. Do this Click the New Report link. Create a New Report. Overview Main Window Create a new report from a table or existing view Create a new report by defining a custom join Work with your custom reports Open a recently accessed custom report Work with reports

More information

Setting Up A WordPress Blog

Setting Up A WordPress Blog Setting Up A WordPress Blog Introduction WordPress can be installed alongside an existing website to be used solely as the 'blog' element of a website, or it can be set up as the foundation for an entire

More information

Using Jive and SharePoint Together

Using Jive and SharePoint Together Using Jive and SharePoint Together Contents 2 Contents Using Jive and SharePoint Together... 3 Viewing SharePoint Content in Jive...3 Using Recent Activity Widgets... 3 Using SharePoint Sites Widgets...

More information