Publitas e-docconverter API User Guide Publitas e-docconverter API User Guide

Size: px
Start display at page:

Download "Publitas e-docconverter API User Guide Publitas e-docconverter API User Guide"

Transcription

1 Publitas e-docconverter API User Guide Copyright Publitas Consulting Services B.V. Page 1 of 11

2 Version control Version Date Author description Dieudon Egstorf Final version Khalil Seyedmehdi Added additional supported doctypes Copyright Publitas Consulting Services B.V. Page 2 of 11

3 Index 1 Introduction The API Which method for which action? Response formats Ping back formats Creating and updating conversion jobs Create a new conversion job Input parameters Output Example code Update existing conversion job Input parameters Output Example code Get information about a conversion job Get conversion job details in JSON format Input parameters Output JSON Get conversion job details in XML format Input parameters Output XML Canceling a conversion job Input parameters Example code Downloading conversion job results Copyright Publitas Consulting Services B.V. Page 3 of 11

4 1 Introduction Publitas e-docconverter is a web service that converts document files to online accessible formats, like flash (swf) and/or static images (jpg). Besides converting the documents, images and text can be extracted from the documents as well. To convert a document with the Publitas e-docconverter a conversion job has to be created using the API. Each conversion job contains all information and tracks the status about the conversion of one single document. The Publitas e-docconverter provides a simple API that allows conversion jobs to be created, read, modified and cancelled. The following block diagram shows how the Publitas e-docconverter interacts with 3rd party applications. This diagram does not contain detailed interactions and processes; its purpose is only to give a general overview. 3 rd party application document conversion job request Publitas e-docconverter Return job request success or fail Ping back when document conversion process is finished success or fail Fetch back document job results package Copyright Publitas Consulting Services B.V. Page 4 of 11

5 2 The API The Publitas e-docconverter API is based on REST principles, so what you just have to do is an HTTP request to the right resource and the right describing method. To use the Publitas e-docconverter API, you must be authenticated via Basic Auth. API calls will be made by sending http requests to a URL that will have the following form: The <edoc-host-url> will be provided by Publitas, together with the credentials (username/password). 2.1 Which method for which action? GET: Get information about a conversion job POST : Create or modify a conversion job DELETE : Delete a conversion job 2.2 Response formats Supported formats for getting conversion job details are JSON and XML. The default response format is JSON. Add &format=xml to the http request URL to receive the response in XML format. Example how to get response in JSON: id> Example how to get response in XML: id>&format=xml 2.3 Ping back formats The Publitas e-docconverter posts back the status of the conversion job to URL s given as parameters creating the job. The ping back format is JSON and available in the POST. The JSON is build up as followed: {"id":<jobid>,"status":<status>} Example: {"id":"8abfb5021bb bb23dc3e70004","status":"finished"} Copyright Publitas Consulting Services B.V. Page 5 of 11

6 3 Creating and updating conversion jobs 3.1 Create a new conversion job To create a new conversion job execute a HTTP request to the following URL: converter/rest/jobs Input parameters Name required default allowed values units description docurl yes string (valid url) URL to the input document for conversion doctype yes doc, docx, type of the input document xls, xlsx, ppt, pptx, pps, ppsx, rtf, txt, pdf, html, htm, dot, mht, mhtml, wri, wpd, wps, xl, odc, csv, pptm, pot, ppa, xml pingstart no string (valid url) URL to ping to when conversion starts pingdone no string (valid url) URL to ping to when conversion successfully ends pingerror no string (valid url) to ping to when conversion ends with error poly2bitmap no auto auto, on, off Turn the image optimization on, off or let the converter decide with the option auto. outputswf no true true, false create SWF output? imgformat no jpg jpg, png format for normal and zoomed images thumbformat no jpg jpg, png format for thumbnails jpgquality no 90 integer between 0 and 100 % JPEG quality for normal and zoom images (thumbnails are always 100) imgnormal no true true, false create normal size images? maximgwidth no 460 integer >= 100 pixels max allowed normal image width maximgheight no 620 integer >= 100 pixels max allowed normal image height imgzoom no true true, false create zoom images? outputpdf no true true, false include PDF doc and page files in output package? outputtxt no true true, false create TXT files for pages? outputtxtposition no true true, false create TXT position files for pages? thumbnaillist no list of {width,height} objects with values >= Output pixels List of max allowed widths and heights for thumbnails. Format: {width:<integer>,height:<integer>}; {width:<integer>,height:<integer>}; When the conversion status is changes an http request will be executed to the appropriate ping page (pingstart, pingdone or pingerror) with a response header Location that contains the URL to the appropriate job: converter/rest/jobs/<job_id> When the conversion is successful, a ZIP file with the resulting conversion files can be downloaded. See chapter 6 for more information. Copyright Publitas Consulting Services B.V. Page 6 of 11

