django-project-portfolio Documentation
|
|
|
- Kelly Roberts
- 9 years ago
- Views:
Transcription
1 django-project-portfolio Documentation Release 1.2 James Bennett June 05, 2016
2
3 Contents 1 Documentation contents 3 Python Module Index 9 i
4 ii
5 django-project-portfolio is a simple Django application for displaying information about software projects you maintain. Models are included for storing information about projects, versions of projects, the status of each release and associated metadata including licensing and location of packages, source code, documentation and continuous integration. Built-in views are provided for basic display of this information. Contents 1
6 2 Contents
7 CHAPTER 1 Documentation contents 1.1 Installation guide Before installing django-project-portfolio, you ll need to have a copy of Django already installed. For information on obtaining and installing Django, consult the Django download page, which offers convenient packaged downloads and installation instructions. The 1.2 release of django-project-portfolio supports Django 1.8 and 1.9, on any of Python version supported by those versions of Django: Django 1.8 suports Python 2.7, 3.2, 3.3, 3.4 and 3.5. Django 1.9 supports Python 2.7, 3.4 and 3.5. Important: Python 3.2 Although Django 1.8 supports Python 3.2, and django-project-portfolio 1.2 supports it, many Python libraries supporting Python 3 impose a minimum requirement of Python 3.3 (due to conveniences added in Python 3.3 which make supporting Python 2 and 3 in the same codebase much simpler). As a result, use of Python 3.2 is discouraged; Django 1.9 has already dropped support for it, and a future release of django-project-portfolio will likely drop Python 3.2 support as well Normal installation The preferred method of installing django-project-portfolio is via pip, the standard Python packageinstallation tool. If you don t have pip, instructions are available for how to obtain and install it. Once you have pip, simply type: pip install django-project-portfolio Manual installation It s also possible to install django-project-portfolio manually. To do so, obtain the latest packaged version from the listing on the Python Package Index. Unpack the.tar.gz file, and run: python setup.py install 3
8 Once you ve installed django-project-portfolio, you can verify successful installation by opening a Python interpreter and typing import projects. If the installation was successful, you ll simply get a fresh Python prompt. If you instead see an ImportError, check the configuration of your install tools and your Python import path to ensure django-project-portfolio installed into a location Python can import from Installing from a source checkout The development repository for django-project-portfolio is at < Presuming you have git installed, you can obtain a copy of the repository by typing: git clone From there, you can use normal git commands to check out the specific revision you want, and install it using python setup.py install Basic use You ll need to add django-project-portfolio to your Django-based project; since this application makes use of a custom signal which needs to be set up, it s done via a Django AppConfig subclass. So rather than adding projects to your INSTALLED_APPS setting, instead add projects.apps.projectsconfig, like so: INSTALLED_APPS = [ #... other apps here 'projects.apps.projectsconfig', ] Then run manage.py migrate to set up the required database tables, and you can start adding instances of the provided models though the Django admin interface, and wiring up the provided views in your URLconf. 1.2 Models for software projects django-project-portfolio provides three models which work together to describe software projects: Project represents a software project, Version represents a particular version of a project, and License represents the license under which a particular version is released. class projects.models.license The license under which a particular Version is released. This is tied to Version rather than Project in order to allow the possibility of relicensing from one version to another. A License has three fields, all of which are required: name CharField(max_length=255) The name of the license (for example, GPLv2 or MIT ). slug SlugField (prepopulated from name) A short, descriptive URL-safe string to identify the license. Currently there are no views in django-project-portfolio which make use of this, but the field is provided so that custom views can make use of it. 4 Chapter 1. Documentation contents
9 link URLField A link to an online version of the license s terms, or to a description of the license. For open-source licenses, individual license pages in the OSI license list are useful values for this field. class projects.models.project A software project. Four fields (all required) provide basic metadata about the project: name CharField(max_length=255) The name of the project. slug SlugField (prepopulated from name) A short, descriptive URL-safe string to identify the project. description TextField A free-form text description of the project. status IntegerField with choices Indicates whether the project is public or not. May be expanded to include additional options in future versions, hence the implementation as an IntegerField with choices instead of a BooleanField. Valid choices are: PUBLIC_STATUS Indicates a project which is public; this will cause built-in views to list and display the project. HIDDEN_STATUS Indicates a project which is hidden; built-in views will not list or display the project. Four additional fields, all optional, allow additional useful data about the project to be specified: package_link URLField URL of a location where packages for this project can be found. repository_link URLField URL of the project s source-code repository. documentation_link URLField URL of the project s online documentation. tests_link URLField URL of the project s online testing/continuous integration status. One utility method is also defined on instances of Project: latest_version() Returns the latest Version of this project (as defined by the is_latest field on Version), or None if no such version exists Models for software projects 5
10 Finally, the default manager for Project defines one custom query method, public(), which returns only instances whose status is PUBLIC_STATUS. This is implemented via a custom QuerySet subclass, so the method will be available on any QuerySet obtained from Project as well. class projects.models.version A particular version of a software project. There are six fields, all of which are required: project ForeignKey to Project The project this version corresponds to. version CharField(max_length=255) A string representing the version s identifier. This is deliberately freeform to support different types of versioning systems, but be aware that it will (with the built-in views) be used in URLs, so URL-safe strings are encouraged here. is_latest BooleanField Indicates whether this is the latest version of the project. When a Version is saved with is_latest=true, a post_save signal handler will toggle all other versions of that Project to is_latest=false. status IntegerField with choices The status of this version. Valid choices are (taken from the Python Package Index s status choices): PLANNING_STATUS This is an early/planning version. PRE_ALPHA_STATUS This is a pre-alpha version. ALPHA_STATUS This is an alpha version. BETA_STATUS This is a beta version. STABLE_STATUS This is a stable version. license ForeignKey to License The license under which this version is released. release_date The date on which this version was released. Additionally, the default manager for Version defines one custom query method, stable(), which returns only instances whose status is STABLE_STATUS. This is implemented via a custom QuerySet subclass, so the method will be available on any QuerySet obtained from Version as well, and also on any related QuerySet obtained through an instance of Project. 6 Chapter 1. Documentation contents
11 1.3 Views for software projects django-project-portfolio provides four built-in views for displaying information about software projects. Though not all possible views of the data are included here, the built-in views strive to cover the common cases. class projects.views.projectdetail Subclass of Django s generic DetailView. Detail view of a Project. Has one required argument which must be captured in the URL: slug The slug of the project. By default, this view will only display projects whose status is PUBLIC_STATUS. class projects.views.projectlist Subclass of Django s generic ListView. List of Project instances. By default, this view will only display projects whose status is PUBLIC_STATUS. class projects.views.versiondetail Subclass of Django s generic DetailView. Detail view of a Version. Has two required arguments which must be captured in the URL: project_slug slug The slug of the Project with which this Version is associated. The version of the Version. By default, only versions associated with a Project whose status is PUBLIC_STATUS can be displayed. class projects.views.latestversionlist Subclass of django.views.generic.listview. List of the latest Version of each public (i.e., status is PUBLIC_STATUS) Project Views for software projects 7
12 8 Chapter 1. Documentation contents
13 Python Module Index p projects.models, 4 projects.views, 6 9
14 10 Python Module Index
15 Index A ALPHA_STATUS (projects.models.version attribute), 6 B BETA_STATUS (projects.models.version attribute), 6 D description (projects.models.project attribute), 5 documentation_link (projects.models.project attribute), 5 H HIDDEN_STATUS (projects.models.project attribute), 5 I is_latest (projects.models.version attribute), 6 L latest_version() (projects.models.project method), 5 LatestVersionList (class in projects.views), 7 License (class in projects.models), 4 license (projects.models.version attribute), 6 link (projects.models.license attribute), 4 N name (projects.models.license attribute), 4 name (projects.models.project attribute), 5 P package_link (projects.models.project attribute), 5 PLANNING_STATUS (projects.models.version attribute), 6 PRE_ALPHA_STATUS (projects.models.version attribute), 6 Project (class in projects.models), 5 project (projects.models.version attribute), 6 ProjectDetail (class in projects.views), 7 ProjectList (class in projects.views), 7 projects.models (module), 4 projects.views (module), 6 PUBLIC_STATUS (projects.models.project attribute), 5 R release_date (projects.models.version attribute), 6 repository_link (projects.models.project attribute), 5 S slug (projects.models.license attribute), 4 slug (projects.models.project attribute), 5 STABLE_STATUS (projects.models.version attribute), 6 status (projects.models.project attribute), 5 status (projects.models.version attribute), 6 T tests_link (projects.models.project attribute), 5 V Version (class in projects.models), 6 version (projects.models.version attribute), 6 VersionDetail (class in projects.views), 7 11
django-cron Documentation
django-cron Documentation Release 0.3.5 Tivix Inc. September 28, 2015 Contents 1 Introduction 3 2 Installation 5 3 Configuration 7 4 Sample Cron Configurations 9 4.1 Retry after failure feature........................................
Django Two-Factor Authentication Documentation
Django Two-Factor Authentication Documentation Release 1.3.1 Bouke Haarsma April 05, 2016 Contents 1 Requirements 3 1.1 Django.................................................. 3 1.2 Python..................................................
latest Release 0.2.6
latest Release 0.2.6 August 19, 2015 Contents 1 Installation 3 2 Configuration 5 3 Django Integration 7 4 Stand-Alone Web Client 9 5 Daemon Mode 11 6 IRC Bots 13 7 Bot Events 15 8 Channel Events 17 9
Django FTP server Documentation
Django FTP server Documentation Release 0.3.5 Shinya Okano May 12, 2016 Contents 1 Overview 3 1.1 Origin................................................... 3 1.2 Getting Started..............................................
SagePay payment gateway package for django-oscar Documentation
SagePay payment gateway package for django-oscar Documentation Release 0.1.1 Glyn Jackson October 10, 2014 Contents 1 Installation and Configuration Guide 3 1.1 Installing Package............................................
django-gcm Documentation
django-gcm Documentation Release 0.9.3 Adam Bogdal August 23, 2015 Contents 1 Quickstart 3 2 Sending messages 5 2.1 Multicast message............................................ 5 3 Signals 7 4 Extending
Magento OpenERP Integration Documentation
Magento OpenERP Integration Documentation Release 2.0dev Openlabs Technologies & Consulting (P) Limited September 11, 2015 Contents 1 Introduction 3 1.1 Installation................................................
Memopol Documentation
Memopol Documentation Release 1.0.0 Laurent Peuch, Mindiell, Arnaud Fabre January 26, 2016 Contents 1 User guide 3 1.1 Authentication in the admin backend.................................. 3 1.2 Managing
Django FTP Deploy Documentation
Django FTP Deploy Documentation Release 2.0 Lukasz Pakula November 12, 2014 Contents 1 User Guide 3 1.1 Installation................................................ 3 1.2 Usage...................................................
The Django web development framework for the Python-aware
The Django web development framework for the Python-aware Bill Freeman PySIG NH September 23, 2010 Bill Freeman (PySIG NH) Introduction to Django September 23, 2010 1 / 18 Introduction Django is a web
Using GitHub for Rally Apps (Mac Version)
Using GitHub for Rally Apps (Mac Version) SOURCE DOCUMENT (must have a rallydev.com email address to access and edit) Introduction Rally has a working relationship with GitHub to enable customer collaboration
Trytond Magento Documentation
Trytond Magento Documentation Release 3.4.11.0 Openlabs Technologies & Consulting (P) Limited June 23, 2015 Contents 1 Introduction 3 2 Installation 5 2.1 Installation of Magento Core API extension...............................
Ettema Lab Information Management System Documentation
Ettema Lab Information Management System Documentation Release 0.1 Ino de Bruijn, Lionel Guy November 28, 2014 Contents 1 Pipeline Design 3 2 Database design 5 3 Naming Scheme 7 3.1 Complete description...........................................
citools Documentation
citools Documentation Release 0.1 Centrum Holdings September 20, 2015 Contents 1 On (continuous) versioning 3 2 Meta packages 5 3 (Django) web environment 7 4 Build process 9 5 Testing 11 6 Working with
Nupic Web Application development
Nupic Web Application development Contents Focus in... 1 Why to build a Web Application?... 1 The common data flow schema... 1 Tools... 2 Preparations... 2 Download/Install Django... 2 Check if Django
Advanced Tornado TWENTYONE. 21.1 Advanced Tornado. 21.2 Accessing MySQL from Python LAB
21.1 Advanced Tornado Advanced Tornado One of the main reasons we might want to use a web framework like Tornado is that they hide a lot of the boilerplate stuff that we don t really care about, like escaping
Source Code Management for Continuous Integration and Deployment. Version 1.0 DO NOT DISTRIBUTE
Source Code Management for Continuous Integration and Deployment Version 1.0 Copyright 2013, 2014 Amazon Web Services, Inc. and its affiliates. All rights reserved. This work may not be reproduced or redistributed,
Flask-SSO Documentation
Flask-SSO Documentation Release 0.3.0 CERN July 30, 2015 Contents 1 Contents 3 1.1 Installation................................................ 3 1.2 Quickstart................................................
Authorize Sauce Documentation
Authorize Sauce Documentation Release 0.4.1 Jeff Schenck March 19, 2016 Contents 1 Saucy Features 3 2 Contents 5 2.1 Installation................................................ 5 2.2 Introduction...............................................
Django on AppEngine Documentation
Django on AppEngine Documentation Release Sebastian Pawluś October 18, 2014 Contents 1 Installation 3 1.1 Download latest Google AppEngine SDK................................ 3 1.2 Install Django..............................................
GE Intelligent Platforms. Activating Licenses Online Using a Local License Server
GE Intelligent Platforms Activating Licenses Online Using a Local License Server January 2016 Introduction: This document is an introduction to activating licenses online using a GE-IP Local License Server.
django-helpdesk Documentation
django-helpdesk Documentation Release 0.1 Ross Poulton + Contributors May 18, 2016 Contents 1 Contents 3 1.1 License.................................................. 3 1.2 Installation................................................
Fritz Speed Documentation
Fritz Speed Documentation Release 0.1.1 Thomas Westfeld February 04, 2016 Contents 1 What it does 1 2 How It Works 3 3 Contents 5 3.1 Installation................................................ 5 3.2
monoseq Documentation
monoseq Documentation Release 1.2.1 Martijn Vermaat July 16, 2015 Contents 1 User documentation 3 1.1 Installation................................................ 3 1.2 User guide................................................
Git - Working with Remote Repositories
Git - Working with Remote Repositories Handout New Concepts Working with remote Git repositories including setting up remote repositories, cloning remote repositories, and keeping local repositories in-sync
depl Documentation Release 0.0.1 depl contributors
depl Documentation Release 0.0.1 depl contributors December 19, 2013 Contents 1 Why depl and not ansible, puppet, chef, docker or vagrant? 3 2 Blog Posts talking about depl 5 3 Docs 7 3.1 Installation
Effective Django. Build 2015.10.18. Nathan Yergler
Effective Django Build 2015.10.18 Nathan Yergler 18 October 2015 CONTENTS 1 Getting Started 3 1.1 Your Development Environment..................................... 3 1.2 Setting Up Your Environment......................................
VOC Documentation. Release 0.1. Russell Keith-Magee
VOC Documentation Release 0.1 Russell Keith-Magee February 07, 2016 Contents 1 About VOC 3 1.1 The VOC Developer and User community................................ 3 1.2 Frequently Asked Questions.......................................
Rapid Website Deployment With Django, Heroku & New Relic
TUTORIAL Rapid Website Deployment With Django, Heroku & New Relic by David Sale Contents Introduction 3 Create Your Website 4 Defining the Model 6 Our Views 7 Templates 7 URLs 9 Deploying to Heroku 10
Smarter Balanced Reporting (RFP 15) Developer Guide
Smarter Balanced Reporting (RFP 15) Prepared for: by: Page 1 of 17 Smarter Balanced Reporting (RFP 15) Approvals Representing Date Author Status Consortium Joe Willhoft Consortium 2014.09.24 Brandt Redd
flask-mail Documentation
flask-mail Documentation Release 0.9.1 Dan Jacob February 16, 2016 Contents 1 Links 3 2 Installing Flask-Mail 5 3 Configuring Flask-Mail 7 4 Sending messages 9 5 Bulk emails 11 6 Attachments 13 7 Unit
Continuous Delivery on AWS. Version 1.0 DO NOT DISTRIBUTE
Continuous Version 1.0 Copyright 2013, 2014 Amazon Web Services, Inc. and its affiliates. All rights reserved. This work may not be reproduced or redistributed, in whole or in part, without prior written
pyownet Documentation
pyownet Documentation Release 0.10.0 Stefano Miccoli March 30, 2016 Contents 1 Contents 3 1.1 Introduction............................................. 3 1.2 Installation..............................................
Data Migration from Magento 1 to Magento 2 Including ParadoxLabs Authorize.Net CIM Plugin Last Updated Jan 4, 2016
Data Migration from Magento 1 to Magento 2 Including ParadoxLabs Authorize.Net CIM Plugin Last Updated Jan 4, 2016 This guide was contributed by a community developer for your benefit. Background Magento
Magento Search Extension TECHNICAL DOCUMENTATION
CHAPTER 1... 3 1. INSTALLING PREREQUISITES AND THE MODULE (APACHE SOLR)... 3 1.1 Installation of the search server... 3 1.2 Configure the search server for usage with the search module... 7 Deploy the
ScreenBeam. Configurator for. Windows 8.1. User Manual V1.2
ScreenBeam Configurator for Windows 8.1 User Manual V1.2 1 Using the Utility with Windows 8.1 This guide describes installing and using the ScreenBeam Configurator for devices using Windows 8.1. Installing
Using Microsoft Windows Authentication for Microsoft SQL Server Connections in Data Archive
Using Microsoft Windows Authentication for Microsoft SQL Server Connections in Data Archive 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means
MyMoney Documentation
MyMoney Documentation Release 1.0 Yannick Chabbert June 20, 2016 Contents 1 Contents 3 1.1 Installation................................................ 3 1.1.1 Requirements..........................................
django-registration-redux Documentation
django-registration-redux Documentation Release 1.4 James Bennett June 24, 2016 Contents 1 Quick start guide 3 2 Release notes 7 3 Upgrade guide 9 4 The default backend 11 5 The simple (one-step) backend
AuShadha Documentation
AuShadha Documentation Release 0.1 Dr. Easwar T.R and others (see credits) October 17, 2015 Contents 1 Introduction to AuShadha Project 3 1.1 AuShadha (): Means medicine in Sanskrit................................
MarkLogic Server. Java Application Developer s Guide. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved.
Java Application Developer s Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-3, June, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Java Application
Configuration Manual Yahoo Cloud System Benchmark (YCSB) 24-Mar-14 SEECS-NUST Faria Mehak
Configuration Manual Yahoo Cloud System Benchmark (YCSB) 24-Mar-14 SEECS-NUST Faria Mehak Table of Contents 1 Introduction... 3 1.1 Purpose... 3 1.2 Product Information... 3 2 Installation Manual... 3
Writing standalone Qt & Python applications for Android
Writing standalone Qt & Python applications for Android Martin Kolman Red Hat & Faculty of Informatics, Masaryk University http://www.modrana.org/om2013 [email protected] 1 Overview Writing Android
System Center 2012 R2 SP1 Configuration Manager & Microsoft Intune
2015 System Center 2012 R2 SP1 Configuration Manager & Microsoft Intune DEPLOYING MICROSOFT OFFICE 365 PROFESSIONAL PLUS RONNI PEDERSEN & HANS CHRISTIAN ANDERSEN RONNIPEDERSEN.COM Microsoft MVP: Enterprise
How to install software applications in networks to remote computers
How to install software applications in networks to remote computers In this how-to tutorial we will explain in simple steps how you can install software application updates in network remotely to remote
Slides from INF3331 lectures - web programming in Python
Slides from INF3331 lectures - web programming in Python Joakim Sundnes & Hans Petter Langtangen Dept. of Informatics, Univ. of Oslo & Simula Research Laboratory October 2013 Programming web applications
Using Toaster in a Production Environment
Using Toaster in a Production Environment Alexandru Damian, David Reyna, Belén Barros Pena Yocto Project Developer Day ELCE 17 Oct 2014 Introduction Agenda: What is Toaster Toaster out of the box Toaster
ALERT installation setup
ALERT installation setup In order to automate the installation process of the ALERT system, the ALERT installation setup is developed. It represents the main starting point in installing the ALERT system.
Django Web Framework. Zhaojie Zhang CSCI5828 Class Presenta=on 03/20/2012
Django Web Framework Zhaojie Zhang CSCI5828 Class Presenta=on 03/20/2012 Outline Web frameworks Why python? Why Django? Introduc=on to Django An example of Django project Summary of benefits and features
Tuskar UI Documentation
Tuskar UI Documentation Release Juno Tuskar Team May 05, 2015 Contents 1 Tuskar UI 3 1.1 High-Level Overview.......................................... 3 1.2 Installation Guide............................................
Django MSSQL Documentation
Django MSSQL Documentation Release dev Django MSSQL authors April 25, 2012 CONTENTS i ii Provides an ADO based Django database backend for Microsoft SQL Server. CONTENTS 1 2 CONTENTS CHAPTER ONE WELCOME
How to set up SQL Source Control. The short guide for evaluators
How to set up SQL Source Control The short guide for evaluators Content Introduction Team Foundation Server & Subversion setup Git setup Setup without a source control system Making your first commit Committing
TUTORIAL ECLIPSE CLASSIC VERSION: 3.7.2 ON SETTING UP OPENERP 6.1 SOURCE CODE UNDER WINDOWS PLATFORM. by Pir Khurram Rashdi
TUTORIAL ON SETTING UP OPENERP 6.1 SOURCE CODE IN ECLIPSE CLASSIC VERSION: 3.7.2 UNDER WINDOWS PLATFORM by Pir Khurram Rashdi Web: http://www.linkedin.com/in/khurramrashdi Email: [email protected] By
Mobile 1.0 Extension Module for vtiger CRM 5.1.0
Mobile 1.0 Extension Module for vtiger CRM 5.1.0 Table of Contents About...3 Installation...3 Step 1: Open Module Manager...3 Step 2: Import Module...3 Step 3: Verify Import Details...4 Step 4: Finish...4
twilio-salesforce Documentation
twilio-salesforce Documentation Release 1.0 Twilio Inc. February 02, 2016 Contents 1 Installation 3 2 Getting Started 5 3 User Guide 7 4 Support and Development 27 i ii Get ready to unleash the power
MarkLogic Server. Connector for SharePoint Administrator s Guide. MarkLogic 8 February, 2015
Connector for SharePoint Administrator s Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents
Introducing Xcode Source Control
APPENDIX A Introducing Xcode Source Control What You ll Learn in This Appendix: u The source control features offered in Xcode u The language of source control systems u How to connect to remote Subversion
Module developer s tutorial
Module developer s tutorial Revision: May 29, 2011 1. Introduction In order to keep future updates and upgrades easy and simple, all changes to e-commerce websites built with LiteCommerce should be made
Mercury User Guide v1.1
Mercury User Guide v1.1 Tyrone Erasmus 2012-09-03 Index Index 1. Introduction... 3 2. Getting started... 4 2.1. Recommended requirements... 4 2.2. Download locations... 4 2.3. Setting it up... 4 2.3.1.
CPSC 491. Today: Source code control. Source Code (Version) Control. Exercise: g., no git, subversion, cvs, etc.)
Today: Source code control CPSC 491 Source Code (Version) Control Exercise: 1. Pretend like you don t have a version control system (e. g., no git, subversion, cvs, etc.) 2. How would you manage your source
DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER
White Paper DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER Abstract This white paper describes the process of deploying EMC Documentum Business Activity
UNIVERSITY OF CALIFORNIA Department of Electrical Engineering and Computer Sciences Computer Science Division. P. N. Hilfinger
UNIVERSITY OF CALIFORNIA Department of Electrical Engineering and Computer Sciences Computer Science Division CS 61B Fall 2012 P. N. Hilfinger Version Control and Homework Submission 1 Introduction Your
B&K Precision 1785B, 1786B, 1787B, 1788 Power supply Python Library
B&K Precision 1785B, 1786B, 1787B, 1788 Power supply Python Library Table of Contents Introduction 2 Prerequisites 2 Why a Library is Useful 3 Using the Library from Python 6 Conventions 6 Return values
How To Build An Intranet In Sensesnet.Com
Sense/Net 6 Evaluation Guide How to build a simple list-based Intranet? Contents 1 Basic principles... 4 1.1 Workspaces... 4 1.2 Lists... 4 1.3 Check-out/Check-in... 5 1.4 Version control... 5 1.5 Simple
Trend Micro KASEYA INTEGRATION GUIDE
Trend Micro KASEYA INTEGRATION GUIDE INTRODUCTION Trend Micro Worry-Free Business Security Services is a server-free security solution that provides protection anytime and anywhere for your business data.
AVOIDING THE GIT OF DESPAIR
AVOIDING THE GIT OF DESPAIR EMMA JANE HOGBIN WESTBY SITE BUILDING TRACK @EMMAJANEHW http://drupal.org/user/1773 Avoiding The Git of Despair @emmajanehw http://drupal.org/user/1773 www.gitforteams.com Local
Django-nonrel Documentation
Django-nonrel Documentation Release 0 Tom Brander October 18, 2015 Contents 1 Django-nonrel - NoSQL support for Django 3 1.1 Why Django on NoSQL......................................... 3 1.2 Documentation..............................................
Integrating Autotask Service Desk Ticketing with the Cisco OnPlus Portal
Integrating Autotask Service Desk Ticketing with the Cisco OnPlus Portal This Application Note provides instructions for configuring Apps settings on the Cisco OnPlus Portal and Autotask application settings
Content. Development Tools 2(63)
Development Tools Content Project management and build, Maven Version control, Git Code coverage, JaCoCo Profiling, NetBeans Static Analyzer, NetBeans Continuous integration, Hudson Development Tools 2(63)
TIBCO Spotfire Metrics Modeler User s Guide. Software Release 6.0 November 2013
TIBCO Spotfire Metrics Modeler User s Guide Software Release 6.0 November 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE
WESTERNACHER OUTLOOK E-MAIL-MANAGER OPERATING MANUAL
TABLE OF CONTENTS 1 Summary 3 2 Software requirements 3 3 Installing the Outlook E-Mail Manager Client 3 3.1 Requirements 3 3.1.1 Installation for trial customers for cloud-based testing 3 3.1.2 Installing
FEEG6002 - Applied Programming 3 - Version Control and Git II
FEEG6002 - Applied Programming 3 - Version Control and Git II Sam Sinayoko 2015-10-16 1 / 26 Outline Learning outcomes Working with a single repository (review) Working with multiple versions of a repository
MOOSE-Based Application Development on GitLab
MOOSE-Based Application Development on GitLab MOOSE Team Idaho National Laboratory September 9, 2014 Introduction The intended audience for this talk is developers of INL-hosted, MOOSE-based applications.
Oracle EXAM - 1Z0-102. Oracle Weblogic Server 11g: System Administration I. Buy Full Product. http://www.examskey.com/1z0-102.html
Oracle EXAM - 1Z0-102 Oracle Weblogic Server 11g: System Administration I Buy Full Product http://www.examskey.com/1z0-102.html Examskey Oracle 1Z0-102 exam demo product is here for you to test the quality
SharePoint 2013 Search Topologies Explained
SharePoint 2013 Search Topologies Explained Contents Search Topology Components... 2 Configuration... 5 Monitoring... 6 Documenting Search Topology... 7 Page 1 of 10 SharePoint 2013 Search Topologies Explained
Tivoli Endpoint Manager BigFix Dashboard
Tivoli Endpoint Manager BigFix Dashboard Helping you monitor and control your Deployment. By Daniel Heth Moran Version 1.1.0 http://bigfix.me/dashboard 1 Copyright Stuff This edition first published in
Access Manager 4.1 Service Pack 2 (4.1.2) supersedes Access Manager 4.1 Service Pack 1 Hotfix 1 (4.1.1 HF1).
Access Manager 4.1 Service Pack 2 Release Notes February 2016 Access Manager 4.1 Service Pack 2 (4.1.2) supersedes Access Manager 4.1 Service Pack 1 Hotfix 1 (4.1.1 HF1). For the list of software fixes
Team Foundation Server 2012 Installation Guide
Team Foundation Server 2012 Installation Guide Page 1 of 143 Team Foundation Server 2012 Installation Guide Benjamin Day [email protected] v1.0.0 November 15, 2012 Team Foundation Server 2012 Installation
How To Deploy Office 2016 With Office 2016 Deployment Tool
How to deploy Office 2016 using SCCM 2012 R2 In this article we will see how to deploy Office 2016 using SCCM 2012 R2. Along with Office 2016, Microsoft has released office 2016 deployment tool. The Office
32-Bit Workload Automation 5 for Windows on 64-Bit Windows Systems
32-Bit Workload Automation 5 for Windows on 64-Bit Windows Systems Overview 64-bit Windows Systems Modifying the Working Folder for Universal Server Components Applications Installed in the Windows System
Jenkins on Windows with StreamBase
Jenkins on Windows with StreamBase Using a Continuous Integration (CI) process and server to perform frequent application building, packaging, and automated testing is such a good idea that it s now a
Installation & User Guide
SharePoint List Filter Plus Web Part Installation & User Guide Copyright 2005-2011 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON
SharePoint Form Field Assistant SPFF. Form Manipulations. Getting Started. Hide
SharePoint Form Field Assistant Register Sign In CodePlex Home Search all CodePlex projects Home Downloads Discussions Issue Tracker Source Code Stats People License RSS View All Comments Print View Page
Using Microsoft Azure for Students
Using Microsoft Azure for Students Dive into Azure through Microsoft Imagine s free new offer and learn how to develop and deploy to the cloud, at no cost! To take advantage of Microsoft s cloud development
User Management Tool 1.6
User Management Tool 1.6 2014-12-08 23:32:48 UTC 2014 Citrix Systems, Inc. All rights reserved. Terms of Use Trademarks Privacy Statement Contents User Management Tool 1.6... 3 ShareFile User Management
Omgeo Central Trade Manager SM
Omgeo Central Trade Manager SM A DTCC Thomson Reuters Company www.omgeo.com Installing and Configuring Two Java Runtime Environments This document describes how to install and configure two Java Runtime
User Manual: ConPaaS Web Hosting Service
User Manual: ConPaaS Web Hosting Service 1 Cloud Front-end August 15, 2011 The cloud front-end provides an intuitive web-based user interface that allows users to register new accounts in order to start
How to move a SQL database from one server to another
How to move a SQL database from one server to another Guide is applicable to these products: * Lucid CoPS, Lucid Rapid, LASS 8-11, LASS 11-15, LADS Plus and Lucid Ability (v6.0x-n) * Lucid Exact v1.xx-n
Learn about OverDrive APIs and how they can benefit search, discovery and reporting services at your library. Contact: training@overdrive.
v.10012010 v.10042013 v.11012010 OverDrive, Inc. 2010 2013 Page 1 1 OverDrive APIs Learn about OverDrive APIs and how they can benefit search, discovery and reporting services at your library. Contact:
An overview of configuring WebEx for single sign-on. To configure the WebEx application for single-sign on from the cloud service (an overview)
Chapter 190 WebEx This chapter includes the following sections: "An overview of configuring WebEx for single sign-on" on page 190-1600 "Configuring WebEx for SSO" on page 190-1601 "Configuring WebEx in
Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials
Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials With Windows Server 2012 R2 Essentials in your business, it is important to centrally manage your workstations to ensure
Using Oracle Cloud to Power Your Application Development Lifecycle
Using Oracle Cloud to Power Your Application Development Lifecycle Srikanth Sallaka Oracle Product Management Dana Singleterry Oracle Product Management Greg Stachnick Oracle Product Management Using Oracle
Introduction to FreeNAS development
Introduction to FreeNAS development John Hixson [email protected] ixsystems, Inc. Abstract FreeNAS has been around for several years now but development on it has been by very few people. Even with corporate
Timesheet Installation Guide
Timesheet Installation Guide This guide will show you how to install and configure Timesheet. Table of Contents Installing Timesheet... 3 Installation Components... 3 Installing Timesheet... 3 Prerequisites...
StriderCD Book. Release 1.4. Niall O Higgins
StriderCD Book Release 1.4 Niall O Higgins August 22, 2015 Contents 1 Introduction 3 1.1 What Is Strider.............................................. 3 1.2 What Is Continuous Integration.....................................
Notes on how to migrate wikis from SharePoint 2007 to SharePoint 2010
Notes on how to migrate wikis from SharePoint 2007 to SharePoint 2010 This document describes the most important steps in migrating wikis from SharePoint 2007 to SharePoint 2010. Following this, we will
