Skip to content

Commit ff9818b

Browse files
author
Tom Boutell
committed
* Refactoring to please jshint and fix various bugs
* "query" and "date" filters for rendering query strings from data structures and rendering dates nicely (the latter is based on moment) * apos.tagsToString and apos.tagsToArray go between comma separated string and array representations of tag lists (browser uses these to create arrays before submission) * apos.sanitizeTags (server side) makes sure a tag array really is one * Too many bug fixes to count * getPage also passes bestPage and remainder arguments. See the pages module for the utility of these
1 parent 03fc651 commit ff9818b

File tree

8 files changed

+780
-416
lines changed

8 files changed

+780
-416
lines changed

.jshintrc

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"curly": true,
3+
"eqeqeq": true,
4+
"immed": true,
5+
"latedef": true,
6+
"newcap": true,
7+
"noarg": true,
8+
"sub": true,
9+
"undef": true,
10+
"boss": true,
11+
"eqnull": true,
12+
"node": true,
13+
"es5": true
14+
}

0 commit comments

Comments
 (0)