7 3.1.3 Example code <?php require_once "HTTP/Request.php"; // Create the request for conversion: $req =& new HTTP_Request(" $req->setbasicauth("username", "password"); $req->setmethod(http_request_method_post); $req->addheader('content-type', 'text/plain'); // Add all the needed parameters: $req->addpostdata("docurl", $req->addpostdata("doctype", $req->addpostdata("pingstart", $req->addpostdata("pingdone", $req->addpostdata("pingerror", " "pdf"); " " " // Conversion config options: $req->addpostdata("imgformat", "jpg"); $req->addpostdata("thumbformat", "jpg"); $req->addpostdata("jpgquality", "90"); $req->addpostdata("imgnormal", "true"); $req->addpostdata("maximgwidth", "460"); $req->addpostdata("maximgheight", "620"); $req->addpostdata("imgzoom", "true"); $req->addpostdata("outputpdf", "true"); $req->addpostdata("outputswf", "true"); $req->addpostdata("outputtxt", "true"); $req->addpostdata("outputtxtposition", "true"); $req->addpostdata("thumbnaillist", "{width:100,height:200};{width:150,height:300}"); // Send the request if (!PEAR::isError($req->sendRequest())) { //Location of the response contains job id echo $req->getresponseheader("location"); echo $req->getresponsebody(); // XML response }?> 3.2 Update existing conversion job To update an existing job execute a HTTP request to the following URL: converter/rest/jobs Input parameters The input parameters for updating a conversion job are the same as creating a new conversion job (see chapter 3.1.1). You only have to add the following parameter: Name required default allowed values units description conversionjobid no String if set, this parameter indicates the job to be updated; otherwise, a new job should be created Output The output of updating a conversion job is the same as the output of creating a new conversion job Example code The code for updating a conversion job is the same as creating a new conversion job. Add the following line to determine the conversion job that you would like to update: $req->addpostdata("conversionjobid", "8abfb5021bb bb233c16f0001"); Copyright Publitas Consulting Services B.V. Page 7 of 11

8 4 Get information about a conversion job 4.1 Get conversion job details in JSON format You can get the JSON job details by the following GET method: id>&format=json Input parameters Name required default allowed values description conversionjobid no string if set, only one job will be returned (the one with the given ID) instead of the list status no CREATED, DOWNLOADING, if set, only the jobs with the specified status will be returned PENDING, STARTED, FINISHED, FAILED, CANCELED username no string if set, only jobs belonging to the stated user will be returned filterusername no string if set, only jobs belonging to users with usernames that contain filterusername as a substring will be returned deleted no true true, false if false, cleaned-up jobs will not be returned; if true, all jobs will be returned (both cleaned up and not cleaned-up) format no json json, xml specifies the format of the response Output JSON {"jobsublist":[{"created":{"date":16,"day":2,"hours":21,"minutes":0,"month":8,"nanos":0,"seconds":56,"time ": ,"timezoneOffset":-120,"year":108},"deleted":false,"docType":"pdf","docUrl":" om":true,"jpgquality":90,"maximgheight":620,"maximgwidth":460,"outputpdf":true,"outputswf":true,"output Txt":true,"outputTxtPosition":true,"pingDone":"","pingError":"","pingStart":"","status":"CANCELED","thumbFor mat":"jpg","thumbnails":[],"username":"user"}],"totaljobsfiltered":1} Copyright Publitas Consulting Services B.V. Page 8 of 11

9 4.2 Get conversion job details in XML format You can get the XML job details by the following GET method: id>&format=xml Input parameters The input parameters for getting the conversion job details in XML format are the same as the JSON format parameters (see chapter 4.1.1). You only have to change the parameter below. Name required default allowed values description format no json json, xml specifies the format of the response Output XML <job> <jobsublist class="array"> <e class="object"> <created class="object"> <date type="number">16</date> <day type="number">2</day> <hours type="number">21</hours> <minutes type="number">0</minutes> <month type="number">8</month> <nanos type="number">0</nanos> <seconds type="number">56</seconds> <time type="number"> </time> <timezoneoffset type="number">-120</timezoneoffset> <year type="number">108</year> </created> <deleted type="boolean">false</deleted> <doctype type="string">pdf</doctype> <docurl type="string"> </docurl> <id type="string">8abfb59b1c6c88f8011c6c895e110001</id> <imgformat type="string">jpg</imgformat> <imgnormal type="boolean">true</imgnormal> <imgzoom type="boolean">true</imgzoom> <jpgquality type="number">90</jpgquality> <maximgheight type="number">620</maximgheight> <maximgwidth type="number">460</maximgwidth> <outputpdf type="boolean">true</outputpdf> <outputswf type="boolean">true</outputswf> <outputtxt type="boolean">true</outputtxt> <outputtxtposition type="boolean">true</outputtxtposition> <pingdone type="string"/> <pingerror type="string"/> <pingstart type="string"/> <status type="string">canceled</status> <thumbformat type="string">jpg</thumbformat> <thumbnails class="array"/> <username type="string">user</username> </e> </jobsublist> <totaljobsfiltered type="number">1</totaljobsfiltered> </job> Copyright Publitas Consulting Services B.V. Page 9 of 11

10 5 Canceling a conversion job To cancel a conversion job execute a HTTP request to the following URL: id> 5.1 Input parameters To cancel a conversion job it is required to set the HTTP request method. The request method has to be set to DELETE by setting the following line: $req->setmethod(http_request_method_delete); 5.2 Example code <?php require_once "HTTP/Request.php"; // Create the request for conversion: //Use location received from post job here: $req =& new HTTP_Request(" id>"); // Authenticate via your API username/password: $req->setbasicauth("username", "password"); // It's a POST request: $req->setmethod(http_request_method_delete); // Send the request if (!PEAR::isError($req->sendRequest())) { // XML response echo $req->getresponsebody(); }?> Copyright Publitas Consulting Services B.V. Page 10 of 11

11 6 Downloading conversion job results After the conversion job is finished a ZIP file with the resulting conversion files can be downloaded. This can be downloaded with the following URL: id> Copyright Publitas Consulting Services B.V. Page 11 of 11

Uploading a File in the Desire2Learn Content Area

Uploading a File in the Desire2Learn Content Area Uploading a File in the Desire2Learn Content Area Login to D2L and open one of your courses. Click the Content button in the course toolbar to access the Content area. Locate the Table of Contents on the

