Ryft REST API - Swagger.io

Size: px
Start display at page:

Download "Ryft REST API - Swagger.io"

Transcription

1 Ryft REST API - Swagger.io User Guide Ryft Document Number: 1192 Document Version: Revision Date: June Ryft Systems, Inc. All Rights in this documentation are reserved. RYFT SYSTEMS, INC.

2 Copyright (c) 2017, Ryft Systems, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. All advertising materials mentioning features or use of this software must display the following acknowledgement: This product includes software developed by Ryft Systems, Inc. Neither the name of Ryft Systems, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY RYFT SYSTEMS, INC. ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RYFT SYSTEMS, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Ryft Systems, Inc. Page ii

3 Revision History Date Reason for Change Version June 2017 Add rename and login March 2017 Add CURL & HTTP command examples October 2016 Initial Release Ryft Systems, Inc. Page iii

4 Contents Using This Guide... 5 Ryft Technical Support... 5 About Ryft Systems Inc : Ryft ONE RESTful API Web Interface... 7 GET /search Endpoint GET /count Endpoint PUT /rename Endpoint Files Endpoints DELETE /files Endpoint GET /files Endpoint POST /files Endpoint GET /version Endpoint Authentication POST /login Endpoint GET /token_refresh Endpoint : Generating a Python Client Requirement Ryft Python Client Example Step 1: Copy Ryft-server-swagger.json Interface Definition Page Step 2: Generate Client API Library for Desired Language Step 3: Replace Code Generator Display with swagger.json from Clipboard Step 4: Select Client Language and Save File Step 5: Setup Generated API Client Code Environment Run Code Examples Example: ryft_search_example.py Ryft Systems, Inc. Page iv

5 Using This Guide This guide is for the user who will use the Swagger interface to use the Ryft ONE REST API. Additional resources: Ryft REST API Command User & Reference Guide, Ryft Open API Library User Guide and the Ryft ONE: User Guide. Ryft Technical Support You may access our first-tier support directly from our public website by using the Chat Widget and starting a chat with our support agents. All chat conversations are tracked and become help desk tickets in our support system. In addition, you can access our support system through the Ryft Support site: Log in with your credentials to see your past tickets, create new tickets, and to access limited-access content. For technical support, contact us: support@ryft.com Web: Phone: (RYFT ONE) About Ryft Systems Inc. Ryft makes data analytics fast and simple with the world s top cloud and physical heterogeneous compute accelerators. With more than a decade of experience, Ryft helps deliver instant insights into any data by eliminating the latency associated with data indexing and transformation/curating. Today, industry leaders rely on Ryft to quickly and simply unlock the value hidden in their data for real-time actionable insight. Ryft Systems, Inc. Page 5

6 This page intentionally left blank. Ryft Systems, Inc. Page 6

7 1 1: Ryft ONE RESTful API Web Interface The Ryft ONE RESTful API incorporates Swagger to provide a simple, yet powerful, representation of the interface to the Ryft ONE. With the Swagger-enabled API, developers can easily try out the interface and use the Swagger SDK to easily generate clients from an extensive selection of languages. The RyftOne REST API page is available for both single server and clustered environments. The function is the same, regardless the environment. To access the interface, use the IP address of your Ryft ONE followed by port number :8765. Ryft Systems, Inc. Page 7

8 The page contains expandable sections for each of the endpoints: search, count, rename, files, version and the two special endpoints for JWT (JSON Web Token) authentication, login and token/refresh. The files endpoint has three operations: delete, get and post. Expand each to get more information, and then complete the appropriate parameter fields to execute the command. Expand a section and notice that the top of each section contains notes and the code to be executed. The Parameters section provides a list of all available parameters used by the endpoint, and the ability to input or select values for each parameter. Ryft Systems, Inc. Page 8

9 The bottom of each section has the Try it out! button. Press it to run the specified command with the parameters you have specified. In addition to returning the results in the Response Body section, it also displays the Curl code based on the parameters, and the Request URL used to connect to the specified server and the code to execute. Ryft Systems, Inc. Page 9

10 GET /search Endpoint Run a raw text or structured search against specified file(s). Return all data that match the specified parameter values. Scroll down the page to view the Parameters: Parameter Data Type Description query * String Search query string. At least one search query is REQUIRED. For example: (RAW_TEXT CONTAINS night ) file * Array[string] Set of files in the specified path to search. Designated file path must be relative to the /ryftone directory. At least one file is REQUIRED. Wild cards are supported such as wiki*.* or *.txt. List multiple values on individual lines. mode String Search mode. Available options are: es Exact search fhs Fuzzy hamming search feds Fuzzy edit distance search Ryft Systems, Inc. Page 10

11 Parameter Data Type Description ds Date search ts Time search Doc #1192, V1.1.0/ June 2017 ns Currency or numeric search rs Regular expression (regex) search ipv4 IPv4 search ipv6 IPv6 search surrounding Integer or line Number of characters before and after the matching query string to be returned. Use with RAW text search. Set to line to return the entire line. fuzziness Integer Fuzziness of the search. Measured as the maximum Hamming distance for fhs mode or the edit distance for feds mode. format String By default, structured search uses format=raw format. That means that found data are reported as base-64 encoded raw bytes. The options are: raw use for structured search xml json utf8 use for text search null If input file set contains XML data, the found records could be decoded by passing the format=xml query parameter. Records will then be translated from XML to JSON. The same is true for JSON data. For the text search use the format=utf8 option. It interprets raw bytes as UTF-8 string so it's easy to take a quick look at the results. cs Boolean Case-sensitive flag for query string. True or False. Default is false. reduce Boolean Reduce flag for fuzzy edit distance search. True or False. Default is true. fields String Comma-separated list of requested fields. If omitted, all fields are used. Use with structured search to minimize output. data String Name of data file to be kept. If the file already exists, it will be overwritten. Ryft Systems, Inc. Page 11

