git ssb

2+

cel / scuttlebot.io



Commit ed02ea80607adb283fd3b95f8f6bf5d5fab75608

Merge pull request #7 from clehner/gitssb

Add git-ssb to apps page
Paul Frazee authored on 6/12/2016, 9:34:38 PM
GitHub committed on 6/12/2016, 9:34:38 PM
Parent: 370af1a453abd6bbbac19a2ec769d3b7b3bb8532
Parent: 8766e942c58719d9e2f497fd1dead4d67c096397

Files changed

index.jschanged
tmpl/apps/index.html.jschanged
tmpl/img/git-ssb.pngadded
tmpl/index.html.jschanged
index.jsView
@@ -15,9 +15,9 @@
1515 // copy folder structure
1616 // console.log('copying directory')
1717 build.dir(entry.relativePath)
1818 } else if (entry.type == 'file') {
19- if (entry.name.indexOf('.html.js') !== -1 || entry.name.indexOf('.css.js') !== -1) {
19 + if (/\.(html|css).js$/.test(entry.name)) {
2020 // build html/css files
2121 // console.log('building')
2222 buildTemplate(entry)
2323 } else if (entry.name.indexOf('.part.js') !== -1) {
tmpl/apps/index.html.jsView
@@ -7,8 +7,9 @@
77 content: listing([
88 { id: 'patchwork', title: 'Patchwork', desc: 'Inbox, social feed, and profiles.', url: 'https://github.com/ssbc/patchwork' },
99 { id: 'ssb-cli-dashboard', title: 'CLI Dashboard', desc: 'Browse the database state.', url: 'https://github.com/ssbc/ssb-cli-dashboard' },
1010 { id: 'ssb-simple-whois', title: 'CLI Whois', desc: 'Very simple petname->pubkey lookup.', url: 'https://github.com/ssbc/ssb-simple-whois' },
11 + { id: 'git-ssb', title: 'git ssb', desc: 'git repos and issue tracking', url: 'https://git-ssb.celehner.com/%25n92DiQh7ietE%2BR%2BX%2FI403LQoyf2DtR3WQfCkDKlheQU%3D.sha256' },
1112 { id: 'add-new', title: 'Add an application', url: 'https://github.com/ssbc/scuttlebot.io/blob/master/add-an-application.md' }
1213 ])
1314 })
1415
tmpl/img/git-ssb.png
tmpl/img/git-ssb.png
tmpl/index.html.jsView
@@ -8,13 +8,13 @@
88 path: '/docs/basics/install-the-database.html',
99 hero: `
1010 <div class="hero big">
1111 <img src="/img/hermies-256.png">
12- <h1>Scuttlebot<br><small>a peer-to-peer messenger<br>for people tired of cloud software</small></h1>
13- <p>
14- ${''/*<a class="cta" href="javascript:alert('TODO: This will popup to a youtube video demoing sbot install and usage, and then patchwork')">&#9654; See it in action</a>*/}
12 + <h1>Scuttlebot<br><small>a peer-to-peer log store</small></h1>
13 + ${''/*<p>
14 + <a class="cta" href="javascript:alert('TODO: This will popup to a youtube video demoing sbot install and usage, and then patchwork')">&#9654; See it in action</a>
1515 <a class="cta dark" href="/docs/basics/install-the-database.html"><small>&#11015;</small> Download now</a>
16- </p>
16 + </p>*/}
1717 <p class="description">
1818 Scuttlebot is an open source <strong>peer-to-peer log store</strong> used as a database, identity provider, and messaging system.
1919 It features global replication, file-syncronization, and end-to-end encryption.<br>
2020 <br>
@@ -22,5 +22,5 @@
2222 </p>
2323 </div>
2424 `,
2525 content: installTheDatabase.content()
26-})
26 +})

Built with git-ssb-web