More information

Introduction to Content

Introduction to Content Content Introduction to Content... 2 Understanding the Organization of Content... 3 Course Overview... 3 Bookmarks... 3 Upcoming Events... 3 Table of Contents... 3 Create a New Module... 4 New Module...

More information

bbc Adobe LiveCycle Content Services Mobile System requirements APPLIES TO Server CONTENTS iphone License information

bbc Adobe LiveCycle Content Services Mobile System requirements APPLIES TO Server CONTENTS iphone License information Getting Started Guide Adobe LiveCycle Content Services Mobile APPLIES TO Adobe LiveCycle Content Services Mobile for iphone April 2010 Adobe LiveCycle Content Services Mobile enables you to use your Apple

More information

CollegiateLink Student Leader User Guide

CollegiateLink Student Leader User Guide CollegiateLink 2010 Last updated August 2010 0 Table of Contents Getting Started... 2 Managing Your Organization s Site... 3 Managing Your Organization s Interests... 5 Managing Your Organization s Roster...

More information

Antivirus and Content Shield Protect your SharePoint Farm Using the AvePoint Antivirus and Content Shield Solution

Antivirus and Content Shield Protect your SharePoint Farm Using the AvePoint Antivirus and Content Shield Solution Quick Start Guide Antivirus and Content Shield Protect your SharePoint Farm Using the AvePoint Antivirus and Content Shield Solution This document is intended for anyone wishing to familiarize themselves

More information

to PDF. For Outlook Export s & attachments to PDF. Bahrur Rahman AssistMyTeam

to PDF. For Outlook Export  s & attachments to PDF. Bahrur Rahman AssistMyTeam V9 Email to PDF For Outlook Export emails & attachments to PDF Bahrur Rahman AssistMyTeam Welcome to Email to PDF for Outlook- A fast, light-weight add-in for Microsoft Outlook that makes it easy and effortless

More information

Supported File Types

Supported File Types Supported File Types This document will give the user an overview of the types of files supported by the most current version of LEP. It will cover what files LEP can support, as well as files types converted

More information

HTM, HTML, MHT, MHTML Web document Brightspace Learning Environment strips the <title> tag and text within the tag from user created web documents

HTM, HTML, MHT, MHTML Web document Brightspace Learning Environment strips the <title> tag and text within the tag from user created web documents Dropbox basics What is Dropbox? Learners use the tool to upload and submit assignment submissions to assignment submission folders in Brightspace Learning Environment, eliminating the need to mail, fax,

More information

The content editor has two view modes: simple mode and advanced mode. Change the view in the upper-right corner of the content editor.

The content editor has two view modes: simple mode and advanced mode. Change the view in the upper-right corner of the content editor. Content Editor The content editor allows you to add and format text, insert equations and hyperlinks, tables, and attach different types of files to content. The editor appears throughout the system as

More information

Features & Functionalities

Features & Functionalities Features & Functionalities Release 2.1 www.capture-experts.com Import FEATURES OVERVIEW Processing TIF CSV EML Text Clean-up Email HTML ZIP TXT Merge Documents Convert to TIF PST RTF PPT XLS Text Recognition

More information

Updated 7/27/15. Cougar Link. Utilizing News, Rosters, Galleries and Documents for Your Organization

Updated 7/27/15. Cougar Link. Utilizing News, Rosters, Galleries and Documents for Your Organization Updated 7/27/15 Cougar Link Utilizing News, Rosters, Galleries and Documents for Your Organization Cougar Link: Utilizing News, Rosters, Galleries and Documents for Your Organization 1. Redesigned Cougar

More information

Workshare for iphone/ipad. Getting Started Guide

Workshare for iphone/ipad. Getting Started Guide Workshare for iphone/ipad Getting Started Guide R Love your job, not the office Stay productive on the move by taking your files with you on your iphone or ipad. Access files anywhere Review on the go

More information

INFORMZ USER GUIDE: The Asset Manager

INFORMZ USER GUIDE: The Asset Manager INFORMZ USER GUIDE: The Asset Manager Version 1.0 January 29, 2014 ABOUT THIS GUIDE This guide provides an overview of the Asset Manager used by Informz. This guide covers the Asset Manager s basic functionality

More information

Exhibitor Area User Guide

Exhibitor Area User Guide A Step by Step User Guide to Managing Your Exhibitor Profile Through Our Exhibitor Area Note: To create this standard user guide, images and screenshots have been used which may differ in appearance (colour)

More information

New Look for the My Goals Page

New Look for the My Goals Page New Look for the My Goals Page New Look for the Create Goals Page How to Create or Edit a Goal To create a goal, go to PERFORMANCE > GOALS. Then click the CREATE button. To edit a goal, go to PERFORMANCE

More information

CollegiateLink Student Leader User Guide

CollegiateLink Student Leader User Guide CollegiateLink 2011 Last updated February 2011 0 Table of Contents Getting Started... 2 Managing Your Organization s Site... 3 Managing Your Organization s Interests... 5 Managing Your Organization s Roster...

More information

PEERNET File Conversion Center

PEERNET File Conversion Center PEERNET File Conversion Center Automated Document Conversion Using File Conversion Center With Task Scheduler OVERVIEW The sample is divided into two sections: The following sample uses a batch file and

More information

Instructions for Using Events

Instructions for Using Events Instructions for Using Events Important Event Registration Information: Events are not auto-approved but must be approved by a site administrator. o Events are reviewed on a daily basis during the work

More information

OPSWAT Metadefender. Superior Malware Threat Prevention and Analysis