12 Parameter Data Type Description Doc #1192, V1.1.0/ June 2017 index String Name of index file to be kept. If the file already exists, it will be overwritten. delimiter String Characters to use between found records in the data file. Default is a carriage return. nodes Integer The number of RCAB processing nodes to use for this search. Maximum is 4. If omitted, all available nodes are used. local Boolean The server(s) on which to perform this search. True or False. Default is false; search is run locally. Select True to run on the entire cluster. stats Boolean Display search statistics with results. True or False. Default is false, no statistics are reported. limit Integer Limit the total number of returned records to the specified number. If none specified, all results are returned. Transform Array[string] Additional data transformation. Could be match("^.$"), replace("^(.)apple(.*)$", "$1orange$2") or script("filter_position") In this search example, the following parameters are set: query = Washington redskins files = wiki*.* mode = fhs surrounding =20 fuzziness = 2 format = utf8 cs = false Here is the result: Ryft Systems, Inc. Page 12

13 It found 13,651 matches. This is the Curl command that executes the search: curl -X GET --header 'Accept: application/json' ' mode=fhs&surrounding=20&fuzziness=2&format=utf8&cs=false&reduce=true&local=true&stats= true' This is the request URL that executes the search. ode=fhs&surrounding=20&fuzziness=2&format=utf8&cs=false&reduce=true&local=true&stats=t rue Ryft Systems, Inc. Page 13

14 GET /count Endpoint Doc #1192, V1.1.0/ June 2017 Like search, run a search for specified query string, but in this case, only return the match statistics. Parameter Data Type Description query * String Search query string. REQUIRED. For example (RAW_TEXT CONTAINS night ) file * Array[string] Set of files in the specified path to search. Designated file path must be relative to the /ryftone directory. At least one file is REQUIRED. Wild cards are supported such as wiki*.* or *.txt. List multiple values on individual lines. mode String Search mode. Available options are: es exact search fhs fuzzy hamming search feds fuzzy edit distance search ds date search ts time search ns Currency or numeric search rs Regular expression (regex) search ipv4 IPv4 search Ryft Systems, Inc. Page 14

15 Parameter Data Type Description surrounding Integer or line ipv6 IPv6 search Doc #1192, V1.1.0/ June 2017 Number of characters before and after the matching query string to be returned. Use with RAW text search. Can set to line to return the entire line. fuzziness Integer Fuzziness of the search. Measured as the maximum Hamming distance for fhs mode or the edit distance for feds mode. cs Boolean Case-sensitive flag for query string. True or False. Default is false. reduce Boolean Reduce flag for fuzzy edit distance search. True or False. Default is true. data String Name of data file to be kept. If the file already exists, it will be overwritten. index String Name of index file to be kept. If the file already exists, it will be overwritten. delimiter String Characters to use between found records in the data file. Default is a carriage return. share-mode String Waiting time used for sharing mode when accessing data times. Default is wait-0s (zero seconds). Can be wait-10s, skip or ignore. nodes Integer The number of RCAB processing nodes to use for this search. Maximum is 4. If omitted, all nodes are used. local Boolean The server(s) on which to perform this search. True or False. Default is false; search is run locally. Select True to run on the entire cluster. performance Boolean Include performance metrics in the response results. True or False. Default is False. Ryft Systems, Inc. Page 15

16 In this example, the following parameters are used: query = Young Shik Rhee files = wiki*.* mode = fhs surrounding =10 fuzziness = 2 cs = false This is the result; it found 24 matches. curl -X GET --header 'Accept: application/json' ' e=fhs&surrounding=10&fuzziness=2&cs=false&reduce=true&local=true' The only difference in the curl command is that the count endpoint is used instead of search so only the count or statistics display in the response. This is also true for the HTTP command. PUT /rename Endpoint Use the PUT /rename endpoint to rename or change the name of: an individual file, a directory, a catalog name during the upload to the Ryft ONE, or a file name within an existing catalog. Ryft Systems, Inc. Page 16

17 At least one of the parameters (file, directory, or catalog) must be specified. Parameter Data Type Description file String The full path of the source file to upload. The file extension cannot be changed using this endpoint. Wild cards are supported such as wiki*.* or *.txt. If used with the catalog parameter, the file will be renamed inside the catalog. dir String The full path of the source directory. catalog String The full path of the catalog file. If used with the file parameter, the catalog will not be renamed. new * String The new file name for the file, directory, catalog or a file within a catalog. This example demonstrates renaming a file in the /ryftone mount point from adldata1.txt to adldata2.txt. Ryft Systems, Inc. Page 17

18 Files Endpoints Three options are available for the Files endpoint. Click on each to expand the section. Each endpoint is covered in the following pages. Ryft Systems, Inc. Page 18

19 DELETE /files Endpoint Doc #1192, V1.1.0/ June 2017 Use the DELETE /files endpoint to delete directories and files on the node or cluster. For each parameter, you can list multiple values on new lines. Wildcards are supported. Parameter Data Type Description dir Array[string] The directory path to delete. Wildcards are supported. file Array[string] The file path to delete. Wildcards are supported. catalog Array[string] The catalog path to delete. Wildcards are supported. local Boolean True/False. Default is false. Return the file structure from the local node, only, or from the entire cluster. Provide values for one of the three parameters to define what should be deleted an entire directory, a specific file, or a catalog. You must provide the full path for each. Ryft Systems, Inc. Page 19

20 GET /files Endpoint Doc #1192, V1.1.0/ June 2017 Use the GET /files endpoint to obtain a list of the files and directories on the specified node or cluster. Parameter Data Type Description dir String The folder path to return the list of files in the directory. Default is /ryftone the Ryftone directory. Only lists files from the /ryftone/<directory name> specified. hidden Boolean True/False. Default is false. Include or exclude hidden files. local Boolean True/False. Default is false. Return the file structure from the local node, only, or from the entire cluster. catalog String The pathname of the catalog to download the file. file String The filename. Ryft Systems, Inc. Page 20

21 In this example, list all files in the /ryftone/odbc directory on the local server (local=true). Ryft Systems, Inc. Page 21

22 POST /files Endpoint Use this endpoint to upload (post) files to the node or cluster. Parameter Data Type Description file String Set of files to post/upload. At least one file is REQUIRED. Use {{random}} for random names. Wild cards are supported, such as wiki*.* or *.txt. List multiple values on individual lines. catalog String The catalog to append the file(s) to. delimiter String Characters to use between file parts in the catalog. offset Long Optional. File part offset. length Long Optional. Ryft Systems, Inc. Page 22

