Newsstand Atom Feed 1.2

Size: px
Start display at page:

Download "Newsstand Atom Feed 1.2"

Transcription

1

2 Contents Newsstand Atom Feed Overview 3 About This Release 3 Metadata Details 4 Character Encoding 4 Basic Newsstand Issue Metadata Example 4 Basic Newsstand Issue Metadata Annotation 6 2

3 Overview Newsstand is feature of ios 5 that allows your readers to access the latest issue of your newspaper or magazine. You host your content on your web server and provide the App Store with an Atom feed that provides updated metadata and cover art for each issue as it becomes available. The Newsstand Atom Feed XML (described in this document) is used to enable the App Store to display your app with the cover art and metadata that is relevant to the latest issue. This document specifies the Newsstand Atom Feed XML format for managing Newsstand issue metadata. Newsstand issue metadata is displayed on your Newsstand app s product page in the App Store. The metadata provided should accurately reflect the issues and content that are available within your app. Newsstand issue metadata can be managed via the Newsstand Atom Feed or directly in itunes Connect. The Newsstand Atom Feed allows you to create new issues and update existing issues. The Newsstand Atom Feed is processed daily. The Newsstand Atom Feed is based on the Atom 1.0 format. More information about the Atom 1.0 standard can be found at About This Release Date/Version July 25, Version 1.2 April 20, Version 1.1 Changes Made Changed size requirements for the cover art icon. This icon must be at least 1024px on the long side. Added cover art size requirements for the new ipad. 3

4 Metadata Details Metadata Details Character Encoding All metadata files must use UTF-8 Unicode character encoding. UTF-8 efficiently encodes non-roman characters and helps to ensure that metadata displayed in the store is the same as was intended by the repertoire owner. Your metadata file should not contain a byte-order mark (BOM) as it is not necessary for UTF-8 encoded data files nor is it supported by itunes at this time. Incorrectly encoded metadata files or files that include a BOM will cause delays or may prevent your content from importing. Note that simply including encoding="utf-8" in your XML declaration is not sufficient. The file itself must also be correctly encoded for accented characters and punctuation to appear correctly in the App Store. Basic Newsstand Issue Metadata Example The example below uses a fictional monthly magazine, App Store Weekly, to illustrate how to deliver metadata and cover art for an issue. <?xml version="1.0" encoding="utf-8"?> <feed xmlns=" xmlns:news=" <entry> <id>613</id> <published> t07:00:00z</published> <news:end_date> t07:00:00z</news:end_date> <summary>in the latest issue, we cover the new Apple Newsstand API.</summary> <news:cover_art_icons> <news:cover_art_icon size="source" src=" <news:cover_art_icon size="iphone_multitasking_1x" src=" <news:cover_art_icon size="ipad_multitasking_1x" src=" <news:cover_art_icon size="ipad_multitasking_2x" src=" 4

5 Basic Newsstand Issue Metadata Example <news:cover_art_icon size="iphone_shelf_1x" src=" <news:cover_art_icon size="iphone_multitasking_2x" src=" <news:cover_art_icon size="ipad_shelf_1x" src=" <news:cover_art_icon size="ipad_shelf_2x" src=" <news:cover_art_icon size="iphone_shelf_2x" src=" </news:cover_art_icons> </entry> <entry> <id>614</id> <updated> t07:00:00z</updated> <published> t07:00:00z</published> <news:end_date> t07:00:00z</news:end_date> <summary>in the latest issue, we cover the new Apple Newsstand Kit framework.</summary> <news:cover_art_icons> <news:cover_art_icon size="source" src=" <news:cover_art_icon size="iphone_multitasking_1x" src=" <news:cover_art_icon size="ipad_multitasking_1x" src=" <news:cover_art_icon size="ipad_multitasking_2x" src=" <news:cover_art_icon size="iphone_shelf_1x" src=" <news:cover_art_icon size="iphone_multitasking_2x" src=" <news:cover_art_icon size="ipad_shelf_1x" src=" <news:cover_art_icon size="ipad_shelf_2x" src=" <news:cover_art_icon size="iphone_shelf_2x" src=" </news:cover_art_icons> </entry> 5

6 Basic Newsstand Issue Metadata Annotation </feed> Basic Newsstand Issue Metadata Annotation <?xml version="1.0" encoding="utf-8"?> XML Declaration (required ) The character encoding of your document must be defined. itunes only accepts UTF-8 encoding as it efficiently encodes non-roman characters. Important: The Newsstand Atom Feed XML file must not contain a byte-order mark (BOM). /feed <feed xmlns=" xmlns:news=" Feed (required ) The xmlns (XML namespace) attribute is required and is used to declare the namespace to which the tags and attributes in the XML are expected to conform. The namespace refers to Atom. To use tags and attributes defined in the itunes Newsstand namespace, you must declare an additional namespace: The tags specific to the Newsstand namespace start with the prefix news:. Any element without a namespace prefix is considered to be in the Atom namespace. Only one <feed> element can be defined in the XML. /feed/updated Updated (required ) This updated date should be set to the date the information within the feed was most recently updated. The Newsstand Atom feed will be processed only if the updated date is later than the updated date of the previous feed that was processed. Date elements in the Newsstand Atom feed should be expressed in RFC 3339 format. An uppercase "T" character must be used to separate date and time, and an uppercase "Z" character must be present if expressing the time in GMT. Note that the time does not need to be expressed in GMT; the following two values represent the same date and time: <updated> t00:00:00-07:00</updated> 6