OPSWAT Metadefender. Superior Malware Threat Prevention and Analysis OPSWAT Metadefender Superior Malware Threat Prevention and Analysis OPSWAT Products Threat protection and security Threat prevention and analysis 30+ anti-malware engines 90+ data sanitization engines

More information

WORD TEXT REPLACER 1 PROGRAM HELP GILLMEISTER SOFTWARE.

WORD TEXT REPLACER 1 PROGRAM HELP GILLMEISTER SOFTWARE. WORD TEXT REPLACER 1 PROGRAM HELP GILLMEISTER SOFTWARE www.gillmeister-software.com 1 TABLE OF CONTENTS 1 Table of contents... 1 1. Start... 3 2 Main menu... 3 2.1 Menu entries of the group Menu... 3 2.1.1

More information

ScholarOne Manuscripts. Author File Upload Guide

ScholarOne Manuscripts. Author File Upload Guide ScholarOne Manuscripts Author File Upload Guide 7-August-2017 Clarivate Analytics ScholarOne Manuscripts Author File Upload Guide Page i Table of Contents INTRODUCTION... 1 SUPPORTED FILE TYPES... 1 HOW

More information

File Upload extension User Manual

File Upload extension User Manual extension User Manual Magento & Download extension allows admin to upload product attachments for users in order to provide additional information for products. Table of Content 1. Extension Installation

More information

Features & Functionalities

Features & Functionalities Features & Functionalities Release 3.0 www.capture-experts.com Import FEATURES Processing TIF CSV EML Text Clean-up Email HTML ZIP TXT Merge Documents Convert to TIF PST RTF PPT XLS Text Recognition Barcode

More information

POWERED BY 1WORLDSYNC. Manual OPV Order

POWERED BY 1WORLDSYNC. Manual OPV Order POWERED BY 1WORLDSYNC Manual OPV Order 1. Access and Login Log in to OPV Orders with shown below option. - http://order.opv.se - http://www.opv.se/order - http://www.mediabanken.se (Via The upload tab

More information

Xerox Mobile Print Portal 1.3 User Guide for BlackBerry

Xerox Mobile Print Portal 1.3 User Guide for BlackBerry Xerox Mobile Print Portal 1.3 User Guide for BlackBerry 2012 Xerox Corporation. All rights reserved. Xerox and Xerox and Design are trademarks or trademarks of Xerox Corporation in the US and/or other

More information

NBCS IT Fact Sheet. NBCS Policy: Social Networking sites, digital media and cyber bullying

NBCS IT Fact Sheet. NBCS Policy: Social Networking sites, digital media and cyber bullying NBCS Policy: Social Networking sites, digital media and cyber bullying It is a condition of enrolment or continued enrolment at NBCS that students adhere to the following boundaries: A Students must demonstrate

More information

OnDemand Discovery Quickstart Guide

OnDemand Discovery Quickstart Guide Here is a complete guide to uploading native files directly to OnDemand, using our new OnDemand Discovery Client. OnDemand Discovery Quickstart Guide OnDemand Technical Support P a g e 1 Section 1: Welcome

More information

How to apply: The online application process explained step by step

How to apply: The online application process explained step by step How to apply: The online application process explained step by step 8 January 2016 Saskia Eifert WMF Recruiting Center Dear applicants, These instructions are intended to make it easier for you to apply

More information

OPERATOR MANUAL > MOPS. mobile printing solution. Version 1.0. Stand Jul-16

OPERATOR MANUAL > MOPS. mobile printing solution. Version 1.0. Stand Jul-16 OPERATOR MANUAL > MOPS mobile printing solution Stand Jul-16 page 2 MOPS mobile printing solution OPERATOR MANUAL This documentation refers to the development status of Jul-16. The texts and images were

More information

COMMERCIAL CARD SERVICES CARDHOLDER GUIDE. Adding Receipt Images

COMMERCIAL CARD SERVICES CARDHOLDER GUIDE. Adding Receipt Images COMMERCIAL CARD SERVICES CARDHOLDER GUIDE Adding Receipt Images Within the IntelliLink website, employees have the ability to attach receipt images to transactions. There are two options available to get

More information

QuestBase. Create, manage, analyze assessments, tests, quizzes, exams and surveys. Getting Started

QuestBase. Create, manage, analyze assessments, tests, quizzes, exams and surveys. Getting Started QuestBase Create, manage, analyze assessments, tests, quizzes, exams and surveys Getting Started Are you in a hurry? Then just read the highlighted chapters, all the information you need in a nutshell!

More information

User Guide Storebox Mobile App. User Guide. Swisscom AG. Swisscom AG 1/51

User Guide Storebox Mobile App. User Guide. Swisscom AG. Swisscom AG 1/51 User Guide Swisscom AG Swisscom AG 1/51 Table of Content 1 Getting Started...3 1.1 Requirements... 3 1.2 Supported Languages... 3 1.3 Downloading the Storebox App... 3 1.4 Signing in... 4 1.5 Resetting

More information

Coastal Connections. Student Leader User Guide

Coastal Connections. Student Leader User Guide Coastal Connections Last updated October 2011 0 Table of Contents Getting Started... 2 Managing Your Organization s Site... 3 Managing Your Organization s Interests... 5 Managing Your Organization s Roster...

More information

How to submit an assignment to Turnitin full student guide

How to submit an assignment to Turnitin full student guide o elearning Unit Student Guides How to submit an assignment to Turnitin full student guide Overview... 1 What files and file sizes can I submit?... 1 Submit to a Turnitin assignment in VITAL... 2 Submission

More information

FaxCore API Reference A web based API for sending, receiving and managing faxes through the FaxCore network.