23 Parameter Data Type Description File part length Doc #1192, V1.1.0/ June 2017 lifetime String The file or catalog lifetime. For example, 2h share-mode String Sharing mode used to access data files. Default is wait-0s. Use values like wait-10s or ignore. local Boolean The server(s) on which to perform this search. True or False. Default is false; search is run locally. Select True to run on the entire cluster. GET /version Endpoint Run this to return the current build version on the local server. Returns the hash and version number. No input parameters. The following output is returned: Authentication If authentication is enabled, the ryft-server checks for Authorization HTTP header. If Authorization header contains Basic keyword the basic authentication is used. The ryft-server extracts username and password from the header and checks the user is authorized to access requested resources. Otherwise, if Authorization header contains Bearer keyword the JSON Web Token (JWT) is used. The ryft-server extracts JWT token from the header and uses it. There are two special endpoints for JWT authentication: Ryft Systems, Inc. Page 23

24 /login is used to get JWT token. /token/refresh is used to refresh existing token. POST /login Endpoint Example response below with token: Ryft Systems, Inc. Page 24

25 GET /token_refresh Endpoint In order to support JWT, ryft server exports two endpoints: Use /login to provide user credentials and get valid token back. Use /token/refresh to refresh existing token. By default, the token's lifetime is one hour but this timeout can be customized using the --jwt-lifetime command line option. There is a max of 10 lifetimes. Ryft Systems, Inc. Page 25

26 Ryft Systems, Inc. Page 26

27 2 2: Generating a Python Client The use of Swagger enables the user to easily generate a client to the RESTful JSON API, in an extensive selection of languages. This section shows how to generate a Python client. Requirement The Ryft ONE REST API works with Python version 2.6 or 2.7. Ryft Python Client Example This is an example of the Ryft Python client using swagger.json interface definition. The Ryft swagger.json interface definition is used to generate client code. This requires Python 2.7 and later. Here is a summary of the steps: 1. Go to the Ryft-server swagger.json interface definition page and copy contents to clipboard. 2. Generate client API library for desired language using swagger.json. 3. Replace code generated display with swagger.json from clipboard. 4. Select client language and save file 5. Setup generated API client code environment 6. Run sample programs Each step is covered in the following pages. Ryft Systems, Inc. Page 27

28 Step 1: Copy Ryft-server-swagger.json Interface Definition Page Doc #1192, V1.1.0/ June 2017 Go to the Ryft-server swagger.json interface definition page and copy contents of the entire page to clipboard. Use this syntax: Address_of_Host>:8765/swagger.json Step 2: Generate Client API Library for Desired Language Use Swagger s code generator web page to generate the code for your desired language. From the page, select Swagger Tools, Swagger Editor, and then Try the Live Demo link. Alternatively, go to Step 3: Replace Code Generator Display with swagger.json from Clipboard Replace the contents of the left window with the copied text from the swagger.json file. Ryft Systems, Inc. Page 28

29 Step 4: Select Client Language and Save File From the top-level swagger menu, select Generate Client and select Python (or your desired language). This example generates a Python API package and saves it to your local computer. Ryft Systems, Inc. Page 29

30 Step 5: Setup Generated API Client Code Environment You need these two commands to unzip the saved API package: If you don t have it, run sudo apt-get unzip. If you don t have it, run sudo apt-get install python-pip Now, issue these commands: $ unzip python-client-generated.zip $ cd ryft-python-client $ sudo python setup.py install Run Code Examples Doc #1192, V1.1.0/ June 2017 These examples are already installed on your Ryft ONE in the ~/install/ryft-python-client directory. Run Python examples in this project, or write your own. # run python examples from this repo, or write your own python ryft_version_example.py -a python ryft_search_example.py -a python ryft_files_example.py -a # run sample programs accepting more parameters python ryft_search.py -a -h --help Prints this short help message. -p --mode <primitive> Specifies the search mode to run, which can be one of: es exact_search fhs fuzzy_hamming_search (used by default) feds fuzzy_edit_distance_search ds date_search ts time_search ns numeric_search -f --file <filename> Specifes a /ryftone input file to search. -i Specifies case insensitive analysis for supported primitives. -n --nodes <#> Specifies 1-4 RCAP processing nodes to use. -d --fuzziness <#> Specifies the fuzzy search distance. -w --width <#> Specifies the surrounding text. -s -q <query> Specifies /ryftone files to search. -od filename Specifies /ryftone search output data file. -oi filename Specifies /ryftone search output index file. Rest Specific: -a --address Specifies ryft server eaddress. --local Specifies use local search. Opposite of -- cluster --cluster Specifies use cluster search. Opposite of -- local --format=<format> Specifies output formatting raw xml json utf8 --fields Specifies comma-separated list of fields to return --no-stats Disabled statistics output. --count Use /count endpoint instead of /search to print just statistics. -v Debug placeholder -vv Debug placeholder Ryft Systems, Inc. Page 30

31 Use this command to change default hostnames used by ryft*.py: perl -p -i -e 's/ryft311/ /' ryft*.py Example: ryft_search_example.py import swagger_client import sys, getopt # cmd line args host=" myopts, args = getopt.getopt(sys.argv[1:],"h:") for o, v in myopts: if o == '-h': host=v # api call a = swagger_client.apiclient(host=host) sa = swagger_client.apis.searchapi(a) sr = sa.search( files=["odbc/census/census*.censusxml"], query="(raw_text CONTAINS \"Aberdeen\")", local="true", stats="true", cs="true", fuzziness="0",format="utf8", surrounding="0", mode="es"); # show results print "stats=", sr.stats print "results=", sr.results Ryft Systems, Inc. Page 31

StorageGRID Webscale NAS Bridge Management API Guide

StorageGRID Webscale NAS Bridge Management API Guide StorageGRID Webscale NAS Bridge 2.0.3 Management API Guide January 2018 215-12414_B0 doccomments@netapp.com Table of Contents 3 Contents Understanding the NAS Bridge management API... 4 RESTful web services

More information

ProgressBar Abstract

ProgressBar Abstract Doc type here 1(21) ProgressBar Abstract The WireFlow progressbar module is an easy way to add progress bars to an application. It is easy to customize the look of the displayed progress window, since

More information