7 Basic Newsstand Issue Metadata Annotation /feed/entry <entry> Entry (required ) The <entry> element block contains the elements of an individual newsstand issue. The feed may contain multiple <entry> element blocks. If you deliver multiple <entry> elements with the same <id> value, they represent the same entry. The updated timestamps should be different. /feed/entry/id <id>613</id> ID (required ) The <id> element is used to identify the individual newsstand issue. This is an internal identifier that will not be displayed to customers. A new issue will be created if the ID is not found on an existing issue. If the ID matches an existing issue, the issue will be updated. The ID is case sensitive and must be unique (unless you are updating existing content). /feed/entry/updated Updated (required ) The updated date should be set to the date the metadata for this issue was most recently updated. Existing issues will be processed only if the updated date is later than the last modified date of the issue. /feed/entry/published <published> t07:00:00z</published> Published (required ) The published date is the earliest date your issue will appear on the App Store. The App Store will display the issue that has the closest published date prior to the current date, provided the issue has not ended. If multiple issues have the same published date, the most recently updated issue will be displayed. The <published> date should be the same as the <news:end_date> of the previous issue. This ensures that there will be no gaps where no issue is available. /feed/entry/news:end_date <news:end_date> t07:00:00z</news:end_date> News End Date (optional ) The <news:end_date> is optional. If provided, this is the latest date your issue will appear on the App Store. The <news:end_date> must be after the published date. 7

8 Basic Newsstand Issue Metadata Annotation /feed/entry/summary <summary>in the latest issue, we cover the new Apple Newsstand API.</summary> Summary (required ) The <summary> element should contain a description of the issue. This information will be displayed on the App Store when this issue is current. The summary must be between10 and 2000 bytes. /feed/entry/news:cover_art_icons <news:cover_art_icons> <news:cover_art_icon size="source" src=" News Cover Art Icons (required ) The <news:cover_art_icons> element should contain at least one cover art icon. Each <news:cover_art_icon> specifies a cover art image for your issue. All cover art images should be.png files and have an aspect ratio between 1:2 and 2:1. A cover art icon with size name "SOURCE" is required. This icon must be at least 1024px on the long side. Apple will automatically scale the 1024px source to fit each device so you do not need to provide multiple images. However, if you have designed cover art specifically for each device, you can provide additional sizes of your cover art icon with the following size names: IPHONE_MULTITASKING_1X - icon must be exactly 57px on the long side IPHONE_MULTITASKING_2X - icon must be exactly 114px on the long side IPAD_MULTITASKING_1X - icon must be exactly 72px on the long side IPAD_MULTITASKING_2X - icon must be exactly 144px on the long side IPHONE_SHELF_1X - icon must be exactly 90px on the long side IPHONE_SHELF_2X - icon must be exactly 180px on the long side IPAD_SHELF_1X - icon must be exactly 126px on the long side IPAD_SHELF_2X - icon must be exactly 252px on the long side The size names are case sensitive. You cannot provide a size name that is not listed above. If you provide multiple images, those images should look identical or with only minute variations among the different sizes. The src attribute is required and should be the absolute URL to your cover art icon. </news: cover_art_icons> </entry> </feed> 8

9 Apple Inc Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, mechanical, electronic, photocopying, recording, or otherwise, without prior written permission of Apple Inc., with the following exceptions: Any person is hereby authorized to store documentation on a single computer for personal use only and to print copies of documentation for personal use provided that the documentation contains Apple s copyright notice. No licenses, express or implied, are granted with respect to any of the technology described in this document. Apple retains all intellectual property rights associated with the technology described in this document. This document is intended to assist application developers to develop applications only for Apple-labeled computers. Apple Inc. 1 Infinite Loop Cupertino, CA Apple, the Apple logo, ipad, and itunes are trademarks of Apple Inc., registered in the U.S. and other countries. App Store is a service mark of Apple Inc. ios is a trademark or registered trademark of Cisco in the U.S. and other countries and is used under license. Even though Apple has reviewed this document, APPLE MAKES NO WARRANTY OR REPRESENTATION, EITHER EXPRESS OR IMPLIED, WITH RESPECT TO THIS DOCUMENT, ITS QUALITY, ACCURACY, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. AS A RESULT, THIS DOCUMENT IS PROVIDED AS IS, AND YOU, THE READER, ARE ASSUMING THE ENTIRE RISK AS TO ITS QUALITY AND ACCURACY. IN NO EVENT WILL APPLE BE LIABLE FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES RESULTING FROM ANY DEFECT OR INACCURACY IN THIS DOCUMENT, even if advised of the possibility of such damages. THE WARRANTY AND REMEDIES SET FORTH ABOVE ARE EXCLUSIVE AND IN LIEU OF ALL OTHERS, ORAL OR WRITTEN, EXPRESS OR IMPLIED. No Apple dealer, agent, or employee is authorized to make any modification, extension, or addition to this warranty. Some states do not allow the exclusion or limitation of implied warranties or liability for incidental or consequential damages, so the above limitation or exclusion may not apply to you. This warranty gives you specific legal rights, and you may also have other rights which vary from state to state.