FaxCore API Reference A web based API for sending, receiving and managing faxes through the FaxCore network. FaxCore API Reference A web based API for sending, receiving and managing faxes through the FaxCore network. P a g e 2 Contents API Overview... 3 Authentication... 3 SendFax... 4 FaxStatus... 5 GetFaxList...

More information

Scope This activity begins when a new agent or agency requests new appointment. This activity ends when the paperwork has been submitted.

Scope This activity begins when a new agent or agency requests new appointment. This activity ends when the paperwork has been submitted. Work Instructions On Line Agent Appointment Process Purpose This document provides instructions for new agents, agencies and sub-agents to complete the on line agent appointment. Scope This activity begins

More information

Product Specifications HD-A6. Full Color Dual-Mode box V

Product Specifications HD-A6. Full Color Dual-Mode box V Product Specifications Full Color Dual-Mode box HD-A6 V1.0 20190215 http://www.huidu.cn/ 1 System Overview HD-A6, it is an LED control system for remote control and offline HD video playback for small-pitch

More information

DOWNLOAD OR READ : FREE SERVICE MANUAL 2006 GMC SIERRA PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : FREE SERVICE MANUAL 2006 GMC SIERRA PDF EBOOK EPUB MOBI DOWNLOAD OR READ : FREE SERVICE MANUAL 2006 GMC SIERRA PDF EBOOK EPUB MOBI Page 1 Page 2 free service manual 2006 gmc sierra free service pdf free service manual 2006 gmc sierra Edit PDF files with PDFescape

More information

Document Version: 1.0. Purpose: This document provides an overview of IBM Clinical Development v released by the IBM Corporation.

Document Version: 1.0. Purpose: This document provides an overview of IBM Clinical Development v released by the IBM Corporation. Release Notes IBM Clinical Development Release Date: 17 August 2018 Document Version: 10 OVERVIEW Purpose: This document provides an overview of IBM Clinical Development released by the IBM Corporation

More information

ViMP 2.1. Administration Guide. Author: ViMP GmbH

ViMP 2.1. Administration Guide. Author: ViMP GmbH ViMP 2.1 Administration Guide Author: ViMP GmbH Chapter: Table of Contents Table of Contents ViMP Administration Panel... 5 Enter the Administration panel... 5 Filter Options... 6 Modules... 7 Media...

More information

AVS4YOU Programs Help

AVS4YOU Programs Help AVS4YOU Help - AVS Document Converter AVS4YOU Programs Help AVS Document Converter www.avs4you.com Online Media Technologies, Ltd., UK. 2004-2012 All rights reserved AVS4YOU Programs Help Page 2 of 39

More information

Learn Html Pdf Convert To Word Full Version For Windows 7

Learn Html Pdf Convert To Word Full Version For Windows 7 Learn Html Pdf Convert To Word Full Version For Windows 7 The Download.com Installer securely delivers software from Download.com's Learn more Editors' note: This is a review of the trial version of PDF

More information

DOWNLOAD OR READ : CONVERTING WORD DOCUMENT TO FORM PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : CONVERTING WORD DOCUMENT TO FORM PDF EBOOK EPUB MOBI DOWNLOAD OR READ : CONVERTING WORD DOCUMENT TO FORM PDF EBOOK EPUB MOBI Page 1 Page 2 converting word document to form converting word document to pdf converting word document to form How Do I improve

More information

Document Viewer 2.0 User Guide

Document Viewer 2.0 User Guide Document Viewer 2.0 User Guide Document Viewer 2.0 User Guide Page 1 Copyright Copyright 2008-2017 BoostSolutions Co., Ltd. All rights reserved. All materials contained in this publication are protected

More information

Drupal 7 Template. Page 1 of 27. Site Title. Navigation Tabs. Homepage Slide. Social Media. News article. Events. Links. Contact Information

Drupal 7 Template. Page 1 of 27. Site Title. Navigation Tabs. Homepage Slide. Social Media. News article. Events. Links. Contact Information Site Title Navigation Tabs Homepage Slide News article Social Media Events Contact Information Links Page 1 of 27 Table of Contents USER ACCOUNT... 3 Edit Profile... 3 CONTENT... 5 ADD CONTENT... 5 BASIC

More information

The purpose of this document is to explain how to use the Teacher/Principal Evaluation system as a person being evaluated (an evaluatee).

The purpose of this document is to explain how to use the Teacher/Principal Evaluation system as a person being evaluated (an evaluatee). Introduction The purpose of this document is to explain how to use the Teacher/Principal Evaluation system as a person being evaluated (an evaluatee). Getting Started Before you can use the system you

More information

SharePoint Quick Previewer

SharePoint Quick Previewer KWizCom Corporation SharePoint Quick Previewer Admin Guide Copyright 2005-2013 KWizCom Corporation. All rights reserved. Company Headquarters 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada

More information

Using the Sp13 Text Editor elearning Blackboard Learn 9.1 for Students

Using the Sp13 Text Editor elearning Blackboard Learn 9.1 for Students The text editor is quite robust, and this guide is meant to show you the features of it. Two Views The Text Editor has two views, simple and advanced mode. Simple: Minimal set of the most-used formatting

More information

econsult: Requesting a Consult

econsult: Requesting a Consult A consult request is a request related to a patient, when the requesting provider could benefit from consulting with a specialist to enhance the care pathway. The requesting provider selects whether to

More information

SharePoint Attachment Extractor and Metadata Manager for Microsoft Dynamics CRM. Release Notes

