Markdown Markup Languages What Is Markdown? Symbol

Total Page:16

File Type:pdf, Size:1020Kb

Markdown Markup Languages What Is Markdown? Symbol Markdown What is Markdown? ● Markdown is a lightweight markup language with plain text formatting syntax. Péter Jeszenszky – See: https://en.wikipedia.org/wiki/Markdown Faculty of Informatics, University of Debrecen [email protected] Last modified: October 4, 2019 3 Markup Languages Symbol ● Markup languages are computer languages for annotating ● Dustin Curtis. The Markdown Mark. text. https://dcurt.is/the-markdown-mark – They allow the association of metadata with parts of text in a https://github.com/dcurtis/markdown-mark clearly distinguishable way. ● Examples: – TeX, LaTeX https://www.latex-project.org/ – Markdown https://daringfireball.net/projects/markdown/ – troff (man pages) https://www.gnu.org/software/groff/ – XML https://www.w3.org/XML/ – Wikitext https://en.wikipedia.org/wiki/Help:Wikitext 2 4 Characteristics Usage (2) ● An easy-to-read and easy-to-write plain text ● Collaboration platforms and tools: format that. – GitHub https://github.com/ ● Can be converted to various output formats ● See: Writing on GitHub (e.g., HTML). https://help.github.com/en/categories/writing-on-github – Trello https://trello.com/ ● Specifically targeted at non-technical users. ● See: How To Format Your Text in Trello ● The syntax is mostly inspired by the format of https://help.trello.com/article/821-using-markdown-in-trell o plain text email. 5 7 Usage (1) Usage (3) ● Markdown is widely used on the web for ● Blogging platforms and content management entering text. systems: – ● The main application areas include: Ghost https://ghost.org/ ● See: Using Markdown https://ghost.org/faq/using-markdown/ – Collaboration platforms and tools – WordPress https://wordpress.com/ – Blogging platforms and content management ● See: Using Markdown on WordPress.com systems https://en.support.wordpress.com/can-i-use-markdown-on-wor dpress-com/ – Online community platforms – Squarespace https://www.squarespace.com/ – Technical and scientific publishing ● See: Using Markdown Blocks https://support.squarespace.com/hc/en-us/articles/205813788 6 8 Usage (4) History (1) ● Online community platforms: ● Originally, Markdown was developed in 2004 by – reddit https://www.reddit.com/ John Gruber with contributions from Aaron Swartz. ● See: https://www.reddit.com/wiki/markdown – Stack Overflow https://stackoverflow.com/ – It was a created in the form of: ● ● See: How do I format my posts using Markdown or a plain text format for writing structured documents, and HTML? https://stackoverflow.com/help/formatting ● a Perl script to convert Markdown to HTML (Markdown.pl). ● Website: https://daringfireball.net/projects/markdown/ 9 11 Usage (5) History (2) ● Technical and scientific publishing: ● About the motivation behind the creation of – bookdown https://bookdown.org/ Markdown: – Daniel Stenberg. Everything curl. – John Gruber. Dive Into Markdown. 19 March 2004. https://curl.haxx.se/book.html https://daringfireball.net/2004/03/dive_into_markdo https://github.com/bagder/everything-curl wn – GitBook https://www.gitbook.com/ ● The original Markdown syntax: ● See: https://docs.gitbook.com/content-editing/markdown https://daringfireball.net/projects/markdown/synt – Microsoft Docs https://docs.microsoft.com/ ax ● See: How to use Markdown for writing Docs – https://docs.microsoft.com/en-us/contribute/how-to-write-use-m The syntax is not specified unambiguously. arkdown 10 12 File Properties Syntactic Ambiguities (2) ● File extension: .md ● Babelmark 2 https://johnmacfarlane.net/babelmark2/ ● Media type: text/markdown – A tool for comparing the output of various – Optional parameter: variant implementations of the original Markdown syntax. ● See: Sean Leonard. The text/markdown Media Type. RFC 7763. March 2016. https://tools.ietf.org/html/rfc7763 13 15 Syntactic Ambiguities (1) Standardization ● For a comprehensive list of syntactic ● CommonMark https://commonmark.org/ ambiguities, see: – A standard, unambiguous syntax specification for – CommonMark Spec – Why is a spec needed? Markdown. https://spec.commonmark.org/0.29/#why-is-a-spec- – Specification: CommonMark Spec needed- https://spec.commonmark.org/ ● A possible option to resolve these ambiguities is ● Provides a test suite to validate implementations against to consult the source code of Gruber's the specification. implementation (i.e., Markdown.pl). – Unfortunately, it was quite buggy. 14 16 Variants Editors (1) ● Several variants and extensions of Markdown exist, for ● Free and open source software: example: – Atom (platform: Linux, macOS, Windows; license: MIT License) https://atom.io/ https://github.com/atom/atom – GitHub Flavored Markdown (GFM) ● Packages: – Markdown Preview (license: MIT License) https://atom.io/packages/markdown-preview ● See: GitHub Flavored Markdown Spec https://github.github.com/gfm/ https://github.com/atom/markdown-preview – Markdown-Writer (license: MIT License) https://atom.io/packages/markdown-writer – Pandoc's Markdown https://github.com/zhuochun/md-writer – Notepad++ (platform: Windows; license: GPLv2) https://notepad-plus-plus.org/ ● See: Pandoc User’s Guide – Pandoc's Markdown https://github.com/notepad-plus-plus/notepad-plus-plus https://pandoc.org/MANUAL.html#pandocs-markdown ● Plugin: markdown++ (license: MIT License) https://github.com/Edditoria/markdown-plus-plus – … – StackEdit (written in: JavaScript; license: Apache License 2.0) https://stackedit.io/ https://github.com/benweet/stackedit ● See: Markdown Variants – Visual Studio Code (platform: Linux, macOS, Windows; license: MIT License) https://www.iana.org/assignments/markdown-variants/m https://code.visualstudio.com/ https://github.com/Microsoft/vscode arkdown-variants.xhtml ● See: https://code.visualstudio.com/docs/languages/markdown 17 19 Tutorials Editors (2) ● Markdown Guide ● Non-free software: https://www.markdownguide.org/ – <oXygen/> XML Editor https://www.oxygenxml.com/ ● Markdown Tutorial ● See: https://www.oxygenxml.com/xml_editor/markdown_editor. https://commonmark.org/help/tutorial/ html – IntelliJ IDEA https://www.jetbrains.com/idea/ ● Supported in Ultimate and Community Editions. ● See: https://www.jetbrains.com/help/idea/markdown.html 18 20 Conversion Tools Pandoc (2) ● Free and open source software: ● Styling the output with CSS: – Pandoc (platform: Linux, macOS, Windows; license: GPLv2) – The / command line option associates a https://pandoc.org/ https://github.com/jgm/pandoc -c --css custom CSS stylesheet with the output document. ● A command-line tool written in Haskell to convert convert files from one markup format into another. ● This option can be used repeatedly. ● Markdown is supported both as source and target formats. ● Online services: – Docverter (written in: JRuby; license: MIT License) https://www.docverter.com/ https://github.com/docverter/docverter ● A document conversion server with an HTTP API that wraps Pandoc. 21 23 Pandoc (1) Pandoc (3) ● Installation: https://pandoc.org/installing.html ● Examples of custom CSS stylesheets: ● Use: https://pandoc.org/MANUAL.html – Pan Am: Simple CSS for Pandoc (license: WTFPL) https://benjam.info/pan-am/ pandoc --standalone --smart --to html5 input.md \ https://github.com/bgw/pan-am --output output.html --css style.css ● CSS stylesheet: http://benjam.info/panam/styling.css or – Tufte Pandoc CSS (license: MIT License) https://jez.io/tufte-pandoc-css/ pandoc -s -S -t html5 input.md -o output.html \ https://github.com/jez/tufte-pandoc-css -c style.css 22 24 Pandoc (4) R Markdown (2) ● IDE integration: ● R Markdown is implemented as an R package – Visual Studio Code: (rmarkdown). ● vscode-pandoc https://github.com/dfinke/vscode-pandoc https://cran.r-project.org/web/packages/rmarkdo https://marketplace.visualstudio.com/items?itemName=D wn/ ougFinke.vscode-pandoc 25 27 R Markdown (1) R Markdown (3) ● R Markdown is an extension of Markdown that ● Supported output formats: HTML, PDF, PowerPoint, enables the embedding of executable code MS Word, … chunks. ● Creating PDF output requires a TeX installation. – For example, the following languages are – For the list of available options, see: supported: Apache Groovy, Bash, Haskell, Python, https://www.latex-project.org/get/#tex-distributions Scala, SQL, R, … – The easiest way of installing TeX for R users: ● File extension: .Rmd ● TinyTeX https://yihui.name/tinytex/ – A lightweight, cross-platform, portable TeX distribution based on TeX Live. ● Website: https://rmarkdown.rstudio.com/ – The tinytex R package is provided for installing TinyTeX. The installation does not require administrator privileges. 26 28 R Markdown (4) R Markdown (6) ● Documentation: ● Conversion: – Yihui Xie, J. J. Allaire, Garrett Grolemund. R file.doc Markdown: The Definitive Guide. 2019. https://bookdown.org/yihui/rmarkdown/ https://github.com/rstudio/rmarkdown-book ● Tool support: file.Rmd knitr file.md pandoc file.html – RStudio https://www.rstudio.com/ file.pdf 29 31 R Markdown (5) R Markdown (7) ● --- The rmarkdown packages depends on the title: "R Markdown Example" author: Péter Jeszenszky knitr package. output: html_document --- – knitr is an R package for dynamic report ```{r setup, include = FALSE} generation. knitr::opts_chunk$set(echo = TRUE) – It is used to evaluate computer code embedded in ``` Markdown and to include the result. # Using LaTeX and R – Website: https://yihui.name/knitr/ Plot of the function $f(x) = sin(x) + cos(\sqrt{3}x)$: ```{r} https://github.com/yihui/knitr library(ggplot2) f <- function(x) sin(x) + cos(sqrt(3) * x) ggplot(data.frame(x = 0), aes(x)) + stat_function(fun = f, colour = "blue")
Recommended publications
  • Usask Open Textbook Authoring Guide – Ver.1.0
    USask Open Textbook Authoring Guide – Ver.1.0 USask Open Textbook Authoring Guide – Ver.1.0 A Guide to Authoring & Adapting Open Textbooks at the University of Saskatchewan Distance Education Unit (DEU), University of Saskatchewan Jordan Epp, M.Ed., Kristine Dreaver-Charles, M.Sc.Ed., Jeanette McKee, M.Ed. Open Press DEU, Usask Saskatoon Copyright:2016 by Distance Education Unit, University of Saskatchewan. This book is an adaptation based on the B.C. Open Textbook Authoring Guide created by BCcampus and licensed with a CC-BY 4.0 license. Changes to the BCcampus Authoring Guide for this University of Saskatchewan adaptation included: Changing the references from BCcampus Open Project to be more relevant to the University of Saskatchewan’s open textbook development. Creation of a new title page and book title. Changing information about Support Services to be University of Saskatchewan specific. Performing a general text edit throughout the guide, added image captions, and updated most images to remove the BCcampus branding. Updating Pressbook platform nomenclature to be consistent with the current version of Pressbooks. Unless otherwise noted, this book is released under a Creative Commons Attribution (CC-BY) 4.0 Unported license. Under the terms of the CC-BY license you can freely share, copy or redistribute the material in any medium or format, or adapt the material by remixing, transforming or modifying this material providing you attribute the Distance Education Unit, University of Saskatchewan and BCcampus. Attribution means you must give appropriate credit to the Distance Education Unit, University of Saskatchewan and BCcampus as the original creator, note the CC-BY license this document has been released under, and indicate if you have made any changes to the content.
    [Show full text]
  • Tuto Documentation Release 0.1.0
    Tuto Documentation Release 0.1.0 DevOps people 2020-05-09 09H16 CONTENTS 1 Documentation news 3 1.1 Documentation news 2020........................................3 1.1.1 New features of sphinx.ext.autodoc (typing) in sphinx 2.4.0 (2020-02-09)..........3 1.1.2 Hypermodern Python Chapter 5: Documentation (2020-01-29) by https://twitter.com/cjolowicz/..................................3 1.2 Documentation news 2018........................................4 1.2.1 Pratical sphinx (2018-05-12, pycon2018)...........................4 1.2.2 Markdown Descriptions on PyPI (2018-03-16)........................4 1.2.3 Bringing interactive examples to MDN.............................5 1.3 Documentation news 2017........................................5 1.3.1 Autodoc-style extraction into Sphinx for your JS project...................5 1.4 Documentation news 2016........................................5 1.4.1 La documentation linux utilise sphinx.............................5 2 Documentation Advices 7 2.1 You are what you document (Monday, May 5, 2014)..........................8 2.2 Rédaction technique...........................................8 2.2.1 Libérez vos informations de leurs silos.............................8 2.2.2 Intégrer la documentation aux processus de développement..................8 2.3 13 Things People Hate about Your Open Source Docs.........................9 2.4 Beautiful docs.............................................. 10 2.5 Designing Great API Docs (11 Jan 2012)................................ 10 2.6 Docness.................................................
    [Show full text]
  • Open Thesis Final.Pdf
    The Pennsylvania State University The Graduate School College of Communications EVALUATIO OF FOSS VIDEO GAMES I COMPARISO TO THEIR COMMERCIAL COUTERPARTS A Thesis in Media Studies By Jesse A. Clark © 2008 Jesse A. Clark Submitted in Partial Fulfillment of the Requirements for the Degree of Master of Arts August 2008 ii The thesis of Jesse A. Clark was reviewed and approved* by the following:: John Nichols Professor of Communications Associate Dean for Graduate Studies and Research Matt Jackson Associate Professor of Communications Head of Department of Telecommunications Thesis Advisor Robert Frieden Professor; Pioneers Chair in Telecommunications Ronald Bettig Associate Professor of Communications *Signatures are on file in the Graduate School. iii Abstract The topic of copyrights and copyright law is a crucial component in understanding today's media landscape. The purpose for having a copyright system as outlined in the U.S. Constitution is to provide content creators with an incentive to create. The copyright system allows revenue to be generated through sales of copies of works; thus allowing for works to be created which otherwise would not be created. Yet it is entirely possible that not all large creative projects require the same legal framework as an incentive. The so called “copyleft” movement (which will be defined and explained in depth later) offers an alternative to the industrial mode of cultural production. Superficially, “copylefted” works can be divided into two broad categories: artistic/creative works (which are often protected by “Creative Commons” licenses), and Free/Open Source Software. This thesis evaluates how open source video games compare to their commercial counterparts and discusses the reasons for any difference in overall quality.
    [Show full text]
  • Using NROFF and TROFF
    Using NROFF and TROFF Part Number: 800-1755-10 Revision A, of 9 May 1988 UNIX is a registered trademark of AT&T. SunOS is a trademark of Sun Microsystems, Inc. Sun Workstation is a registered trademark of Sun Microsystems, Inc. Material in this manual comes from a number of sources: NrofflTroff User's Manual, Joseph F. Ossanna, Bell Laboratories, Murray Hill, New Jersey; A Troff Tutorial, Brian W. Kernighan, Bell Laboratories, Murray Hill, New Jersey; Typ­ ing Documents on the UNIXSystem: Using the -ms Macros with Troff and Nroff, M. E. Lesk, Bell Laboratories, Murray Hill, New Jersey; A Guide to Preparing Documents with -ms, M. E. Lesk, Bell Laboratories, Murray Hill, New Jersey; Document Formatting on UNIXUsing the -ms Macros, Joel Kies, University of California, Berkeley, California; Writing Papers with Nroff Using -me, Eric P. Allman, University of California, Berkeley; and Introducing the UNIXSystem, Henry McGilton, Rachel Morgan, McGraw-Hill Book Company, 1983. These materials are gratefully acknowledged. Copyright © 1987, 1988 by Sun Microsystems, Inc. This publication is protected by Federal Copyright Law, with all rights reserved. No part of this publication may be reproduced, stored in a retrieval system, translated, transcribed, or transmitted, in any form, or by any means manual, electric, electronic, electro-magnetic, mechanical, chemical, optical, or other­ wise, without prior explicit written permission from Sun Microsystems. Contents Chapter 1 Introduction . 1.1. nrof f andtrof f . Text Formatting Versus Word Processing TheEvolutionof nr of f andt ro f f Preprocessors and Postprocessors 1.2. tr of f, Typesetters, and Special-Purpose Formatters ............ 1.3.
    [Show full text]
  • The R Journal Volume 4/2, December 2012
    The Journal Volume 4/2, December 2012 A peer-reviewed, open-access publication of the R Foundation for Statistical Computing Contents Editorial . .3 Contributed Research Articles What’s in a Name? . .5 It’s Not What You Draw, It’s What You Don’t Draw . 13 Debugging grid Graphics . 19 frailtyHL: A Package for Fitting Frailty Models with H-likelihood . 28 influence.ME: Tools for Detecting Influential Data in Mixed Effects Models . 38 The crs Package: Nonparametric Regression Splines for Continuous and Categorical Predic- tors.................................................... 48 Rfit: Rank-based Estimation for Linear Models . 57 Graphical Markov Models with Mixed Graphs in R . 65 Programmer’s Niche The State of Naming Conventions in R . 74 News and Notes Changes in R . 76 Changes on CRAN . 80 News from the Bioconductor Project . 101 R Foundation News . 102 2 The Journal is a peer-reviewed publication of the R Foun- dation for Statistical Computing. Communications regarding this pub- lication should be addressed to the editors. All articles are licensed un- der the Creative Commons Attribution 3.0 Unported license (CC BY 3.0, http://creativecommons.org/licenses/by/3.0/). Prospective authors will find detailed and up-to-date submission in- structions on the Journal’s homepage. Editor-in-Chief: Martyn Plummer Editorial Board: Heather Turner, Hadley Wickham, and Deepayan Sarkar Editor Help Desk: Uwe Ligges Editor Book Reviews: G. Jay Kerns Department of Mathematics and Statistics Youngstown State University Youngstown, Ohio 44555-0002 USA [email protected] R Journal Homepage: http://journal.r-project.org/ Email of editors and editorial board: [email protected] The R Journal is indexed/abstracted by EBSCO, DOAJ, Thomson Reuters.
    [Show full text]
  • BSD UNIX Toolbox 1000+ Commands for Freebsd, Openbsd
    76034ffirs.qxd:Toolbox 4/2/08 12:50 PM Page iii BSD UNIX® TOOLBOX 1000+ Commands for FreeBSD®, OpenBSD, and NetBSD®Power Users Christopher Negus François Caen 76034ffirs.qxd:Toolbox 4/2/08 12:50 PM Page ii 76034ffirs.qxd:Toolbox 4/2/08 12:50 PM Page i BSD UNIX® TOOLBOX 76034ffirs.qxd:Toolbox 4/2/08 12:50 PM Page ii 76034ffirs.qxd:Toolbox 4/2/08 12:50 PM Page iii BSD UNIX® TOOLBOX 1000+ Commands for FreeBSD®, OpenBSD, and NetBSD®Power Users Christopher Negus François Caen 76034ffirs.qxd:Toolbox 4/2/08 12:50 PM Page iv BSD UNIX® Toolbox: 1000+ Commands for FreeBSD®, OpenBSD, and NetBSD® Power Users Published by Wiley Publishing, Inc. 10475 Crosspoint Boulevard Indianapolis, IN 46256 www.wiley.com Copyright © 2008 by Wiley Publishing, Inc., Indianapolis, Indiana Published simultaneously in Canada ISBN: 978-0-470-37603-4 Manufactured in the United States of America 10 9 8 7 6 5 4 3 2 1 Library of Congress Cataloging-in-Publication Data is available from the publisher. No part of this publication may be reproduced, stored in a retrieval system or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, scanning or otherwise, except as permitted under Sections 107 or 108 of the 1976 United States Copyright Act, without either the prior written permission of the Publisher, or authorization through payment of the appropriate per-copy fee to the Copyright Clearance Center, 222 Rosewood Drive, Danvers, MA 01923, (978) 750-8400, fax (978) 646-8600. Requests to the Publisher for permis- sion should be addressed to the Legal Department, Wiley Publishing, Inc., 10475 Crosspoint Blvd., Indianapolis, IN 46256, (317) 572-3447, fax (317) 572-4355, or online at http://www.wiley.com/go/permissions.
    [Show full text]
  • Openstreetmap History for Intrinsic Quality Assessment: Is OSM Up-To-Date? Marco Minghini1,3* and Francesco Frassinelli2,3
    Minghini and Frassinelli Open Geospatial Data, Software and Standards (2019) 4:9 Open Geospatial Data, https://doi.org/10.1186/s40965-019-0067-x Software and Standards SOFTWARE Open Access OpenStreetMap history for intrinsic quality assessment: Is OSM up-to-date? Marco Minghini1,3* and Francesco Frassinelli2,3 Abstract OpenStreetMap (OSM) is a well-known crowdsourcing project which aims to create a geospatial database of the whole world. Intrinsic approaches based on the analysis of the history of data, i.e. its evolution over time, have become an established way to assess OSM quality. After a comprehensive review of scientific as well as software applications focused on the visualization, analysis and processing of OSM history, the paper presents “Is OSM up-to-date?”, an open source web application addressing the need of OSM contributors, community leaders and researchers to quickly assess OSM intrinsic quality based on the object history for any specific region. The software, mainly written in Python, can be also run in the command line or inside a Docker container. The technical architecture, sample applications and future developments of the software are also presented in the paper. Keywords: Crowdsourcing, Data history, Data quality, Open source, OpenStreetMap, up-to-dateness Introduction of software tools, services and applications allows a wide OpenStreetMap (OSM) is the most successful crowd- number of developers, humanitarian operators, industry sourced geographic information project to date [1]. It was and governmental actors to exploit OSM data on a daily initiated in 2004 in response to the mainstream pres- basis and for a variety of purposes [6].
    [Show full text]
  • Deployment of XML for Office Documents in Organizations
    JYVÄSKYLÄ LICENTIATE THESES IN COMPUTING 16 Eliisa Jauhiainen DeployPent of XML for OfÀFe DoFXPents in Organizations JYVÄSKYLÄ LICENTIATE THESES IN COMPUTING 16 Eliisa Jauhiainen Deployment of XML for Office Documents in Organizations UNIVERSITY OF JYVÄSKYLÄ JYVÄSKYLÄ 2014 Deployment of XML for Office Documents in Organizations JYVÄSKYLÄ LICENTIATE THESES IN COMPUTING 16 Eliisa Jauhiainen Deployment of XML for Office Documents in Organizations UNIVERSITY OF JYVÄSKYLÄ JYVÄSKYLÄ 2014 Editor Mauri Leppänen Department of Computer Science and Information Systems, University of Jyväskylä URN:ISBN:978-951-39-5600-4 ISBN 978-951-39-5600-4 (PDF) ISBN 978-951-39-5599-1 (nid.) ISSN 1795-9713 Copyright © 2014, by University of Jyväskylä Jyväskylä University Printing House, Jyväskylä 2014 ABSTRACT Jauhiainen, Eliisa Deployment of XML for office documents in organizations Jyväskylä: University of Jyväskylä, 201, 63 p. (+ four included articles) (-\YlVN\Ol/LFHQWLDWH7KHVHVLQ&RPSXWLQJ ISSN) ,6%1 (nid.), 978-951-39-5600-4 (PDF) Licentiate Thesis Majority of the content in organizations is stored as documents. Structured documents, like XML documents, allow the structure definitions, document instances, and layout specifications to be handled as separate entities. This is an important feature to realize from a document management point of view. A class of similar documents with the same structure constitutes a document type. The documents are built from components that are logical units of information within the context of the document type. Office documents are typically authored using word-processing software, they are relatively short in length, and intended for human consumption. The development of open office standards brought XML to organizations’ office en- vironments and changed the capabilities of using document content in ways that were previously impossible or difficult.
    [Show full text]
  • Looking to the Future by JOHN BALDWIN
    1 of 3 Looking to the Future BY JOHN BALDWIN FreeBSD’s 13.0 release delivers new features to users and refines the workflow for new contri- butions. FreeBSD contributors have been busy fixing bugs and adding new features since 12.0’s release in December of 2018. In addition, FreeBSD developers have refined their vision to focus on FreeBSD’s future users. An abbreviated list of some of the changes in 13.0 is given below. A more detailed list can be found in the release notes. Shifting Tools Not all of the changes in the FreeBSD Project over the last two years have taken the form of patches. Some of the largest changes have been made in the tools used to contribute to FreeBSD. The first major change is that FreeBSD has switched from Subversion to Git for storing source code, documentation, and ports. Git is widely used in the software industry and is more familiar to new contribu- tors than Subversion. Git’s distributed nature also more easily facilitates contributions from individuals who are Not all of the changes in the not committers. FreeBSD had been providing Git mir- rors of the Subversion repositories for several years, and FreeBSD Project over the last many developers had used Git to manage in-progress patches. The Git mirrors have now become the offi- two years have taken the form cial repositories and changes are now pushed directly of patches. to Git instead of Subversion. FreeBSD 13.0 is the first release whose sources are only available via Git rather than Subversion.
    [Show full text]
  • Interface Specification – Archive Content Services
    gSPECIFICATION REV. 484-0200155 F5 NCR Corporation Image & Payment Systems 50 Northland Road Unit 100 Waterloo, Ontario N2V1 N3 PROGRAM: ImageMark Archive 5.1 TITLE: Interface Specification – Archive Content Services DATE: December 7, 2016 RELEASE: Draft SOURCE ORGANIZATION: Solutions Architecture Prepared By: Peter Robinson, Solutions Architecture Date Approved By: Judy Sandison, Manager, Solutions Architecture Date Copyright © 2016 by NCR Corporation, Duluth, Georgia, USA. All rights reserved. SPECIFICATION REV. 484-0200155 F5 NCR Corporation Image & Payment Systems 50 Northland Road Unit 100 Waterloo, Ontario N2V1 N3 PROGRAM: ImageMark Archive 5.1 TITLE: Interface Specification – Archive Content Services DATE: December 7, 2016 RELEASE: Draft SOURCE ORGANIZATION: Solutions Architecture Copyright © 2016 by NCR Corporation, Duluth, Ohio, USA. All rights reserved. ImageMark Archive 4.01 484-0200155, Rev F13 Interface Specification – Archive Content Services Page 3 of 62 CHANGE SHEET Rev Date Section Description of Change By A 06/13/2003 All Initial Release – 53DR25561 Peter Robinson B 09/03/2003 All Change Release – 53DR25690 Peter Robinson C 11/30/2003 All Change Release – 53DR25905 Peter Robinson D 10/28/2004 All Change Release – 53DR26456 Peter Robinson E 02/16/2005 All Change Release – 53DR24994 F1 06/01/2005 Peter Robinson F All Change Rev.F is a copy of draft Rev.Fn Peter Robinson F All Released on 53DRnnnnn Peter Robinson F2 03/28/2006 6.2 Added error codes for Fill element F3 09/22/2014 All Updated 5.1 Release Information Saurabh Patel F4 10/17/2016 6, 7, 12 New sections Anjali Phatak F5 11/18/2016 13 New section - FAQs Anjali Phatak NCR Corporation December 7, 2016 ImageMark Archive 4.01 484-0200155, Rev F13 Interface Specification – Archive Content Services Page 4 of 62 TABLE OF CONTENTS 1.
    [Show full text]
  • FC33U (Outdoor) Fullhd IP Type Pan Tilt Zoom CCTV Camera
    User’s Manual FC33E (Explosion-Proof) FC33U (Outdoor) Full HD IP type Pan Tilt Zoom CCTV Camera IM 85A7C03-16E IM 85A7C03-16E Yokogawa Electric Corporation 7th Edition i Safety Precautions The precautions herein are intended to ensure the safe use of the product and prevention of possible injury and damage to the user. The precautions are classified into “Warning” and “Caution,” depending on the results assumed to arise if neglected, to clarify the degree and urgency of the injury or damage. Both are important for safety. Thus be sure to observe them. Denotes a possible hazard that could result in death or WARNING serious injury to personnel Indique un danger potentiel pouvant entraîner la mort ou des blessures graves au personnel. Denotes a possible hazard that could result in human injury CAUTION or physical damage. Indique un danger potentiel pouvant entraîner des blessures ou des dommages physiques. Pictogram examples Pictogram indicates a hazard, warning, or caution. In the pictogram, a specific precaution is shown. (The pictogram on the left Shock hazard shows “shock hazard.”) Pictogram indicates a prohibited action. Disassembling In or near the pictogram, a specific precaution is shown. (The pictogram on the prohibited left shows “disassembling prohibited.”) Media No.IM 85A7C03-16E (CD) 7th Edition: JUL..2021 (KP) IM 85A7C03-16E All Rights Reserved. Copyright ©2014 Yokogawa Electric Corporation. ii • This product has been certified as an explosion-proof type device. Severe restrictions are imposed on the structure, installation location, external wiring, maintenance, repair, etc. of this device. Be careful as dangerous WARNING conditions may occur if these restrictions are infringed.
    [Show full text]
  • User Manual 19HFL5014W Contents
    User Manual 19HFL5014W Contents 1 TV Tour 3 13 Help and Support 119 1.1 Professional Mode 3 13.1 Troubleshooting 119 13.2 Online Help 120 2 Setting Up 4 13.3 Support and Repair 120 2.1 Read Safety 4 2.2 TV Stand and Wall Mounting 4 14 Safety and Care 122 2.3 Tips on Placement 4 14.1 Safety 122 2.4 Power Cable 4 14.2 Screen Care 123 2.5 Antenna Cable 4 14.3 Radiation Exposure Statement 123 3 Arm mounting 6 15 Terms of Use 124 3.1 Handle 6 15.1 Terms of Use - TV 124 3.2 Arm mounting 6 16 Copyrights 125 4 Keys on TV 7 16.1 HDMI 125 16.2 Dolby Audio 125 5 Switching On and Off 8 16.3 DTS-HD (italics) 125 5.1 On or Standby 8 16.4 Wi-Fi Alliance 125 16.5 Kensington 125 6 Specifications 9 16.6 Other Trademarks 125 6.1 Environmental 9 6.2 Operating System 9 17 Disclaimer regarding services and/or software offered by third parties 126 6.3 Display Type 9 6.4 Display Input Resolution 9 Index 127 6.5 Connectivity 9 6.6 Dimensions and Weights 10 6.7 Sound 10 7 Connect Devices 11 7.1 Connect Devices 11 7.2 Receiver - Set-Top Box 12 7.3 Blu-ray Disc Player 12 7.4 Headphones 12 7.5 Game Console 13 7.6 USB Flash Drive 13 7.7 Computer 13 8 Videos, Photos and Music 15 8.1 From a USB Connection 15 8.2 Play your Videos 15 8.3 View your Photos 15 8.4 Play your Music 16 9 Games 18 9.1 Play a Game 18 10 Professional Menu App 19 10.1 About the Professional Menu App 19 10.2 Open the Professional Menu App 19 10.3 TV Channels 19 10.4 Games 19 10.5 Professional Settings 20 10.6 Google Account 20 11 Android TV Home Screen 22 11.1 About the Android TV Home Screen 22 11.2 Open the Android TV Home Screen 22 11.3 Android TV Settings 22 11.4 Connect your Android TV 25 11.5 Channels 27 11.6 Channel Installation 27 11.7 Internet 29 11.8 Software 29 12 Open Source Software 31 12.1 Open Source License 31 2 1 TV Tour 1.1 Professional Mode What you can do In Professional Mode ON, you can have access to a large number of expert settings that enable advanced control of the TV’s state or to add additional functions.
    [Show full text]