Merge git://github.com/danharibo/depressionbot

This commit is contained in:
reality 2012-12-28 22:16:02 +00:00
commit fedc019f1d
10 changed files with 97 additions and 74 deletions

View File

@ -2,9 +2,8 @@ var express = require('express');
var webInterface = function(dbot) { var webInterface = function(dbot) {
var pub = 'public'; var pub = 'public';
var app = express.createServer(); var app = express();
app.use(express.compiler({ src: pub, enable: ['sass'] }));
app.use(express.static(pub)); app.use(express.static(pub));
app.set('view engine', 'jade'); app.set('view engine', 'jade');

View File

@ -1,7 +1,10 @@
h3 Channels on #{connection} extends layout
div#backlink
block content
h3 Channels on #{connection}
div#backlink
a(href='/connections') « Connection List a(href='/connections') « Connection List
ul#quotelist ul#quotelist
-each channel in channels -each channel in channels
a(href='/users/'+connection+'/'+channel.substr(1,channel.length)) a(href='/users/'+connection+'/'+channel.substr(1,channel.length))
li.quotes #{channel} li.quotes #{channel}

View File

@ -1,5 +1,8 @@
h3 Current Connections extends layout
div#backlink
block content
h3 Current Connections
div#backlink
a(href='/') « Home a(href='/') « Home
#modulelinks #modulelinks
-each connection in connections -each connection in connections

View File

@ -1,4 +1,7 @@
#modulelinks extends layout
block content
#modulelinks
a.module(href='/quotes') Quotes a.module(href='/quotes') Quotes
a.module(href='/polls') Polls a.module(href='/polls') Polls
a.module(href='/connections') Users a.module(href='/connections') Users

View File

@ -9,5 +9,5 @@ html(lang='en')
div#title div#title
a(href='/') #{name} web interface a(href='/') #{name} web interface
div#main div#main
!{body} block content
script(type="text/javascript", src="/script.js") script(type="text/javascript", src="/script.js")

View File

@ -1,8 +1,11 @@
div#backlink extends layout
block content
div#backlink
a(href='/') « Home a(href='/') « Home
div#controls div#controls
input(type="text", name="search", id="search-text", oninput="search(this.value)") input(type="text", name="search", id="search-text", oninput="search(this.value)")
ul#quotelist ul#quotelist
-each poll in polllist -each poll in polllist
a(href='/polls/'+poll) a(href='/polls/'+poll)
li.quotes #{poll} li.quotes #{poll}

View File

@ -1,8 +1,11 @@
div#backlink extends layout
block content
div#backlink
a(href='/') « Home a(href='/') « Home
div#controls div#controls
input(type="text", name="search", id="search-text", oninput="search(this.value)") input(type="text", name="search", id="search-text", oninput="search(this.value)")
ul#quotelist ul#quotelist
-each quote in quotelist -each quote in quotelist
a(href='/quotes/'+quote) a(href='/quotes/'+quote)
li.quotes #{quote} li.quotes #{quote}

View File

@ -1,6 +1,9 @@
div#backlink extends layout
block content
div#backlink
a(href='/quotes/') « Quote list a(href='/quotes/') « Quote list
ul#quotelist ul#quotelist
-var hasYouTubeVids=false -var hasYouTubeVids=false
-each quote in quotes -each quote in quotes
-if(quote.match(locals.url_regex)) -if(quote.match(locals.url_regex))

View File

@ -1,11 +1,14 @@
h3 #{user}'s profile extends layout
div#backlink
block content
h3 #{user}'s profile
div#backlink
a(href='/users/'+connection+'/'+channel.substr(1,channel.length)) « #{channel} Nick List a(href='/users/'+connection+'/'+channel.substr(1,channel.length)) « #{channel} Nick List
div.quotecount div.quotecount
#{cleanUser} is filled with #{cleanUser} is filled with
a(href='/quotes/'+cleanUser) #{quotecount} quotes a(href='/quotes/'+cleanUser) #{quotecount} quotes
. .
div.kickcount div.kickcount
#{cleanUser} has kicked people #{kicked} times and has been kicked #{kicks} times. #{cleanUser} has kicked people #{kicked} times and has been kicked #{kicks} times.

View File

@ -1,7 +1,10 @@
h3 Users currently in #{channel} on #{connection} extends layout
div#backlink
block content
h3 Users currently in #{channel} on #{connection}
div#backlink
a(href='/channels/'+connection) « Channel List a(href='/channels/'+connection) « Channel List
ul#quotelist ul#quotelist
-each nick in nicks -each nick in nicks
a(href='/user/'+connection+'/'+channel.substr(1,channel.length)+'/'+nick) a(href='/user/'+connection+'/'+channel.substr(1,channel.length)+'/'+nick)
li.quotes #{nick} li.quotes #{nick}