TestFlight FAQ. 2014-7-17 Apple Inc.

TestFlight FAQ. 2014-7-17 Apple Inc. TestFlight FAQ apple 2014-7-17 Apple Inc. 2014 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means,

More information

itunes Connect App Analytics Guide v1

itunes Connect App Analytics Guide v1 itunes Connect App Analytics Guide v1 apple 2015-04-22 Apple Inc. 2015 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any

More information

WiFiSurvey Using AirPort Utility for WiFi Scanning Guide

WiFiSurvey Using AirPort Utility for WiFi Scanning Guide WiFiSurvey Using AirPort Utility for WiFi Scanning Guide WiFiSurvey User Guide (January 10, 2016) AccessAgility LLC 2016 AccessAgility LLC. All rights reserved. No part of this publication may be reproduced,

More information

Networking & Internet 2010-07-06

Networking & Internet 2010-07-06 Wireless Enterprise App Distribution Networking & Internet 2010-07-06 Apple Inc. 2010 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted,

More information

Event Kit Programming Guide

Event Kit Programming Guide Event Kit Programming Guide Contents Introduction 4 Who Should Read This Document? 4 Organization of This Document 4 See Also 4 Fetching Events 6 Initializing an Event Store 6 Fetching Events with a Predicate

More information

Synology SSO Server. Development Guide

Synology SSO Server. Development Guide Synology SSO Server Development Guide THIS DOCUMENT CONTAINS PROPRIETARY TECHNICAL INFORMATION WHICH IS THE PROPERTY OF SYNOLOGY INCORPORATED AND SHALL NOT BE REPRODUCED, COPIED, OR USED AS THE BASIS FOR

More information

Apple Certificate Library Functional Specification

Apple Certificate Library Functional Specification Apple Certificate Library Functional Specification apple 2005-01-13 apple Apple Computer, Inc. 2005 Apple Computer, Inc. All rights reserved. No part of this publication may be reproduced, stored in a

More information

WiFiPerf User Guide 1.5

WiFiPerf User Guide 1.5 WiFiPerf User Guide 1.5 AccessAgility LLC 2012 AccessAgility LLC. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any

More information

Apple URL Scheme Reference

Apple URL Scheme Reference Apple URL Scheme Reference Contents About Apple URL Schemes 4 At a Glance 4 Composing Items Using Mail 4 Starting a Phone or FaceTime Conversation 4 Specifying Text Messages 5 Opening Locations in Maps

More information

Apple Applications > Safari 2008-10-15

Apple Applications > Safari 2008-10-15 Safari User Guide for Web Developers Apple Applications > Safari 2008-10-15 Apple Inc. 2008 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system,

More information

Mail Programming Topics

Mail Programming Topics Mail Programming Topics Contents Introduction 4 Organization of This Document 4 Creating Mail Stationery Bundles 5 Stationery Bundles 5 Description Property List 5 HTML File 6 Images 8 Composite Images

More information

ios Team Administration Guide (Legacy)

ios Team Administration Guide (Legacy) ios Team Administration Guide (Legacy) Contents About ios Development Team Administration 5 At a Glance 6 Team Admins Manage Team Membership and Assign Roles in the Member Center 6 Development Devices

More information

Synology NAS Server Mail Station User Guide 2009-1-7

Synology NAS Server Mail Station User Guide 2009-1-7 Synology NAS Server Mail Station User Guide 2009-1-7 2009-1-07 2009 Synology Inc. All Rights Reserved. 1 Synology Inc. 2009 Synology Inc. All rights reserved. No part of this publication may be reproduced,

More information

Introduction to Version Control in

Introduction to Version Control in Introduction to Version Control in In you can use Version Control to work with different versions of database objects and to keep the database updated. You can review, manage, compare, and revert to any

More information

Synology NAS Server. Group Installation Guide 2008-06-16. Synology NAS Server Group Installation Guide

Synology NAS Server. Group Installation Guide 2008-06-16. Synology NAS Server Group Installation Guide Synology NAS Server Group Installation Guide 2008-06-16 States and other countries. Synology Inc. 2008 Synology Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval

More information

Dell One Identity Cloud Access Manager 8.0 - How to Configure vworkspace Integration

