These rules are adopted from the AngularJS commit conventions.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": { | |
"_links": "http://stateless.co/hal_specification.html#links", | |
"title": "http://schema.org/name", | |
"description": "http://schema.org/description", | |
"publisher": "#http://schema.org/publisher > http://schema.org/Organization > http://schema.org/name", | |
"firstpage": "http://schema.org/pageStart", | |
"doi": "#http://schema.org/sameAs (URL)", | |
"volume": "#http://schema.org/isPartOf > http://schema.org/PublicationVolume > http://schema.org/volumeNumber", | |
"volume": "#http://schema.org/isPartOf > http://schema.org/PublicationIssue > http://schema.org/issueNumber", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var incognito = function(require, module, exports) { | |
"use strict"; | |
function isWebkitRequestFileSystem() { | |
return !!window.webkitRequestFileSystem | |
} | |
function isFirefoxIndexedDB() { | |
return !!window.indexedDB && /Firefox/.test(window.navigator.userAgent) | |
} | |
function isIE10PlusOrEdge() { | |
if (document.documentMode) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import zipfile | |
import sys | |
import re | |
import xml.etree.ElementTree as ET | |
namespaces = { | |
'a': 'http://schemas.openxmlformats.org/drawingml/2006/main', | |
'r': 'http://schemas.openxmlformats.org/officeDocument/2006/relationships', |