iwrite technical manual iwrite authors and contributors Revision: 0.00 (Draft/WIP)

iwrite technical manual iwrite authors and contributors Revision: 0.00 (Draft/WIP) iwrite technical manual iwrite authors and contributors Revision: 0.00 (Draft/WIP) June 11, 2015 Chapter 1 Files This section describes the files iwrite utilizes. 1.1 report files An iwrite report consists

More information

Open Source Used In TSP

Open Source Used In TSP Open Source Used In TSP 3.5.11 Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco website at www.cisco.com/go/offices.

More information

MUMPS IO Documentation

MUMPS IO Documentation MUMPS IO Documentation Copyright (c) 1999, 2000, 2001, 2002, 2003 Raymond Douglas Newman. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted

More information

HALCoGen TMS570LS31x Help: example_sci_uart_9600.c

HALCoGen TMS570LS31x Help: example_sci_uart_9600.c Page 1 of 6 example_sci_uart_9600.c This example code configures SCI and transmits a set of characters. An UART receiver can be used to receive this data. The scilin driver files should be generated with

More information

Preface. Audience. Cisco IOS Software Documentation. Organization

Preface. Audience. Cisco IOS Software Documentation. Organization This preface describes the audience, organization, and conventions of this publication, and provides information on how to obtain related documentation. Cisco documentation and additional literature are

More information

Ryft JDBC Connector. Installation and User Guide. Ryft Document Number: Document Version: Revision Date: May 2017

Ryft JDBC Connector. Installation and User Guide. Ryft Document Number: Document Version: Revision Date: May 2017 Ryft JDBC Connector Installation and User Guide Ryft Document Number: 1193 Document Version: 1.2.1 Revision Date: May 2017 2017 Ryft Systems, Inc. All Rights in this documentation are reserved. RYFT SYSTEMS,

More information

Ryft Cloud JDBC Connector

Ryft Cloud JDBC Connector Ryft Cloud JDBC Connector Installation and User Guide Ryft Document Number: 1210 Document Version: 1.0.0 Revision Date: October 2017 2017 Ryft Systems, Inc. All Rights in this documentation are reserved.

More information

Data Deduplication Metadata Extension

Data Deduplication Metadata Extension Data Deduplication Metadata Extension Version 1.1c ABSTRACT: This document describes a proposed extension to the SNIA Cloud Data Management Interface (CDMI) International Standard. Publication of this

More information

Flask-Sitemap Documentation

Flask-Sitemap Documentation Flask-Sitemap Documentation Release 0.3.0 CERN May 06, 2018 Contents 1 Contents 3 2 Installation 5 2.1 Requirements............................................... 5 3 Usage 7 3.1 Simple Example.............................................

More information

File Servant User Manual

File Servant User Manual File Servant User Manual Serve files over FTP and HTTP - at the snap of a finger! File Servant is free software (see copyright notice below). This document was last revised Monday 28 February 2011. Creator:

More information

Intel Stress Bitstreams and Encoder (Intel SBE) 2017 AVS2 Release Notes (Version 2.3)

Intel Stress Bitstreams and Encoder (Intel SBE) 2017 AVS2 Release Notes (Version 2.3) Intel Stress Bitstreams and Encoder (Intel SBE) 2017 AVS2 Release Notes (Version 2.3) Overview Changes History Installation Package Contents Known Limitations Attributions Legal Information Overview The

More information

User Manual. Date Aug 30, Enertrax DAS Download Client

User Manual. Date Aug 30, Enertrax DAS Download Client EnertraxDL - DAS Download Client User Manual Date Aug 30, 2004 Page 1 Copyright Information Copyright 2004, Obvius Holdings, LLC. All rights reserved. Redistribution and use in source and binary forms,

More information

System Log NextAge Consulting Pete Halsted

System Log NextAge Consulting Pete Halsted System Log NextAge Consulting Pete Halsted 110 East Center St. #1035 Madison, SD 57042 pete@thenextage.com www.thenextage.com www.thenextage.com/wordpress Table of Contents Table of Contents BSD 3 License

More information

Package fst. December 18, 2017

Package fst. December 18, 2017 Type Package Package fst December 18, 2017 Title Lightning Fast Serialization of Data Frames for R Multithreaded serialization of compressed data frames using the 'fst' format. The 'fst' format allows

More information

DoJSON Documentation. Release Invenio collaboration

DoJSON Documentation. Release Invenio collaboration DoJSON Documentation Release 1.2.0 Invenio collaboration March 21, 2016 Contents 1 About 1 2 Installation 3 3 Documentation 5 4 Testing 7 5 Example 9 5.1 User s Guide...............................................

More information

ODM 1.1. An application Hydrologic. June Prepared by: Jeffery S. Horsburgh Justin Berger Utah Water

ODM 1.1. An application Hydrologic. June Prepared by: Jeffery S. Horsburgh Justin Berger Utah Water ODM M STREAMING VERSION DATAA LOADER 1.1 An application for loading streaming sensor data into the CUAHSI Hydrologic Information System Observations Data Model June 2008 Prepared by: Jeffery S. Horsburgh

More information

LabVIEW Driver. User guide Version

LabVIEW Driver. User guide Version LabVIEW Driver User guide Version 1.0.0 2016 Table of Contents Version History...3 Copyright...4 Software License...5 Operational Safety...6 Warranty and Support...7 Introduction...8 Requirements...9 How

More information

Simba Cassandra ODBC Driver with SQL Connector

Simba Cassandra ODBC Driver with SQL Connector Simba Cassandra ODBC Driver with SQL Connector Last Revised: March 26, 2013 Simba Technologies Inc. Copyright 2012-2013 Simba Technologies Inc. All Rights Reserved. Information in this document is subject

More information

Migration Tool. Migration Tool (Beta) Technical Note

Migration Tool. Migration Tool (Beta) Technical Note Migration Tool (Beta) Technical Note VERSION: 6.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo

More information

PageScope Box Operator Ver. 3.2 User s Guide

PageScope Box Operator Ver. 3.2 User s Guide PageScope Box Operator Ver. 3.2 User s Guide Box Operator Contents 1 Introduction 1.1 System requirements...1-1 1.2 Restrictions...1-1 2 Installing Box Operator 2.1 Installation procedure...2-1 To install

