mirror of
https://github.com/reality/dbot.git
synced 2024-11-27 14:29:29 +01:00
add WIP
m"" # mm#mm m m mmm # m mmm mmm m m m mm mmm # # # #" " # m" " # # " "m m" #" # #" " # # # # #"# m"""# """m #m# # # # # "mm"# "#mm" # "m "mm"# "mmm" "# # # "#mm" m" ""
This commit is contained in:
parent
8e3b153f98
commit
0b44f7afb8
@ -33,7 +33,10 @@ var pages = function(dbot) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
res.render('project', {
|
res.render('project', {
|
||||||
"configList": dbot.modules.project.api.configList(), // what variable do I put here
|
"configList": dbot.modules.project.api.configList(),
|
||||||
|
"authors": dbot.modules.project.api.getAuthors(),
|
||||||
|
"credits": dbot.t("credits"),
|
||||||
|
"thanks": dbot.t("thanks"),
|
||||||
"name": dbot.config.name,
|
"name": dbot.config.name,
|
||||||
"intro": dbot.t("dbotintro", {
|
"intro": dbot.t("dbotintro", {
|
||||||
"botname": dbot.config.name
|
"botname": dbot.config.name
|
||||||
|
@ -4,7 +4,8 @@
|
|||||||
* the dbot.
|
* the dbot.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
_ = require('underscore');
|
_ = require('underscore'),
|
||||||
|
exec = require('child_process').exec;
|
||||||
|
|
||||||
var project = function(dbot) {
|
var project = function(dbot) {
|
||||||
|
|
||||||
@ -16,7 +17,7 @@ var project = function(dbot) {
|
|||||||
"username": dbot.config.dent.username
|
"username": dbot.config.dent.username
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
if(dbot.config.dent.dentQuotes) {
|
if(_.has(dbot.config.dent.dentQuotes)) {
|
||||||
list.push(dbot.t("dent-push"));
|
list.push(dbot.t("dent-push"));
|
||||||
}
|
}
|
||||||
if(_.has(dbot.modules,'link')){
|
if(_.has(dbot.modules,'link')){
|
||||||
@ -40,8 +41,15 @@ var project = function(dbot) {
|
|||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
return list;
|
return list;
|
||||||
|
},
|
||||||
|
'getAuthors': function(callback) {
|
||||||
|
var foo = ['a','b','c'];
|
||||||
|
exec("git rev-list --all | wc -l", function(error, stdout, stderr){
|
||||||
|
foo.push(stdout);
|
||||||
|
});
|
||||||
|
callback(foo);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.fetch = function(dbot){
|
exports.fetch = function(dbot){
|
||||||
|
@ -9,6 +9,12 @@
|
|||||||
"it": "{name} parla {lang} ({langen})",
|
"it": "{name} parla {lang} ({langen})",
|
||||||
"nl": "{name} spreekt {lang} ({langen})"
|
"nl": "{name} spreekt {lang} ({langen})"
|
||||||
},
|
},
|
||||||
|
"thanks": {
|
||||||
|
"en": "With thanks to:"
|
||||||
|
},
|
||||||
|
"credits": {
|
||||||
|
"en": "Authors"
|
||||||
|
},
|
||||||
"pagetitle": {
|
"pagetitle": {
|
||||||
"en": "{botname} web interface",
|
"en": "{botname} web interface",
|
||||||
"fr": "{botname} interface réseau",
|
"fr": "{botname} interface réseau",
|
||||||
|
@ -46,6 +46,13 @@ html(lang='#{curr839}')
|
|||||||
td #{milestone.closed_issues}
|
td #{milestone.closed_issues}
|
||||||
p.center
|
p.center
|
||||||
a(href="https://github.com/"+repo) #{propaganda}
|
a(href="https://github.com/"+repo) #{propaganda}
|
||||||
|
h4
|
||||||
|
#{credits}
|
||||||
|
p.center
|
||||||
|
#{thanks}
|
||||||
|
ul
|
||||||
|
each author in authors
|
||||||
|
li #{author}
|
||||||
section#config
|
section#config
|
||||||
h3 #{config}
|
h3 #{config}
|
||||||
ul
|
ul
|
||||||
|
Loading…
Reference in New Issue
Block a user