Dell One Identity Cloud Access Manager 8.0 - How to Configure vworkspace Integration Dell One Identity Cloud Access Manager 8.0 - How to Configure vworkspace Integration February 2015 This guide describes how to configure Dell One Identity Cloud Access Manager to communicate with a Dell

More information

formerly Help Desk Authority 9.1.2 Quest Free Network Tools User Manual

formerly Help Desk Authority 9.1.2 Quest Free Network Tools User Manual formerly Help Desk Authority 9.1.2 Quest Free Network Tools User Manual 2 Contacting Quest Software Email: Mail: Web site: info@quest.com Quest Software, Inc. World Headquarters 5 Polaris Way Aliso Viejo,

More information

Dell Spotlight on Active Directory 6.8.3. Server Health Wizard Configuration Guide

Dell Spotlight on Active Directory 6.8.3. Server Health Wizard Configuration Guide Dell Spotlight on Active Directory 6.8.3 Server Health Wizard Configuration Guide 2013 Dell Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Synology NAS Server Windows ADS FAQ 2008-11-14

Synology NAS Server Windows ADS FAQ 2008-11-14 Synology NAS Server Windows ADS FAQ 2008-11-14 2008-11-14 2008 Synology Inc. All Rights Reserved. 1 Synology Inc. 2008 Synology Inc. All rights reserved. No part of this publication may be reproduced,

More information

Instant Messaging Nokia N76-1

Instant Messaging Nokia N76-1 Instant Messaging Nokia N76-1 NO WARRANTY The third-party applications provided with your device may have been created and may be owned by persons or entities not affiliated with or related to Nokia. Nokia

More information

Creating Carbon Menus. (Legacy)

Creating Carbon Menus. (Legacy) Creating Carbon Menus (Legacy) Contents Carbon Menus Concepts 4 Components of a Carbon Menu 4 Carbon Menu Tasks 6 Creating a Menu Using Nibs 6 The Nib File 7 The Menus Palette 11 Creating a Simple Menu

More information

Dell InTrust 11.0. Preparing for Auditing Cisco PIX Firewall

Dell InTrust 11.0. Preparing for Auditing Cisco PIX Firewall 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or nondisclosure agreement.

More information

Xcode User Default Reference. (Legacy)

Xcode User Default Reference. (Legacy) Xcode User Default Reference (Legacy) Contents Introduction 5 Organization of This Document 5 Software Version 5 See Also 5 Xcode User Defaults 7 Xcode User Default Overview 7 General User Defaults 8 NSDragAndDropTextDelay

More information

Foglight. Dashboard Support Guide

Foglight. Dashboard Support Guide Foglight Dashboard Support Guide 2013 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under

More information

Spotlight Management Pack for SCOM

Spotlight Management Pack for SCOM Spotlight Management Pack for SCOM User Guide January 2015 The is used to display data from alarms raised by Spotlight on SQL Server Enterprise in SCOM (System Center Operations Manager). About System

More information

Apple Cryptographic Service Provider Functional Specification

Apple Cryptographic Service Provider Functional Specification Apple Cryptographic Service Provider Functional Specification apple 2005-03-10 apple Apple Computer, Inc. 2005 Apple Computer, Inc. All rights reserved. No part of this publication may be reproduced, stored

More information

Dell Migration Manager for Enterprise Social What Can and Cannot Be Migrated

Dell Migration Manager for Enterprise Social What Can and Cannot Be Migrated Dell Migration Manager for Enterprise Social What Can and Cannot Be Migrated MMES - What Can and Cannot Be Migrated First Release - April 2015 2015 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary

More information

Open Source Used In Cisco Instant Connect for ios Devices 4.9(1)

Open Source Used In Cisco Instant Connect for ios Devices 4.9(1) Open Source Used In Cisco Instant Connect for ios Devices 4.9(1) Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the

More information

Getting Started with Apple Pay on the Authorize.Net Platform

Getting Started with Apple Pay on the Authorize.Net Platform Title Page Getting Started with Apple Pay on the Authorize.Net Platform September 2014 Authorize.Net Developer Support http://developer.authorize.net Authorize.Net LLC 082007 Ver.2.0 Authorize.Net LLC

More information

iad Content Guidelines

iad Content Guidelines Contents iad Content Guidelines 3 Summary 3 Purpose 3 Audience 3 Certification 3 General Guidelines 3 Audio 3 Animation 4 Imagery 4 Defamatory Content 4 Profane Content 4 Data Collection 4 Linking Out

More information

Quest vworkspace Virtual Desktop Extensions for Linux

Quest vworkspace Virtual Desktop Extensions for Linux Quest vworkspace Virtual Desktop Extensions for Linux What s New Version 7.6 2012 Quest Software, Inc. ALL RIGHTS RESERVED. Patents Pending. This guide contains proprietary information protected by copyright.

More information

Dell Statistica. Statistica Document Management System (SDMS) Requirements

Dell Statistica. Statistica Document Management System (SDMS) Requirements Dell Statistica Statistica Document Management System (SDMS) Requirements 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Synology DiskStation

