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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>Monokai FannonEd</string> | |
<key>settings</key> | |
<array> | |
<dict> | |
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
[ | |
{ | |
"keys": [ | |
"f1" | |
], | |
"args": {}, | |
"command": "zen_as_you_type", | |
"context": [ | |
{ | |
"operand": "source.css - source.css.embedded, text.xml, text.html -source -meta.tag, meta.scope.between-tag-pair.html -source", |
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
{ | |
"printrequests":[ | |
{ | |
"label":"", | |
"typeid":"_wpg", | |
"mode":2 | |
}, | |
{ | |
"label":"Vorname", |
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
{ | |
"printrequests":{ | |
"":{ | |
"label":"", | |
"typeid":"_wpg" | |
}, | |
"Vorname":{ | |
"label":"Vorname", | |
"typeid":"_txt" |
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
// Abstract Shape Schema | |
{ | |
"id": "_Shape", | |
"type": "object", | |
"properties": { | |
"x": {"type": "number"}, | |
"y": {"type": "number"} | |
}, | |
"required": ["x", "y"] |
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
tv4.asyncFetchSchemas('/model/Circle.json', function() { | |
tv4.getSchemaUris(); | |
// ["/model/Circle.json"] | |
tv4.getSchemaMap(); | |
// { | |
// "/model/Circle.json": { | |
// "$ref": "/model/_Shape.json", | |
// "id": "/model/Circle", |
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
<h4>Data via SPARQL Query</h4> | |
<plastic id="table-sparql-query" style="height: 300px; width: 100%;"> | |
<script class="plastic-query" type="application/sparql-query" data-query-url="http://dbpedia.org/sparql"> | |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
PREFIX type: <http://dbpedia.org/class/yago/> | |
PREFIX prop: <http://dbpedia.org/property/> | |
SELECT ?country_name ?population |
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
this.$displayEl = $(this.$el.find('.plastic-js-display')[0]); | |
var html = '<pre class="raw-data">' + JSON.stringify(this.elAttr.data.raw, false, 4) + '</code></pre>'; | |
this.$displayEl.html(html); |
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
/** Buttons Style **/ | |
input[type=button], input[type=submit] { | |
border-radius: 3px; | |
border: none; | |
background: #128FBD; | |
color: #FFF; | |
padding: 6px 8px; | |
cursor: pointer; | |
user-select: none; | |
} |
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
/** HEADER TABS STYLE **/ | |
.ui-tabs .ui-tabs-panel { | |
padding: 4px 10px; | |
} | |
.ui-widget-header { | |
background: none; | |
} | |
.ui-widget-content { | |
background: #FAFAFA; | |
} |
OlderNewer