More information

HIS document 2 Loading Observations Data with the ODDataLoader (version 1.0)

HIS document 2 Loading Observations Data with the ODDataLoader (version 1.0) HIS document 2 Loading Observations Data with the ODDataLoader (version 1.0) A guide to using CUAHSI s ODDataLoader tool for loading observations data into an Observations Data Model compliant database

More information

RSA Two Factor Authentication

RSA Two Factor Authentication RSA Two Factor Authentication Feature Description VERSION: 6.0 UPDATED: JULY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies

More information

Use in High-Safety Applications

Use in High-Safety Applications ------ ScanSnap Organizer V5.6L20 README File ------ - Contents - 1. Cautions for using environment-dependent characters 2. Cautions Concerning Installation 3. Cautions Concerning the Operation 4. Connecting

More information

ColdFusion Builder 3.2 Third Party Software Notices and/or Additional Terms and Conditions

ColdFusion Builder 3.2 Third Party Software Notices and/or Additional Terms and Conditions ColdFusion Builder 3.2 Third Party Software Notices and/or Additional Terms and Conditions Date Generated: 2018/09/10 Apache Tomcat ID: 306 Apache Foundation and Contributors This product includes software

More information

Cassette Documentation

Cassette Documentation Cassette Documentation Release 0.3.8 Charles-Axel Dein October 01, 2015 Contents 1 User s Guide 3 1.1 Foreword................................................. 3 1.2 Quickstart................................................

More information

Control4/HomeKit Appliance User Manual. User Manual. June Version Varietas Software, LLC.

Control4/HomeKit Appliance User Manual. User Manual. June Version Varietas Software, LLC. Control4/HomeKit Appliance User Manual User Manual June 2017 Version 1.0.3 Varietas Software, LLC http://www.varietassoftware.com/control4 i Control4/HomeKit Appliance Quick Start Document Revisions Date

More information

Static analysis for quality mobile applications

Static analysis for quality mobile applications Static analysis for quality mobile applications Julia Perdigueiro MOTODEV Studio for Android Project Manager Instituto de Pesquisas Eldorado Eric Cloninger Product Line Manager Motorola Mobility Life.

More information

GoldSim License Portal A User s Guide for Managing Your GoldSim Licenses

GoldSim License Portal A User s Guide for Managing Your GoldSim Licenses GoldSim License Portal A User s Guide for Managing Your GoldSim Licenses Copyright GoldSim Technology Group LLC, 1998-2016. All rights reserved. GoldSim is a registered trademark of GoldSim Technology

More information

KEMP Driver for Red Hat OpenStack. KEMP LBaaS Red Hat OpenStack Driver. Installation Guide

KEMP Driver for Red Hat OpenStack. KEMP LBaaS Red Hat OpenStack Driver. Installation Guide KEMP LBaaS Red Hat OpenStack Driver Installation Guide VERSION: 2.0 UPDATED: AUGUST 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP

More information

Ryft JDBC Connector. Installation and User Guide. Ryft Document Number: Document Version: Revision Date: November 2016

Ryft JDBC Connector. Installation and User Guide. Ryft Document Number: Document Version: Revision Date: November 2016 Ryft JDBC Connector Installation and User Guide Ryft Document Number: 1193 Document Version: 1.1.0 Revision Date: November 2016 2016 Ryft Systems, Inc. All Rights in this documentation are reserved. RYFT

More information

ANZ TRANSACTIVE MOBILE for ipad

ANZ TRANSACTIVE MOBILE for ipad ANZ TRANSACTIVE MOBILE for ipad CORPORATE CASH AND TRADE MANAGEMENT ON THE GO QUICK REFERENCE GUIDE April 2016 HOME SCREEN The home screen provides immediate visibility of your favourite accounts and transactions

More information

django-generic-filters Documentation

django-generic-filters Documentation django-generic-filters Documentation Release 0.11.dev0 Novapost August 28, 2014 Contents 1 Example 3 2 Forms 5 3 Ressources 7 4 Contents 9 4.1 Demo project...............................................

More information

ODM STREAMING DATA LOADER

ODM STREAMING DATA LOADER ODM STREAMING DATA LOADER An application for loading streaming sensor data into the CUAHSI Hydrologic Information System Observations Data Model March 2012 Prepared by: Jeffery S. Horsburgh Utah Water

More information

Business Rules NextAge Consulting Pete Halsted

Business Rules NextAge Consulting Pete Halsted Business Rules NextAge Consulting Pete Halsted 110 East Center St. #1035 Madison, SD 57042 pete@thenextage.com www.thenextage.com www.thenextage.com/wordpress Table of Contents Table of Contents BSD 3

More information

Grouper UI csrf xsrf prevention

Grouper UI csrf xsrf prevention Grouper UI csrf xsrf prevention Wiki Home Download Grouper Grouper Guides Community Contributions Developer Resources Grouper Website This is in Grouper 2.2 UI. btw, Ive heard this does not work with IE8.

More information

Table of Contents Overview...2 Selecting Post-Processing: ColorMap...3 Overview of Options Copyright, license, warranty/disclaimer...

Table of Contents Overview...2 Selecting Post-Processing: ColorMap...3 Overview of Options Copyright, license, warranty/disclaimer... 1 P a g e ColorMap Post-Processing Plugin for OpenPolScope software ColorMap processing with Pol-Acquisition and Pol-Analyzer plugin v. 2.0, Last Modified: April 16, 2013; Revision 1.00 Copyright, license,

More information

Scott Auge

Scott Auge Scott Auge sauge@amduus.com Amduus Information Works, Inc. http://www.amduus.com Page 1 of 14 LICENSE This is your typical BSD license. Basically it says do what you want with it - just don't sue me. Written

More information

MagicInfo Express Content Creator

MagicInfo Express Content Creator MagicInfo Express Content Creator MagicInfo Express Content Creator User Guide MagicInfo Express Content Creator is a program that allows you to conveniently create LFD content using a variety of templates.

More information

calio / form-input-nginx-module

calio / form-input-nginx-module https://github.com/ 1 of 5 2/17/2015 11:27 AM Explore Gist Blog Help itpp16 + calio / form-input-nginx-module 5 46 9 This is a nginx module that reads HTTP POST and PUT request body encoded in "application/x-www-formurlencoded",

