vti / bootylicious

LIghtweight blog engine on Mojo steroids!
84 stars 13 forks source link

Acticle filename format #15

Closed yko closed 14 years ago

yko commented 14 years ago

In bootylicious manual articles filename format described as: YYYYMMDD-title.EXTENSION YYYYMMDDTHH:MM:SS-title.EXTENSION

And it works fine, except getting full article's body via '/articles/:year/:month/:alias' In first case for any page we get 404 because of line 631: my $timestamp_re = qr/^$year$month\d\dT.*?-$alias./;

mb better change it for something like qr/^$year$month\d\d.*?-$alias./ ...