better template text

This commit is contained in:
Adam D. Ruppe 2012-11-19 09:37:10 -05:00
parent c1af333c6b
commit 920bdd84ae
1 changed files with 36 additions and 10 deletions

46
web.d
View File

@ -3039,27 +3039,46 @@ struct TemplateFilters {
} }
string plural(string replacement, string[] args, in Element, string) { string plural(string replacement, string[] args, in Element, string) {
if(replacement.length == 0) return pluralHelper(args.length ? args[0] : null, replacement);
return replacement; }
string pluralHelper(string number, string word) {
if(word.length == 0)
return word;
int count = 0; int count = 0;
if(args.length && std.string.isNumeric(args[0])) if(number.length && std.string.isNumeric(number))
count = to!int(args[0]); count = to!int(number);
if(count == 1) if(count == 1)
return replacement; // it isn't actually plural return word; // it isn't actually plural
switch(replacement[$ - 1]) { switch(word[$ - 1]) {
case 's': case 's':
case 'a', 'e', 'i', 'o', 'u': case 'a', 'e', 'i', 'o', 'u':
return replacement ~ "es"; return word ~ "es";
case 'f': case 'f':
return replacement[0 .. $-1] ~ "ves"; return word[0 .. $-1] ~ "ves";
default: default:
return replacement ~ "s"; return word ~ "s";
} }
} }
// replacement is the number here, and args is some text to write
// it goes {$count|cnt thing(s)}
string cnt(string replacement, string[] args, in Element, string) {
string s = replacement;
foreach(arg; args) {
s ~= " ";
if(arg.endsWith("(s)"))
s ~= pluralHelper(replacement, arg[0 .. $-3]);
else
s ~= arg;
}
return s;
}
static auto defaultThings() { static auto defaultThings() {
string delegate(string, string[], in Element, string)[string] pipeFunctions; string delegate(string, string[], in Element, string)[string] pipeFunctions;
TemplateFilters filters; TemplateFilters filters;
@ -3161,8 +3180,15 @@ string htmlTemplateWithData(in string text, in string[string] vars, in string de
foreach(ref arg; pipeArgs) { foreach(ref arg; pipeArgs) {
if(arg.length && arg[0] == '$') { if(arg.length && arg[0] == '$') {
string n = arg[1 .. $]; string n = arg[1 .. $];
auto idx = n.indexOf("(");
string moar;
if(idx != -1) {
moar = n[idx .. $];
n = n[0 .. idx];
}
if(n in vars) if(n in vars)
arg = vars[n]; arg = vars[n] ~ moar;
} }
} }