Synology DiskStation Synology DiskStation MIB Guide 2013-11-4 1 United States and other countries. rights which vary from state to state. Synology Inc. 2013 Synology Inc. Other products and company names mentioned herein are

More information

Copy Tool For Dynamics CRM 2013

Copy Tool For Dynamics CRM 2013 Copy Tool For Dynamics CRM 2013 Page 1 of 15 Copy Tool 2013 Copyright Warranty disclaimer Limitation of liability License agreement Copyright 2013 Dynamics Professional Solutions. All rights reserved.

More information

Cellular Best Practices Guide

Cellular Best Practices Guide Cellular Best Practices Guide Contents About Creating Efficient Cellular Apps 4 Cellular Processors: Interface to the Cellular Network 5 Cellular Data Is Expensive 5 A Device Has an Application Processor

More information

Spotlight Management Pack for SCOM

Spotlight Management Pack for SCOM Spotlight Management Pack for SCOM User Guide March 2015 The Spotlight Management Pack for SCOM is used to display data from alarms raised by Spotlight on SQL Server Enterprise in SCOM (System Center Operations

More information

Luminate CRM New Features Guide

Luminate CRM New Features Guide Luminate CRM New Features Guide 6/18/2013 Luminate CRM v11 New Features Guide US 2013 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means,

More information

Nokia Internet Modem User Guide

Nokia Internet Modem User Guide Nokia Internet Modem User Guide 9219840 Issue 1 EN 2010 Nokia. All rights reserved. Nokia, Nokia Connecting People and Nokia Original Accessories logo are trademarks or registered trademarks of Nokia Corporation.

More information

BES10 Self-Service. Version: 10.2. User Guide

BES10 Self-Service. Version: 10.2. User Guide BES10 Self-Service Version: 10.2 User Guide Published: 2014-09-10 SWD-20140908171306471 Contents 1 BES10 Self-Service overview... 4 2 Log in to BES10 Self-Service... 5 3 Activating your device...6 Create

More information

Security Analytics Engine 1.0. Help Desk User Guide

Security Analytics Engine 1.0. Help Desk User Guide 2015 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or nondisclosure agreement.

More information

Self Help Guides. Setup Exchange Email with Outlook

Self Help Guides. Setup Exchange Email with Outlook Self Help Guides Setup Exchange Email with Outlook Setting up Exchange Email Connection This document is to be used as a guide to setting up an Exchange Email connection with Outlook; 1. Microsoft Outlook

More information

ANZ TRANSACTIVE MOBILE for ipad

ANZ TRANSACTIVE MOBILE for ipad ANZ TRANSACTIVE MOBILE for ipad SIMPLIFYING AND CONNECTING YOUR TRANSACTION BANKING ACROSS AUSTRALIA AND NEW ZEALAND QUICK REFERENCE GUIDE May 2014 GETTING STARTED Please ensure your ANZ Transactive Administrator

More information

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure for SSO to SAP NetWeaver using SAML 2.0

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure for SSO to SAP NetWeaver using SAML 2.0 Dell One Identity Cloud Access Manager 8.0.1 - How to Configure for SSO to SAP NetWeaver using SAML 2.0 May 2015 About this guide Prerequisites and requirements NetWeaver configuration Legal notices About

More information

New Features and Enhancements

New Features and Enhancements Dell Migration Manager for SharePoint 4.7 Build number: 4.7.20141207 December 9, 2014 These release notes provide information about the Dell Migration Manager for SharePoint release. New Features and Enhancements

More information

Object Level Authentication

Object Level Authentication Toad Intelligence Central Version 2.5 New in This Release Wednesday, 4 March 2015 New features in this release of Toad Intelligence Central: Object level authentication - Where authentication is required

More information

Microsoft Dynamics GP. SmartList Builder User s Guide With Excel Report Builder

Microsoft Dynamics GP. SmartList Builder User s Guide With Excel Report Builder Microsoft Dynamics GP SmartList Builder User s Guide With Excel Report Builder Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility

More information

Microsoft Dynamics GP. Payroll Connect

Microsoft Dynamics GP. Payroll Connect Microsoft Dynamics GP Payroll Connect Copyright Copyright 2005 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting

More information

Dell Statistica Document Management System (SDMS) Installation Instructions

Dell Statistica Document Management System (SDMS) Installation Instructions Dell Statistica Document Management System (SDMS) Installation Instructions 2015 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Organized, Hybridized Network Monitoring

Organized, Hybridized Network Monitoring Organized, Hybridized Network Monitoring Use a combination of technologies and organizational techniques to master complex network monitoring Abstract In the world of network monitoring, you re basically

More information

C. System Requirements. Apple Software is supported only on Apple-branded hardware that meets specified system requirements as indicated by Apple.

C. System Requirements. Apple Software is supported only on Apple-branded hardware that meets specified system requirements as indicated by Apple. ENGLISH APPLE INC. SOFTWARE LICENSE AGREEMENT FOR APPLE STORE APPLICATION PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ("LICENSE") CAREFULLY BEFORE USING THE APPLE SOFTWARE. BY USING THE APPLE SOFTWARE,

More information

ChangeAuditor 5.6. For Windows File Servers Event Reference Guide

ChangeAuditor 5.6. For Windows File Servers Event Reference Guide ChangeAuditor 5.6 For Windows File Servers Event Reference Guide 2011 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

RedBlack CyBake Online Customer Service Desk

RedBlack CyBake Online Customer Service Desk RedBlack CyBake Online Customer Service Desk Publication Date: June 2014 Copyright Copyright 2014 RedBlack Software Ltd. All rights reserved. Complying with all applicable copyright laws is the responsibility

More information

CRM Form to Web. Internet Lead Capture. Product Registration Instructions VERSION 1.0 DATE PREPARED: 1/1/2013

CRM Form to Web. Internet Lead Capture. Product Registration Instructions VERSION 1.0 DATE PREPARED: 1/1/2013 CRM Form to Web Internet Lead Capture Product Registration Instructions VERSION 1.0 DATE PREPARED: 1/1/2013 DEVELOPMENT: BRITE GLOBAL, INC. 2013 Brite Global, Incorporated. All rights reserved. The information

More information

formerly Help Desk Authority 9.1.3 HDAccess Administrator Guide

formerly Help Desk Authority 9.1.3 HDAccess Administrator Guide formerly Help Desk Authority 9.1.3 HDAccess Administrator Guide 2 Contacting Quest Software Email: Mail: Web site: info@quest.com Quest Software, Inc. World Headquarters 5 Polaris Way Aliso Viejo, CA 92656

More information

The National Library of Ireland Terms of Use of Material made available on registers.nli.ie

The National Library of Ireland Terms of Use of Material made available on registers.nli.ie The National Library of Ireland Terms of Use of Material made available on registers.nli.ie PLEASE READ THE FOLLOWING TERMS AND CONDITIONS CAREFULLY. THESE SET OUT THE BASIS UPON WHICH YOU ARE PERMITTED

More information

TERMS OF USE 1. Definitions

TERMS OF USE 1. Definitions TERMS OF USE 1. Definitions This website (website) is owned and operated by BATS Trading Limited a company applying to be authorised and regulated by the Financial Services Authority, whose registered

More information

Web Site Hosting Service Agreement

Web Site Hosting Service Agreement Web Site Hosting Service Agreement Updated April, 2015 The following agreement is between Softext Publishing Inc. ( SOFTEXT ) of 954 1st Ave West, Owen Sound ON, Canada and You ( Client ). WHEREAS, SOFTEXT

More information

Foglight. Managing Java EE Systems Supported Platforms and Servers Guide

Foglight. Managing Java EE Systems Supported Platforms and Servers Guide Foglight Managing Java EE Systems Supported Platforms and Servers Guide 2013 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

The Raiser s Edge Mobile Event Management Application Guide

The Raiser s Edge Mobile Event Management Application Guide The Raiser s Edge Mobile Event Management Application Guide 072613 2013 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic,

More information

Dell Unified Communications Command Suite - Diagnostics 8.0. Data Recorder User Guide

Dell Unified Communications Command Suite - Diagnostics 8.0. Data Recorder User Guide Dell Unified Communications Command Suite - Diagnostics 8.0 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

4.0. Offline Folder Wizard. User Guide

4.0. Offline Folder Wizard. User Guide 4.0 Offline Folder Wizard User Guide Copyright Quest Software, Inc. 2007. All rights reserved. This guide contains proprietary information, which is protected by copyright. The software described in this

More information

Xcode Source Management Guide. (Legacy)

Xcode Source Management Guide. (Legacy) Xcode Source Management Guide (Legacy) Contents Introduction 5 Organization of This Document 5 See Also 6 Source Management Overview 7 Source Control Essentials 7 Snapshots 8 Managing Source in Xcode 8

More information

AGREEMENT BETWEEN USER AND Caduceon Environmental Laboratories Customer Portal

AGREEMENT BETWEEN USER AND Caduceon Environmental Laboratories Customer Portal Terms of Use AGREEMENT BETWEEN USER AND Caduceon Environmental Laboratories Customer Portal The Caduceon Environmental Laboratories Customer Portal Web Site is comprised of various Web pages operated by

More information

PrinterOn Embedded Application For Samsung Printers and MFPs

PrinterOn Embedded Application For Samsung Printers and MFPs PrinterOn Embedded Application For Samsung Printers and MFPs Table of Contents 1. Introduction... 3 2. Setup and Service Prerequisites... 4 3. How to Purchase the PrinterOn Service... 5 4. How to install

More information

Email Track and Trace. Administration Guide

Email Track and Trace. Administration Guide Administration Guide Track and Trace Administration Guide Documentation version: 1.0 Legal Notice Legal Notice Copyright 2013 Symantec Corporation. All rights reserved. Symantec, the Symantec Logo, the

More information

PrinterOn Mobile App for ios and Android

PrinterOn Mobile App for ios and Android PrinterOn Mobile App for ios and Android User Guide Version 3.4 Contents Chapter 1: Getting started... 4 Features of the PrinterOn Mobile App... 4 Support for PrinterOn Secure Release Anywhere printer

More information

Dell InTrust 11.0. Preparing for Auditing and Monitoring Microsoft IIS

Dell InTrust 11.0. Preparing for Auditing and Monitoring Microsoft IIS Preparing for Auditing and Monitoring Microsoft IIS 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

Dell One Identity Cloud Access Manager 8.0.1 - SonicWALL Integration Overview

Dell One Identity Cloud Access Manager 8.0.1 - SonicWALL Integration Overview Dell One Identity Cloud Access Manager 8.0.1 - SonicWALL Integration Overview May 2015 Overview Functional highlights Functional details Legal notices Overview Support for Dell SonicWALL malware detection

More information

Self Help Guides. Create a New User in a Domain

Self Help Guides. Create a New User in a Domain Self Help Guides Create a New User in a Domain Creating Users & Groups This document is to be used as a guide to creating users and/or groups in a Domain Server environment; 1. Windows Server Domain exists,

More information

Dell Statistica 13.0. Statistica Enterprise Installation Instructions

Dell Statistica 13.0. Statistica Enterprise Installation Instructions Dell Statistica 13.0 2015 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or

More information

itunes Connect Payments and Financial Reports Guide v5

itunes Connect Payments and Financial Reports Guide v5 itunes Connect Payments and Financial Reports Guide v5 apple 2015-02-16 Apple Inc. 2015 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted,

More information

Symantec Critical System Protection 5.2.9 Agent Guide

Symantec Critical System Protection 5.2.9 Agent Guide Symantec Critical System Protection 5.2.9 Agent Guide Symantec Critical System Protection Agent Guide The software described in this book is furnished under a license agreement and may be used only in

More information

Dell One Identity Cloud Access Manager 8.0 - How To Deploy Cloud Access Manager in a Virtual Private Cloud

Dell One Identity Cloud Access Manager 8.0 - How To Deploy Cloud Access Manager in a Virtual Private Cloud Dell One Identity Cloud Access Manager 8.0 - How To Deploy Cloud Access Manager in a Virtual Private Cloud February 2015 This guide describes how to deploy Dell One Identity Cloud Access Manager within

More information

DATA GOVERNANCE EDITION

DATA GOVERNANCE EDITION Quest One Identity Manager DATA GOVERNANCE EDITION 6.1 What s New 2013 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Dell InTrust 11.0. Preparing for Auditing Microsoft SQL Server

Dell InTrust 11.0. Preparing for Auditing Microsoft SQL Server 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or nondisclosure agreement.

More information

ChangeAuditor 6.0 For Windows File Servers. Event Reference Guide

ChangeAuditor 6.0 For Windows File Servers. Event Reference Guide ChangeAuditor 6.0 For Windows File Servers Event Reference Guide 2013 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Symantec Mobile Management 7.2 MR1Quick-start Guide

Symantec Mobile Management 7.2 MR1Quick-start Guide Symantec Mobile Management 7.2 MR1Quick-start Guide Symantec Mobile Management 7.2 MR1 Quick-start Guide The software described in this book is furnished under a license agreement and may be used only

More information

Oracle CRM On Demand Connected Mobile Sales Administration Guide. Version 1.0.3 March 2012

Oracle CRM On Demand Connected Mobile Sales Administration Guide. Version 1.0.3 March 2012 Oracle CRM On Demand Connected Mobile Sales Administration Guide March 2012 Copyright 2005, 2012 Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

How to Deploy Models using Statistica SVB Nodes

How to Deploy Models using Statistica SVB Nodes How to Deploy Models using Statistica SVB Nodes Abstract Dell Statistica is an analytics software package that offers data preparation, statistics, data mining and predictive analytics, machine learning,

More information

Compatibility Matrix. VPN Authentication by BlackBerry. Version 1.7.1

Compatibility Matrix. VPN Authentication by BlackBerry. Version 1.7.1 Compatibility Matrix VPN Authentication by BlackBerry Version 1.7.1 Published: 2015-07-09 SWD-20150709134854714 Contents Introduction... 4 Legend...5 VPN Authentication server... 6 Operating system...6

More information

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

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

More information

COM Port Stress Test

COM Port Stress Test COM Port Stress Test COM Port Stress Test All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

More information

Quick Connect Express for Active Directory

Quick Connect Express for Active Directory Quick Connect Express for Active Directory Version 5.2 Quick Start Guide 2012 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in

More information

AvePoint CRM Migration Manager for Microsoft Dynamics CRM. Release Notes

AvePoint CRM Migration Manager for Microsoft Dynamics CRM. Release Notes AvePoint CRM Migration Manager for Microsoft Release Notes AvePoint CRM Migration Manager 3.1.1 for Microsoft Release Date: July 16, 2014 Required Minimum Version for Direct Update New License Required?

More information

User Guide. BES12 Self-Service

User Guide. BES12 Self-Service User Guide BES12 Self-Service Published: 2016-01-27 SWD-20160127153905522 Contents About BES12 Self-Service...4 Log in to BES12 Self-Service... 4 Forgot your login password?... 4 Change your login password...5

More information

Inject Design General Terms & Conditions

Inject Design General Terms & Conditions Inject Design General Terms & Conditions Latest Revision: April 2015 www.injectdesign.co.nz Content No. Contents Page No. 00 01 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 General Terms & Conditions

More information

CA Service Desk Manager - Mobile Enabler 2.0

CA Service Desk Manager - Mobile Enabler 2.0 This Document is aimed at providing information about the (CA SDM) Mobile Enabler and mobile capabilities that is typically not available in the product documentation. This is a living document and will

More information

Quartz Legal Terms and Conditions

Quartz Legal Terms and Conditions Quartz Legal Terms and Conditions 1. USE OF THIS WEBSITE: This website is owned and operated by Domaine Pinnacle Inc. (collectively hereafter "Site Owner"). Your use of this website is subject to the following

More information

Partners in Care Welch Allyn Connex Software Development Kit License Agreement

Partners in Care Welch Allyn Connex Software Development Kit License Agreement This Software Development Kit End User ( Agreement ) is between Welch Allyn, Inc. ( Welch Allyn ) and the Customer identified in the purchase order ( Customer or You ), and it governs the Software Development

More information

Computer Information Concepts. CIC Data Health Check 3.0

Computer Information Concepts. CIC Data Health Check 3.0 Computer Information Concepts CIC Data Health Check 3.0 Copyright 2012 Computer information Concepts, Inc. (CIC) All Rights Reserved. This document contains proprietary information, which is protected

More information

Website TERMS OF USE AND CONDITIONS

Website TERMS OF USE AND CONDITIONS Website TERMS OF USE AND CONDITIONS Welcome to the Adult & Pediatric Dermatology, p.c. ( APDerm ) website. These Terms of Use and Conditions ( Terms ) govern your use of the APDerm ( our ) website ( Site

More information

How To Run Qqripper On A Cd Or Mp3 Player (For Pc)

How To Run Qqripper On A Cd Or Mp3 Player (For Pc) QQripper The Autoloader Software Automates Music Disc Ripping with Windows Media Player or itunes For automated ripping of a stack of music CD; Convert audio tracks from music discs to hard disk or MP3

More information

AMERICAN INSTITUTES FOR RESEARCH OPEN SOURCE SOFTWARE LICENSE

AMERICAN INSTITUTES FOR RESEARCH OPEN SOURCE SOFTWARE LICENSE AMERICAN INSTITUTES FOR RESEARCH OPEN SOURCE SOFTWARE LICENSE 1. DEFINITIONS. 1.1. "Contributor" means each individual or entity that creates or contributes to the creation of Modifications. 1.2. "Contributor

More information

CONSULTING SERVICES AGREEMENT

CONSULTING SERVICES AGREEMENT CONSULTING SERVICES AGREEMENT THIS AGREEMENT ("Agreement") is entered into on / /, between SCWOA ("Consultant"), a CA corporation with its principal place of business located at PO Box 1195, Pacifica,

More information

TIBCO MFT BusinessWorks MFT Palette

TIBCO MFT BusinessWorks MFT Palette TIBCO MFT BusinessWorks MFT Palette This is a TIBCO document from Proginet Sales & Presales Group. Consulting Services This document provides a general overview of using the MFT palette. It assumes that

More information

Ricoh HotSpot. Printing App. User s Guide. HotSpot Printing App supports:

Ricoh HotSpot. Printing App. User s Guide. HotSpot Printing App supports: Ricoh HotSpot Printing App Mobile Printing Solution HotSpot Printing App supports: HSPA_UQR_April192013_V1 - Apple ios devices - Android devices - BlackBerry smartphone - BlackBerry PlayBook Printing App

More information

Compatibility Matrix BES12. September 16, 2015

Compatibility Matrix BES12. September 16, 2015 Compatibility Matrix BES12 September 16, 2015 Published: 2015-09-16 SWD-20150916153710116 Contents Introduction... 4 Legend...5 BES12 server... 6 Operating system...6 Database server...6 Browser... 8 Mobile

More information

formerly Help Desk Authority 9.1.3 HDAccess User Manual

formerly Help Desk Authority 9.1.3 HDAccess User Manual formerly Help Desk Authority 9.1.3 HDAccess User Manual 2 Contacting Quest Software Email: Mail: Web site: info@quest.com Quest Software, Inc. World Headquarters 5 Polaris Way Aliso Viejo, CA 92656 USA

More information

Dell InTrust 11.0. Preparing for Auditing CheckPoint Firewall

Dell InTrust 11.0. Preparing for Auditing CheckPoint Firewall 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or nondisclosure agreement.

More information