Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
e9b5a0be39 | |||
23d867c36b | |||
7a02a7fe49 | |||
dd9d9732e8 | |||
|
f5c34ce532 | ||
|
dc4ae437c6 | ||
|
0de6cc6f41 | ||
|
332566a662 |
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "desirae-datamap-ruhoh",
|
"name": "desirae-datamap-ruhoh",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"homepage": "https://github.com/DearDesi/datamap-ruhoh",
|
"homepage": "https://github.com/DearDesi/datamap-ruhoh",
|
||||||
"authors": [
|
"authors": [
|
||||||
"AJ ONeal <awesome@coolaj86.com>"
|
"AJ ONeal <awesome@coolaj86.com>"
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
var newview
|
var newview
|
||||||
, analytics
|
, analytics
|
||||||
, comments
|
, comments
|
||||||
|
, desi = {}
|
||||||
;
|
;
|
||||||
|
|
||||||
comments = view.site.disqus_shortname &&
|
comments = view.site.disqus_shortname &&
|
||||||
@ -19,16 +20,26 @@
|
|||||||
}})
|
}})
|
||||||
;
|
;
|
||||||
|
|
||||||
analytics = view.site.google_analytics_tracking_id &&
|
analytics = view.site.google_analytics_tracking_id &&
|
||||||
Mustache.render(view.desi.partials.google_analytics, { google_analytics: {
|
Mustache.render(view.desi.partials.google_analytics, { google_analytics: {
|
||||||
tracking_id: view.site.google_analytics_tracking_id
|
tracking_id: view.site.google_analytics_tracking_id
|
||||||
}})
|
}})
|
||||||
;
|
;
|
||||||
|
|
||||||
|
Object.keys(view).forEach(function (key) {
|
||||||
|
desi[key] = view[key];
|
||||||
|
});
|
||||||
|
desi.desi = {};
|
||||||
|
Object.keys(view).forEach(function (key) {
|
||||||
|
desi.desi[key] = view[key];
|
||||||
|
});
|
||||||
|
|
||||||
newview = {
|
newview = {
|
||||||
content: view.contents
|
desi: desi
|
||||||
|
, content: view.contents
|
||||||
, page: {
|
, page: {
|
||||||
title: view.entity.yml.title || view.site.title // in rt
|
title: view.entity.yml.title || view.site.title // in rt
|
||||||
|
, filename: view.entity.name // in rt
|
||||||
, tagline: view.entity.yml.tagline // in rt
|
, tagline: view.entity.yml.tagline // in rt
|
||||||
, description: view.entity.yml.description // in rt
|
, description: view.entity.yml.description // in rt
|
||||||
, content: view.contents
|
, content: view.contents
|
||||||
@ -40,6 +51,7 @@
|
|||||||
, next: view.entities[view.entity_index + 1]
|
, next: view.entities[view.entity_index + 1]
|
||||||
, previous: view.entities[view.entity_index - 1]
|
, previous: view.entities[view.entity_index - 1]
|
||||||
, date: view.entity.year + '-' + view.entity.month + '-' + view.entity.day
|
, date: view.entity.year + '-' + view.entity.month + '-' + view.entity.day
|
||||||
|
, url: view.entity.relative_link
|
||||||
// TODO , url: view.entities.
|
// TODO , url: view.entities.
|
||||||
}
|
}
|
||||||
, 'page?previous': view.entities[view.entity_index - 1] // ruhoh-twitter only
|
, 'page?previous': view.entities[view.entity_index - 1] // ruhoh-twitter only
|
||||||
@ -60,12 +72,12 @@
|
|||||||
, twitter: view.author.twitter
|
, twitter: view.author.twitter
|
||||||
}
|
}
|
||||||
, title: view.site.title
|
, title: view.site.title
|
||||||
|
, host: view.env.base_url.replace(/^https?:\/\//, '')
|
||||||
}
|
}
|
||||||
, stylesheets: { 'load': function () {
|
, stylesheets: { 'load': function () {
|
||||||
return function (text, render) {
|
return function (text, render) {
|
||||||
// TODO pay attention to text of which styles to load?
|
// TODO pay attention to text of which styles to load?
|
||||||
// this is unescaped, right?
|
// this is unescaped, right?
|
||||||
console.log('$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ magicstache');
|
|
||||||
return render(view.desi.styles.join('\n'));
|
return render(view.desi.styles.join('\n'));
|
||||||
};
|
};
|
||||||
}}
|
}}
|
||||||
|
12
package.json
12
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "desirae-datamap-ruhoh",
|
"name": "desirae-datamap-ruhoh",
|
||||||
"version": "1.0.1",
|
"version": "1.0.6",
|
||||||
"description": "A ruhoh datamap plugin for desirae",
|
"description": "A ruhoh datamap plugin for desirae",
|
||||||
"main": "datamapper-ruhoh.js",
|
"main": "datamapper-ruhoh.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/DearDesi/datamap-ruhoh.git"
|
"url": "https://git.coolaj86.com/coolaj86/desirae-datamap-ruhoh.js.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ruhoh",
|
"ruhoh",
|
||||||
@ -18,12 +18,12 @@
|
|||||||
"datamap"
|
"datamap"
|
||||||
],
|
],
|
||||||
"author": "AJ ONeal <coolaj86@gmail.com> (http://coolaj86.com/)",
|
"author": "AJ ONeal <coolaj86@gmail.com> (http://coolaj86.com/)",
|
||||||
"license": "Apache2",
|
"license": "(MIT OR ISC OR Apache-2.0)",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/DearDesi/datamap-ruhoh/issues"
|
"url": "https://git.coolaj86.com/coolaj86/desirae-datamap-ruhoh.js/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/DearDesi/datamap-ruhoh",
|
"homepage": "https://git.coolaj86.com/coolaj86/desirae-datamap-ruhoh.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"mustache": "^1.0.0"
|
"mustache": "^2.3.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user