Skip to content
This repository was archived by the owner on May 12, 2020. It is now read-only.

Commit f358e26

Browse files
committed
fork from datproject
1 parent 86f6e1b commit f358e26

File tree

147 files changed

+58464
-23416
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+58464
-23416
lines changed

.bundle.js

Whitespace-only changes.

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
.DS_Store

bundle.js

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

css/style.css

-49
This file was deleted.

dev/pre-commit.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
browserify -t brfs index.js -o bundle.js
2+
autoless static/styles
3+
echo 'Bundled up!'
Binary file not shown.

fonts/Aleo/Bold Italic/aleo-bolditalic-webfont.svg

-785
This file was deleted.
Binary file not shown.
Binary file not shown.
Binary file not shown.

fonts/Aleo/Bold/aleo-bold-webfont.eot

-41.3 KB
Binary file not shown.

fonts/Aleo/Bold/aleo-bold-webfont.svg

-4,741
This file was deleted.

fonts/Aleo/Bold/aleo-bold-webfont.ttf

-89.9 KB
Binary file not shown.
-46.1 KB
Binary file not shown.
-36.8 KB
Binary file not shown.
Binary file not shown.

fonts/Aleo/Light Italic/aleo-lightitalic-webfont.svg

-4,501
This file was deleted.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-39.4 KB
Binary file not shown.

fonts/Aleo/Light/aleo-light-webfont.svg

-4,300
This file was deleted.
-84.8 KB
Binary file not shown.
-43.7 KB
Binary file not shown.
-35.1 KB
Binary file not shown.
-36.8 KB
Binary file not shown.

fonts/Aleo/Regular Italic/aleo-italic-webfont.svg

-4,645
This file was deleted.
-79.2 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
-40.5 KB
Binary file not shown.

fonts/Aleo/Regular/aleo-regular-webfont.svg

-4,373
This file was deleted.
-81.5 KB
Binary file not shown.
-44.4 KB
Binary file not shown.
-36 KB
Binary file not shown.

index.html

-22
This file was deleted.

index.js

Whitespace-only changes.

package.json

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
{
2+
"name": "dat-website",
3+
"version": "1.0.0",
4+
"description": "dat-data.com source",
5+
"main": "index.js",
6+
"scripts": {
7+
"start": "npm run build-css && node render.js && npm run server",
8+
"server": "nodemon --watch templates --watch scss -e scss,js,jade,html -i rendered --exec \"npm run build-css && node render.js && http-server rendered\"",
9+
"test": "node test/run.js | tap-spec",
10+
"watch": "watchify -t brfs index.js -o bundle.js",
11+
"build-css": "node-sass --importer node_modules/node-sass-magic-importer scss/base.scss static/css/base.css",
12+
"deploy": "gh-pages-deploy",
13+
"render": "node render.js"
14+
},
15+
"keywords": [
16+
"data",
17+
"datasets",
18+
"publish",
19+
"registry",
20+
"dathub",
21+
"dat",
22+
"web"
23+
],
24+
"gh-pages-deploy": {
25+
"staticpath": "rendered",
26+
"cname": "dat-data.com",
27+
"prep": [
28+
"build-css",
29+
"render"
30+
],
31+
"noprompt": false
32+
},
33+
"author": "dat project",
34+
"license": "BSD",
35+
"bugs": {
36+
"url": "https://github.com/datproject/website/issues"
37+
},
38+
"homepage": "http://dat-data.com",
39+
"dependencies": {
40+
"cheerio": "^0.19.0",
41+
"cptar": "^1.0.0",
42+
"dat-design": "^1.2.11",
43+
"gh-pages-deploy": "^0.3.0",
44+
"handlebars": "^4.0.5",
45+
"jquery": "^2.1.1",
46+
"marked": "^0.3.5",
47+
"mkdirp": "^0.5.1",
48+
"node-sass": "^3.8.0",
49+
"node-sass-magic-importer": "^0.1.4",
50+
"nodemon": "^1.2.1",
51+
"page": "^1.4.1",
52+
"rimraf": "^2.4.4",
53+
"rss": "^1.2.1",
54+
"xhr": "^2.0.3"
55+
},
56+
"devDependencies": {
57+
"page-router": "^1.0.1",
58+
"autoless": "^0.1.5",
59+
"brfs": "^1.4.0",
60+
"browserify": "^7.0.0",
61+
"dom": "0.0.3",
62+
"gravatar": "^1.1.1",
63+
"http-server": "^0.8.0",
64+
"mustache": "^2.0.0",
65+
"watchify": "^2.1.1"
66+
},
67+
"repository": {
68+
"type": "git",
69+
"url": "git+https://github.com/datproject/website.git"
70+
}
71+
}

posts.js

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
module.exports = [
2+
{
3+
// date: '2016-07-07',
4+
title: 'Announcing dat.land online demo',
5+
author: 'Karissa McKelvey',
6+
teaser: 'Live peer to peer sync in the browser with http://dat.land',
7+
name: '2016-07-07-announcing-dat-land'
8+
},
9+
{
10+
date: '2016-05-16',
11+
title: 'Key Elements of Distributing Data',
12+
author: 'Karissa McKelvey',
13+
teaser: 'How the current tools fall short by missing key elements.',
14+
name: '2016-05-16-key-elements'
15+
},
16+
{
17+
title: 'Dat 1.0 is ready',
18+
author: 'Karissa McKelvey',
19+
teaser: 'After years of R&D, the release candidate is ready.',
20+
name: '2016-02-01-dat-1',
21+
date: '2016-02-05'
22+
},
23+
{
24+
title: 'Announcing Publicbits.org',
25+
author: 'Karissa McKelvey',
26+
teaser: 'Breaking down open data silos with a new Knight Foundation grant.',
27+
name: '2016-02-01-announcing-publicbits',
28+
date: '2016-02-01'
29+
},
30+
{
31+
title: 'The likely collapse of a major proprietary hosting service',
32+
author: 'Karissa McKelvey',
33+
teaser: 'The beginning of the end -- and what it means for science.',
34+
name: '2015-12-01-proprietary'
35+
},
36+
{
37+
date: '2016-01-19',
38+
title: 'A Brief History of Dat',
39+
author: 'Max Ogden',
40+
teaser: 'History of Dat and the design choices over the last 2 years',
41+
name: '2016-01-19-brief-history-of-dat'
42+
},
43+
{
44+
date: '2015-07-29',
45+
title: 'Dat goes beta!',
46+
author: 'Karissa McKelvey',
47+
teaser: 'After a long year of alpha testing, dat goes beta.',
48+
name: '2015-07-29-dat-beta'
49+
},
50+
{
51+
date: '2015-04-03',
52+
title: 'Sloan Redoubles Dat Funding',
53+
author: 'Waldo Jacquith',
54+
teaser: 'Announcing a generous $640,000 grant from the Sloan foundation',
55+
name: '2015-04-03-sloan'
56+
},
57+
{
58+
date: '2014-08-19',
59+
title: 'Announcing the Dat Alpha',
60+
author: 'Max Ogden',
61+
teaser: 'The first major version of dat along with a new website.',
62+
name: '2014-08-19-dat-alpha'
63+
},
64+
{
65+
date: '2014-04-02',
66+
title: 'Sloan funding Dat development',
67+
author: 'Waldo Jacquith',
68+
teaser: 'Announcing Sloans support of the dat project',
69+
name: '2014-04-02-dat'
70+
}
71+
]

posts/2014-04-02-dat.md

+11

posts/2014-08-19-dat-alpha.md

+82

posts/2015-04-03-sloan.md

+9

0 commit comments

Comments
 (0)