More information

pyserial-asyncio Documentation

pyserial-asyncio Documentation pyserial-asyncio Documentation Release 0.4 pyserial-team Feb 12, 2018 Contents 1 Short introduction 3 2 pyserial-asyncio API 5 2.1 asyncio.................................................. 5 3 Appendix

More information

TheGreenBow VPN Client ios User Guide

TheGreenBow VPN Client ios User Guide www.thegreenbow.com TheGreenBow VPN Client ios User Guide Property of TheGreenBow 2018 Table of Contents 1 Presentation... 3 1.1 TheGreenBow VPN Client... 3 1.2 TheGreenBow VPN Client main features...

More information

APPLICATION NOTE. Atmel AT03261: SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) SAM D20 System Interrupt Driver (SYSTEM INTERRUPT)

APPLICATION NOTE. Atmel AT03261: SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) APPLICATION NOTE Atmel AT03261: SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) ASF PROGRAMMERS MANUAL SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) This driver for SAM D20 devices provides an

More information

VMware vcenter Log Insight Manager. Deployment Guide

VMware vcenter Log Insight Manager. Deployment Guide VMware vcenter Log Insight Manager Deployment Guide VERSION: 6.0 UPDATED: JULY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies

More information

Package fst. June 7, 2018

Package fst. June 7, 2018 Type Package Package fst June 7, 2018 Title Lightning Fast Serialization of Data Frames for R Multithreaded serialization of compressed data frames using the 'fst' format. The 'fst' format allows for random

More information

PyWin32ctypes Documentation

PyWin32ctypes Documentation PyWin32ctypes Documentation Release 0.1.3.dev1 David Cournapeau, Ioannis Tziakos Sep 01, 2017 Contents 1 Usage 3 2 Development setup 5 3 Reference 7 3.1 PyWin32 Compatibility Layer......................................

More information

NemHandel Referenceklient 2.3.1

NemHandel Referenceklient 2.3.1 OIO Service Oriented Infrastructure NemHandel Referenceklient 2.3.1 Release Notes Contents 1 Introduction... 3 2 Release Content... 3 3 What is changed?... 4 3.1 NemHandel Referenceklient version 2.3.1...

More information

About This Guide. and with the Cisco Nexus 1010 Virtual Services Appliance: N1K-C1010

About This Guide. and with the Cisco Nexus 1010 Virtual Services Appliance: N1K-C1010 This guide describes how to use Cisco Network Analysis Module Traffic Analyzer 4.2 (NAM 4.2) software. This preface has the following sections: Chapter Overview, page xvi Audience, page xvii Conventions,

More information

TWAIN driver User s Guide

TWAIN driver User s Guide 4037-9571-05 TWAIN driver User s Guide Contents 1 Introduction 1.1 System requirements...1-1 2 Installing the TWAIN Driver 2.1 Installation procedure...2-1 To install the software...2-1 2.2 Uninstalling...2-1

More information

Encrypted Object Extension

Encrypted Object Extension Encrypted Object Extension ABSTRACT: "Publication of this Working Draft for review and comment has been approved by the Cloud Storage Technical Working Group. This draft represents a "best effort" attempt

More information

The Cron service allows you to register STAF commands that will be executed at a specified time interval(s).

The Cron service allows you to register STAF commands that will be executed at a specified time interval(s). Cron Service User's Guide Version 1.2.6 Last updated: March 29, 2006 Overview The Cron service allows you to register STAF commands that will be executed at a specified time interval(s). Note that Cron

More information

SORRENTO MANUAL. by Aziz Gulbeden

SORRENTO MANUAL. by Aziz Gulbeden SORRENTO MANUAL by Aziz Gulbeden September 13, 2004 Table of Contents SORRENTO SELF-ORGANIZING CLUSTER FOR PARALLEL DATA- INTENSIVE APPLICATIONS... 1 OVERVIEW... 1 COPYRIGHT... 1 SORRENTO WALKTHROUGH -

More information

SkyPilot OS Installation: Fedora Core 5

SkyPilot OS Installation: Fedora Core 5 SkyPilot OS Installation: Fedora Core 5 PN 671-00024-01 2006 SkyPilot Networks, Inc. All rights reserved This publication, or parts thereof, may not be reproduced in any form, by any method, for any purpose.

More information

openresty / encrypted-session-nginx-module

openresty / encrypted-session-nginx-module 1 of 13 2/5/2017 1:47 PM Pull requests Issues Gist openresty / encrypted-session-nginx-module Watch 26 127 26 Code Issues 7 Pull requests 1 Projects 0 Wiki Pulse Graphs encrypt and decrypt nginx variable

More information

openresty / array-var-nginx-module

openresty / array-var-nginx-module 1 of 6 2/17/2015 11:20 AM Explore Gist Blog Help itpp16 + openresty / array-var-nginx-module 4 22 4 Add support for array variables to nginx config files 47 commits 1 branch 4 releases 2 contributors array-var-nginx-module

More information

Ecma International Policy on Submission, Inclusion and Licensing of Software

Ecma International Policy on Submission, Inclusion and Licensing of Software Ecma International Policy on Submission, Inclusion and Licensing of Software Experimental TC39 Policy This Ecma International Policy on Submission, Inclusion and Licensing of Software ( Policy ) is being

More information

SMS2CMDB Project Summary v1.6

SMS2CMDB Project Summary v1.6 SMS2CMDB Project Summary v1.6 Project Abstract SMS2CMDB provides the capability to integrate Microsoft Systems Management Server (MS- SMS) data with BMC Atrium CMDB (Atrium CMDB) and the BMC Remedy Asset

More information

Documentation Roadmap for Cisco Prime LAN Management Solution 4.2

Documentation Roadmap for Cisco Prime LAN Management Solution 4.2 Documentation Roadmap for Cisco Prime LAN Thank you for purchasing Cisco Prime LAN Management Solution (LMS) 4.2. This document provides an introduction to the Cisco Prime LMS and lists the contents of

More information

Carbonite Server Backup Portal 8.5. Administration Guide