SharePoint Attachment Extractor and Metadata Manager for Microsoft Dynamics CRM. Release Notes SharePoint Attachment Extractor and Metadata Manager for Microsoft Dynamics CRM Release Notes Release Date: October 2016 SharePoint Attachment Extractor and Metadata Manager for Microsoft Dynamics CRM

More information

Professional Development

Professional Development Contents Profile Creation... 2 Forgot My Password?... 4 Forgot My Email?... 5 Dashboards... 6 Transcript & Content... 7 Workshop Search... 7 Registration... 8 Workshop Creation... 8 Global Reports... 12

More information

PROSPECT. FAQs for Applicants

PROSPECT. FAQs for Applicants PROSPECT FAQs for Applicants 1 Table of Contents TABLE OF CONTENTS... 2 1 CONNECTION TO PROSPECT... 3 1.1 HOW TO CONNECT TO THE PROSPECT SYSTEM?... 3 1.2 I ALREADY HAVE AN EU LOGIN ACCOUNT THAT I USE FOR

More information

Colligo Briefcase 3.4

Colligo Briefcase 3.4 3.4 Enterprise, Pro, and Lite Editions User Guide ipad Table of Contents Introduction... 4 Key Features... 4 Benefits... 4 Devices Supported... 5 SharePoint Platforms Supported... 5 Colligo Briefcase Lite...

More information

Colligo Briefcase 3.4

Colligo Briefcase 3.4 3.4 Enterprise, Pro, and Lite Editions User Guide iphone and ipod Touch Table of Contents Introduction... 4 Key Features... 4 Benefits... 4 Devices Supported... 5 SharePoint Platforms Supported... 5 Colligo

More information

The Workers Advisers Office (WAO)

The Workers Advisers Office (WAO) The Workers Advisers Office (WAO) This factsheet has been prepared for general information purposes. It is not a legal document. Please refer to the Workers Compensation Act and the Rehabilitation Services

More information

BlackBerry Workspaces Server Administration Guide

BlackBerry Workspaces Server Administration Guide BlackBerry Workspaces Server Administration Guide 6.0 2018-10-06Z 2 Contents Introducing BlackBerry Workspaces administration console... 7 Configuring and managing BlackBerry Workspaces... 7 BlackBerry

More information

Colligo Briefcase 3.0

Colligo Briefcase 3.0 3.0 Enterprise, Pro, and Lite Editions User Guide ipad TABLE OF CONTENTS Introduction... 4 Key Features... 4 Benefits... 4 Devices Supported... 5 SharePoint Platforms Supported... 5 Colligo Briefcase Lite...

More information

Enolsoft PDF Creator Tutorial

Enolsoft PDF Creator Tutorial Enolsoft PDF Creator Tutorial 1 Table of Contents Table of Contents... 2 I. About Enolsoft PDF Creator... 3 II. Product Activation... 4 III. Application Operating... 5 i. Add & Clear PDF... 5 ii. Preview

More information

Templated-docs Documentation

Templated-docs Documentation Templated-docs Documentation Release 0.3.1 Alex Morozov October 17, 2016 Contents 1 Features 3 2 Installation 5 3 Usage 7 4 More information 9 4.1 Working with document templates....................................

More information

Oracle Cloud E

Oracle Cloud E Oracle Cloud Using Oracle Big Data Preparation Cloud Service Release 16.4.5 E63106-15 December 2016 This guide describes how to repair, enrich, blend, and publish large data files in Oracle Big Data Preparation

More information

Quick Start Guide. Managing the Service. Converting Files and Folders

Quick Start Guide. Managing the Service. Converting Files and Folders PEERNET has been successfully installed as a Windows service on your computer. The mini-tutorials below are designed to get you converting files as soon as possible. Converting Files and Folders Convert

More information

2. Installation The name and accessibility of menus can differ by mobile OS. The steps to follow can differ as well.

2. Installation The name and accessibility of menus can differ by mobile OS. The steps to follow can differ as well. Manual "Mobile Printing via Xerox App" 21-8-15 1. Conditions - The app needs ios 7.0 or newer. - The app needs Android version 4 or higher. - At the moment there is no App for Windows Phone/MS Surface

More information

Operator Manual. Version 2.813

Operator Manual. Version 2.813 Operator Manual Version 2.813 June, 2015 Content Basic definitions and abbreviations...4 Get started...5 Change of displaying units layout...7 Scale change...7 Content...8 Content display...8 Software...8

More information

Employee Services Portal Administrator Guide

Employee Services Portal Administrator Guide Employee Services Portal Administrator Guide Contents Edit employee access & password... 3 Using the portal to provide electronic W-2s... 5 Setup the portal... 5 Reset the portal for a new tax year...

More information

VALO Cloud 2.0 User Guide

VALO Cloud 2.0 User Guide VALO Cloud 2.0 User Guide Table of Contents 1. Activation of an account in VALO Cloud 3 2. User's Web-cabinet on the server 4 a. Controlling elements b. The user's menu - personal account 7 c. Working

More information

Flip Writer Integrate elements to create Page-flipping ebooks. User Documentation. About Flip Writer

Flip Writer Integrate elements to create Page-flipping ebooks. User Documentation. About Flip Writer Note: This product is distributed on a try-before-you-buy basis. All features described in this documentation are enabled. The unregistered version will be added a demo watermark. About Flip Writer Nowadays,

More information

Agylia Mobile Learning App Feature Summary

Agylia Mobile Learning App Feature Summary Agylia Mobile Learning App Feature Summary Version 12 Agylia Mobile Learning App Available Not Yet Available Optional General Content platforms supported Native device user experience Native Apps Offline

More information

