Jason Moiron

Results 9 issues of Jason Moiron

Ex., if you have: ``` go type Person struct { Joined time.Time } ``` You should be able to do: ``` mandira {{#people}} {{Joined.Hour}} {{/people}} ``` Currently, this is done...

Restore mustache's ability to embed other templates. Originally I eschewed this because I felt it would add a lot of complexity to the rendering process. I still think it does,...

In a bid to increase the flexibility of conditionals an elseif should be added. Real conditional logic was avoided in django for years and lack of `else if` was for...

Currently, this won't work: ``` mandira {{?if someBool }} ... {{/if}} ``` False values should be: `""`, `0`, and `false`. For containers, you should use `container|len` (presently, `container|len == 0`...

From a bug report in IRC. With a pg table defined like this: ``` sql id uuid primary key default uuid_generate_v4() ``` The Dialect `InsertAutoIncr(...) (int64, error)` obviously fails scanning...

useful for seeing what in a subdir might not be added already, similar to how `git st` works.

Having thought over `sqlx.In` and the way it interacts with `sqlx.BindNamed` for a while, I've started to also explore other ways that sqlx can help people with their queries. Besides...

enhancement
question

lxml.html.clean cannot clean some raw text (in titles, descriptions, etc); particularly, text that might look like html but isn't. The first case I noticed was the tag "<3" will fail...

- [x] fix blog rss - [x] fix blog atom - [x] fix cache headers on static - [x] there were still some weird issues here, serving static directly from...