Carbonite Server Backup Portal 8.5. Administration Guide Carbonite Server Backup Portal 8.5 Administration Guide 2018 Carbonite, Inc. All rights reserved. Carbonite makes no representations or warranties with respect to the contents hereof and specifically disclaims

More information

Dictation Blue Manual

Dictation Blue Manual Dictation Blue Manual Dictation Blue is a professional dictation app for iphone, ipod touch and ipad. This manual describes setup and use of Dictation Blue version 10. 1 Settings 2 1.1 General 2 1.2 Dictation

More information

Flask Gravatar. Release 0.5.0

Flask Gravatar. Release 0.5.0 Flask Gravatar Release 0.5.0 Jan 05, 2018 Contents 1 Contents 3 1.1 Installation................................................ 3 1.2 Usage................................................... 3 2 Parameters

More information

Denkh XML Reporter. Web Based Report Generation Software. Written By Scott Auge Amduus Information Works, Inc.

Denkh XML Reporter. Web Based Report Generation Software. Written By Scott Auge Amduus Information Works, Inc. Denkh XML Reporter Web Based Report Generation Software Written By Scott Auge sauge@amduus.com Page 1 of 13 Table of Contents License 3 What is it? 4 Basic Software Requirements 5 Basic Report Designer

More information

DAP Controller FCO

DAP Controller FCO Release Note DAP Controller 6.40.0412 FCO 2016.046 System : Business Mobility IP DECT Date : 30 June 2016 Category : Maintenance Product Identity : DAP Controller 6.40.0412 Queries concerning this document

More information

JMP to LSAF Add-in. User Guide v1.1

JMP to LSAF Add-in. User Guide v1.1 JMP to LSAF Add-in User Guide v1.1 Table of Contents Terms and Conditions... 3 System Requirements... 3 Installation... 3 Configuration... 4 API Setup... 4 Java Configuration... 5 Logging In... 5 Launching

More information

python-hl7 Documentation

python-hl7 Documentation python-hl7 Documentation Release 0.2.4 John Paulett August 18, 2014 Contents 1 Usage 3 2 MLLP network client - mllp_send 5 3 Contents 7 3.1 python-hl7 API..............................................

More information

Explaining & Accessing the SPDX License List

Explaining & Accessing the SPDX License List Explaining & Accessing the SPDX License List SOFTWARE PACKAGE DATA EXCHANGE Gary O Neall Source Auditor Inc. Jilayne Lovejoy ARM August, 2014 Copyright Linux Foundation 2014 1 The SPDX License List 2 The

More information

Release 3.0. Delegated Admin Application Guide

Release 3.0. Delegated Admin Application Guide Release 3.0 Delegated Admin Application Guide Notice PingDirectory Product Documentation Copyright 2004-2018 Ping Identity Corporation. All rights reserved. Trademarks Ping Identity, the Ping Identity

More information

HYDRODESKTOP VERSION 1.4 QUICK START GUIDE

HYDRODESKTOP VERSION 1.4 QUICK START GUIDE HYDRODESKTOP VERSION 1.4 QUICK START GUIDE A guide to using this free and open source application for discovering, accessing, and using hydrologic data February 8, 2012 by: Tim Whiteaker Center for Research

More information

Copyright PFU LIMITED

Copyright PFU LIMITED -------------------------------------------------------- PaperStream Capture 1.0.12 README File -------------------------------------------------------- Copyright PFU LIMITED 2013-2015 This file contains

More information

Bar Code Discovery. Administrator's Guide

Bar Code Discovery. Administrator's Guide Bar Code Discovery Administrator's Guide November 2012 www.lexmark.com Contents 2 Contents Overview...3 Configuring the application...4 Configuring the application...4 Configuring Bar Code Discovery...4

More information

This file includes important notes on this product and also the additional information not included in the manuals.

This file includes important notes on this product and also the additional information not included in the manuals. --- fi Series PaperStream IP driver 1.30 README file --- Copyright PFU LIMITED 2013-2015 This file includes important notes on this product and also the additional information not included in the manuals.

More information

This file includes important notes on this product and also the additional information not included in the manuals.

This file includes important notes on this product and also the additional information not included in the manuals. --- fi Series PaperStream IP driver 1.42 README file --- Copyright PFU LIMITED 2013-2016 This file includes important notes on this product and also the additional information not included in the manuals.

More information

NemHandel Referenceklient 2.3.0

NemHandel Referenceklient 2.3.0 OIO Service Oriented Infrastructure OIO Service Oriented Infrastructure NemHandel Referenceklient 2.3.0 Release Notes Contents 1 Introduction... 3 2 Release Content... 3 3 What is changed?... 4 3.1 NemHandel

More information

DAP Controller FCO

DAP Controller FCO Release Note DAP Controller 6.61.0790 System : Business Mobility IP DECT Date : 20 December 2017 Category : General Release Product Identity : DAP Controller 6.61.0790 Queries concerning this document

More information

User Guide. Calibrated Software, Inc.

User Guide. Calibrated Software, Inc. User Guide Calibrated Software, Inc. Copyright 2008 Calibrated Software, Inc. All rights reserved. www.calibratedsoftware.com Your rights to the software are governed by the accompanying Software License

More information

Copyright PFU LIMITED 2016

Copyright PFU LIMITED 2016 -------------------------------------------------------- PaperStream Capture Lite 1.0.1 README File -------------------------------------------------------- Copyright PFU LIMITED 2016 This file contains

More information

Programming Style & Firmware Standards

Programming Style & Firmware Standards Programming Style & Firmware Standards Numerous opinions exist in academia and industry regarding programming style rules. One common opinion holds true, through poorly structured and poorly commented

More information

SkyPilot EMS Installation

SkyPilot EMS Installation SkyPilot EMS Installation 671-00004-01 Rev B 2006 SkyPilot Networks, Inc. All rights reserved This publication, or parts thereof, may not be reproduced in any form, by any method, for any purpose. Product

More information

@list = bsd_glob('*.[ch]'); $homedir = bsd_glob('~gnat', GLOB_TILDE GLOB_ERR);