DOWNLOAD OR READ : TO BE FREE PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : TO BE FREE PDF EBOOK EPUB MOBI DOWNLOAD OR READ : TO BE FREE PDF EBOOK EPUB MOBI Page 1 Page 2 to be free to be free pdf to be free Download over 80 million free science papers, patents, theses and posters FreeFullPDF - PDF search engine

More information

Genesis Webinar-To-Go Quick Reference Guide

Genesis Webinar-To-Go Quick Reference Guide Genesis Webinar-To-Go Quick Reference Guide This document is intended to provide you with helpful information and basic usage tips for Genesis Webinar-To-Go. 09-23-2010 Page 1 of 1 WEBINAR_A2 Logging in

More information

Release Notes Documentum Release 2.2.4

Release Notes Documentum Release 2.2.4 Release Notes Documentum Release 2.2.4 Released August 10, 2012 Copyright Pearson Education, Inc. and/or one or more of its direct or indirect affiliates. All rights reserved DCTM Release Notes 2.2.4 2

More information

Content 8.3 to 8.4.x. User Guide Fifth edition, February 22, by Desire2Learn Incorporated. All rights reserved

Content 8.3 to 8.4.x. User Guide Fifth edition, February 22, by Desire2Learn Incorporated. All rights reserved Content 8.3 to 8.4.x User Guide Fifth edition, February 22, 2010 2009 by Desire2Learn Incorporated. All rights reserved 2009 by Desire2Learn Incorporated. All rights reserved. 305 King Street West, Suite

More information

Student Leader and Advisor User Guide shockersync.wichita.edu Updated November 2018

Student Leader and Advisor User Guide shockersync.wichita.edu Updated November 2018 Student Leader and Advisor User Guide shockersync.wichita.edu Updated November 2018 For more specific questions, please contact student.orgs@wichita.edu or call us at 316.978.3022 Getting Started Each

More information

Cracked Character Count Tool pc software download free full ]

Cracked Character Count Tool pc software download free full ] Cracked Character Count Tool pc software download free full ] Description: Character Count Tool is a fast and reliable tool adept at counting Characters, words, lines and pages in Word, excel, PowerPoint,

More information

[Type text] [Type text] [Type text] Erasmus+ Project Results Platform Guide for Beneficiaries

[Type text] [Type text] [Type text] Erasmus+ Project Results Platform Guide for Beneficiaries [Type text] [Type text] [Type text] Erasmus+ Project Results Platform 18/10/2017 1 Guidelines for Beneficiaries Current version E+PRP v. 3.7.2 released on 5 October 2017 This document is aimed at providing

More information

Support Request System

Support Request System Support Request System User Guide Revised 12/13/17 #000145 1 Table of Contents Introduction.................................................................. 3 How to Access the Support Request System........................................

More information

CONVERT EXCEL DOCUMENT INTO

CONVERT EXCEL DOCUMENT INTO page 1 / 6 page 2 / 6 convert excel document into pdf Plan features No download or software install required Convert almost anything to PDF Combine multiple files into a single PDF Convert PDF to Word

More information

NAS 256 DataSync for Microsoft OneDrive. Backup data from Microsoft OneDrive to your NAS

NAS 256 DataSync for Microsoft OneDrive. Backup data from Microsoft OneDrive to your NAS NAS 256 DataSync for Microsoft OneDrive Backup data from Microsoft OneDrive to your NAS A S U S T O R C O L L E G E COURSE OBJECTIVES Upon completion of this course you should be able to: 1. Backup data

More information

Cisdem PDF Converter OCR Tutorial

Cisdem PDF Converter OCR Tutorial Cisdem PDF Converter OCR Tutorial 1 Table of Contents Table of Contents... 2 I. About Cisdem PDF Converter OCR... 3 II. Activating this Application... 4 III. Application Operating... 5 I. Convert PDF...

More information

Folder 2 Folder Conversion Server Version 2.42 User s Guide

Folder 2 Folder Conversion Server Version 2.42 User s Guide Folder 2 Folder Conversion Server Version 2.42 User s Guide Metasoft Systems, Inc. Suite 203, 1080 Howe Street Vancouver, BC V6Z 2T1 Phone (604) 683-6711 Fax (604) 683-6704 www.meta-soft.com Table of Contents

More information

Administration Guide. BlackBerry Workspaces. Version 5.6

Administration Guide. BlackBerry Workspaces. Version 5.6 Administration Guide BlackBerry Workspaces Version 5.6 Published: 2017-06-21 SWD-20170621110833084 Contents Introducing the BlackBerry Workspaces administration console... 8 Configuring and managing BlackBerry

More information

WHAT'S NEW UVC MOBILE APP VERSION 2.0

WHAT'S NEW UVC MOBILE APP VERSION 2.0 WHAT'S NEW UVC MOBILE APP VERSION 2.0 Two major modules have been added to the new version of the UVC mobile APP. When you click on the menu button you will see: - the Calendar option and - the FileStore

More information

Cloud On-Demand Print (CODP) Operational Procedure