@list = bsd_glob('*.[ch]'); $homedir = bsd_glob('~gnat', GLOB_TILDE GLOB_ERR); NAME File::Glob - Perl extension for BSD glob routine SYNOPSIS use File::Glob ':bsd_glob'; @list = bsd_glob('*.[ch]'); $homedir = bsd_glob('~gnat', GLOB_TILDE GLOB_ERR); if (GLOB_ERROR) { # an error occurred

More information

Ecma International Policy on Submission, Inclusion and Licensing of Software

Ecma International Policy on Submission, Inclusion and Licensing of Software Ecma International Policy on Submission, Inclusion and Licensing of Software Experimental TC39 Policy This Ecma International Policy on Submission, Inclusion and Licensing of Software ( Policy ) is being

More information

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Service Data Objects (SDO) DFED Sample Application README Copyright IBM Corporation, 2012, 2013 US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract

More information

HYDRODESKTOP VERSION 1.1 BETA QUICK START GUIDE

HYDRODESKTOP VERSION 1.1 BETA QUICK START GUIDE HYDRODESKTOP VERSION 1.1 BETA QUICK START GUIDE A guide to help you get started using this free and open source desktop application for discovering, accessing, and using hydrologic data. September 15,

More information

IETF TRUST. Legal Provisions Relating to IETF Documents. Approved November 6, Effective Date: November 10, 2008

IETF TRUST. Legal Provisions Relating to IETF Documents. Approved November 6, Effective Date: November 10, 2008 IETF TRUST Legal Provisions Relating to IETF Documents Approved November 6, 2008 Effective Date: November 10, 2008 1. Background The IETF Trust was formed on December 15, 2005, for, among other things,

More information

Moodle. Moodle. Deployment Guide

Moodle. Moodle. Deployment Guide Moodle Deployment Guide VERSION: 6.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo are registered

More information

Fujitsu ScandAll PRO V2.1.5 README

Fujitsu ScandAll PRO V2.1.5 README -------------------------------------------------------- Fujitsu ScandAll PRO V2.1.5 README -------------------------------------------------------- Copyright PFU Limited 2007-2017 This file contains information

More information

xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx Android Calendar Syn (http://github.com/mukesh4u/android-calendar-sync/), Apache License 2.0 Android NDK (https://developer.android.com/tools/sdk/ndk/index.html),

More information

Definiens. Image Miner bit and 64-bit Editions. Release Notes

Definiens. Image Miner bit and 64-bit Editions. Release Notes Definiens Image Miner 2.0.2 32-bit and 64-bit Editions Release Notes Definiens Documentation: Image Miner 2.0.2 Release Notes Imprint 2012 Definiens AG. All rights reserved. This document may be copied

More information

GoldSim License Server Activation Utility Installation and Basic Use

GoldSim License Server Activation Utility Installation and Basic Use GoldSim License Server Activation Utility Installation and Basic Use Copyright GoldSim Technology Group LLC, 1998-2019. All rights reserved. GoldSim is a registered trademark of GoldSim Technology Group

More information

Intercloud Federation using via Semantic Resource Federation API and Dynamic SDN Provisioning

Intercloud Federation using via Semantic Resource Federation API and Dynamic SDN Provisioning Intercloud Federation using via Semantic Resource Federation API and Dynamic SDN Provisioning David Bernstein Deepak Vij Copyright 2013, 2014 IEEE. All rights reserved. Redistribution and use in source

More information

Splunk. Splunk. Deployment Guide

Splunk. Splunk. Deployment Guide Deployment Guide VERSION: 1.0 UPDATED: JULY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo are registered trademarks

More information

HYDROOBJECTS VERSION 1.1

HYDROOBJECTS VERSION 1.1 o HYDROOBJECTS VERSION 1.1 July, 2008 by: Tim Whiteaker Center for Research in Water Resources The University of Texas at Austin Distribution The HydroObjects software, source code, and documentation are

More information

FLAME BOSS 200V2 & 300 MANUAL. Version 2.6 Download latest at FlameBoss.com/manuals

FLAME BOSS 200V2 & 300 MANUAL. Version 2.6 Download latest at FlameBoss.com/manuals FLAME BOSS 200V2 & 300 MANUAL Version 2.6 Download latest at FlameBoss.com/manuals WARNING: Important Safety Instructions It is important for the safety of persons to follow these instructions. Save these

More information

FLAMEBOSS 300 MANUAL

FLAMEBOSS 300 MANUAL FLAMEBOSS 300 MANUAL Version 2.1 Download latest at FlameBoss.com/manuals WARNING: Important Safety Instructions It is important for the safety of persons to follow these instructions. Save these instructions.

More information

IETF TRUST. Legal Provisions Relating to IETF Documents. February 12, Effective Date: February 15, 2009

IETF TRUST. Legal Provisions Relating to IETF Documents. February 12, Effective Date: February 15, 2009 IETF TRUST Legal Provisions Relating to IETF Documents February 12, 2009 Effective Date: February 15, 2009 1. Background The IETF Trust was formed on December 15, 2005, for, among other things, the purpose

More information

JPdfBookmarks Manual. by Flaviano Petrocchi

JPdfBookmarks Manual. by Flaviano Petrocchi JPdfBookmarks Manual by Flaviano Petrocchi JPdfBookmarks Manual 1 Introduction 3 Installation and Uninstallation 4 Linux Instructions 4 Debian Instructions 6 Windows Instructions 6 Universal Archive Instructions

More information

Open Source Used In c1101 and c1109 Cisco IOS XE Fuji

Open Source Used In c1101 and c1109 Cisco IOS XE Fuji Open Source Used In c1101 and c1109 Cisco IOS XE Fuji 16.8.1 Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco

More information

Open Source Used In Cisco Configuration Professional for Catalyst 1.0

Open Source Used In Cisco Configuration Professional for Catalyst 1.0 Open Source Used In Cisco Configuration Professional for Catalyst 1.0 Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on

More information

Cluster and SVM Peering Express Guide

Cluster and SVM Peering Express Guide ONTAP 9 Cluster and SVM Peering Express Guide December 2017 215-11182_E0 doccomments@netapp.com Updated for ONTAP 9.3 Table of Contents 3 Contents Deciding whether to use this guide... 4 Prerequisites

More information

Adobe Connect. Adobe Connect. Deployment Guide

Adobe Connect. Adobe Connect. Deployment Guide Deployment Guide VERSION: 1.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo are registered trademarks

More information