Cloud On-Demand Print (CODP) Operational Procedure Cloud On-Demand Print (CODP) Operational Procedure 7 th April, 08 Third Edition Ritsumeilkan CO-OP(APU CO-OP) A new printing option will be available in April 08. You won`t have to use PCs in the MMR or

More information

DOWNLOAD OR READ : TEXT AND IMAGE PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : TEXT AND IMAGE PDF EBOOK EPUB MOBI DOWNLOAD OR READ : TEXT AND IMAGE PDF EBOOK EPUB MOBI Page 1 Page 2 text and image text and image pdf text and image Convert PDF to Text Desktop Software for windows allows you to convert all your PDF

More information

And program Office to FlipBook Pro is powerful enough to convert your DOCs to such kind of ebooks with ease.

And program Office to FlipBook Pro is powerful enough to convert your DOCs to such kind of ebooks with ease. Note: This product is distributed on a try-before-you-buy basis. All features described in this documentation are enabled. The unregistered version will be added a demo watermark. About Office to FlipBook

More information

PEERNET File Conversion Center 6.0

PEERNET File Conversion Center 6.0 Thank you for choosing PEERNET File Conversion Center. The PEERNET File Conversion Center integrates seamlessly with your desktop and Windows Explorer to allow you to quickly and easily convert office

More information

The Normalized Compression Distance as a File Fragment Classifier

The Normalized Compression Distance as a File Fragment Classifier DIGITAL FORENSIC RESEARCH CONFERENCE The Normalized Compression Distance as a File Fragment Classifier By Stefan Axelsson Presented At The Digital Forensic Research Conference DFRWS 2010 USA Portland,

More information

PDF Converter 1.0 User Guide

PDF Converter 1.0 User Guide PDF Converter 1.0 User Guide Copyright Copyright 2008-2013 BoostSolutions Co., Ltd. All rights reserved. All materials contained in this publication are protected by Copyright and no part of this publication

More information

PDF Converter 1.0 User Guide

PDF Converter 1.0 User Guide PDF Converter 1.0 User Guide Copyright Copyright 2008-2017 BoostSolutions Co., Ltd. All rights reserved. All materials contained in this publication are protected by Copyright and no part of this publication

More information

Briefcase ios 3.5. Enterprise, Pro, and Lite Editions. User Guide ipad

Briefcase ios 3.5. Enterprise, Pro, and Lite Editions. User Guide ipad Briefcase ios 3.5 Enterprise, Pro, and Lite Editions User Guide ipad Table of Contents Introduction... 4 Key Features... 4 Benefits... 4 Devices Supported... 5 SharePoint Platforms Supported... 5 Colligo

More information

File Routing & Collaboration. I.T. & Client Configuration Guide. Version 7.0

File Routing & Collaboration. I.T. & Client Configuration Guide. Version 7.0 File Routing & Collaboration I.T. & Client Configuration Guide Version 7.0 DIGITAL WORKSPACE 7.0 V1 Date Modified 08/19/2016 Revision History Date Version Description Author August 19, 2016 1 Original

More information

How to Join a Phone Conference

How to Join a Phone Conference Participant Guide 1 How to Join a Phone Conference 1 2 Use your phone or mobile device to call the number provided in your email invitation. Enter the provided Access Code. Joining an online meeting? Go

More information

WHITE PAPER WEB CACHE DECEPTION ATTACK. Omer Gil. July

WHITE PAPER WEB CACHE DECEPTION ATTACK. Omer Gil. July WHITE PAPER WEB CACHE DECEPTION ATTACK Omer Gil July 2017 https://omergil.blogspot.com @omer_gil Table of Contents ABSTRACT... 1 INTRODUCTION... 1 About caching... 1 Servers' reactions... 2 WEB CACHE DECEPTION

More information

Word For Dummies 2003 To 2007 Converter Software

Word For Dummies 2003 To 2007 Converter Software Word For Dummies 2003 To 2007 Converter Software novapdf is a PDF converter that allows creating PDF files from any On this page: Convert Microsoft Office Word 2007 files to PDF Video Tutorial Word 2007

More information

BOCC NUT Content Guide

BOCC NUT Content Guide NUT Associations and Divisions Website Content Guide Contents General guidelines 1 Guidelines for users WITHOUT an existing site 2 Guidelines for users WITH an existing site 3 Assets 3 Domain names 5 Contact

More information

How to Host an Online Meeting

How to Host an Online Meeting How to Host an Online Meeting 1 What You Need to Host an Online Meeting Instructions: What you need: FreeConference.com account (Online Meeting Room URL, Access Code, Moderator PIN) Internet Connection

More information

CREATING ANNOUNCEMENTS. A guide to submitting announcements in the UAFS Content Management System

CREATING ANNOUNCEMENTS. A guide to submitting announcements in the UAFS Content Management System CREATING ANNOUNCEMENTS A guide to submitting announcements in the UAFS Content Management System Fall 2017 GETTING STARTED 1 First, go to news.uafs.edu. 2 Next, click Admin at the bottom of the page. NOTE:

More information

Concord Fax Online User Guide V.4 (2010)

Concord Fax Online User Guide V.4 (2010) Concord Fax Online User Guide V.4 (2010) Concord Technologies Publication Notice The contents of this publication the specifications of this application are subject to change without notice. Concord reserves

More information

Component Tracking System

Component Tracking System Component Tracking System User s Manual PREPARED BY Version 1.2 May 2014 Contents 1 Introduction... 1 2 Getting Started... 1 2.1 System Requirements... 1 2.2 Launching the Application... 1 2.3 Application

More information

Different File Types and their Use

Different File Types and their Use Different File Types and their Use.DOC (Microsoft Word Document) Text Files A DOC file is a Word processing document created by Microsoft Word, a word processor included with all versions of Microsoft

More information

SciVee Conferences AUTHOR GUIDE

SciVee Conferences AUTHOR GUIDE SciVee Conferences AUTHOR GUIDE 1 TABLE OF CONTENTS 1. ABOUT THIS DOCUMENT... 3 INTENDED READERSHIP... 3 FREQUENTLY USED TERMS... 3 2. SYSTEM REQUIREMENTS, PUBLISHING AND PERMISSIONS... 3 SYSTEM REQUIREMENTS...

More information