Avinash Sonawane

Results 31 issues of Avinash Sonawane

* Docs : Clarify `addslashes` filter * Docs : Clarify `slugify` filter * Docs : Clarify `trim_start_matches` & `trim_end_matches` filters * Docs : Clarify `sort` filter * Docs: Clarify `filesizeformat`...

Hi! 1. Unique filter should be able to handle array with mixed types. E.g. ``` {{ [1, "foo", 1, true, "FOO", true, 2, "true"] | unique }} ``` Currently, this...

Hello! Consider a string literal which has all three delimiters as chars in that string then how to escape string delimiter (`'`, `` ` ``, `"`) in a string literal?...

Hello! From https://tera.netlify.app/docs/#literals: "arrays: a comma-separated list of literals and/or idents surrounded by [ and ] (trailing comma allowed)" Since array is a literal and array is a comma-separated list...

For next major version

Hello! Currently, Tera allows only `==` and `!=` [comparison ops](https://tera.netlify.app/docs/#comparisons) on strings. i.e. following usage works: ``` {{ "foo" == "bar" }} {{ "foo" != "bar" }} ``` We should...

Hello! What do you think about allowing concatenation on arrays? E.g. ``` {{ [1, 'foo', 5] ~ [8, 3] }} = [1, 'foo', 5, 8, 3] {{ [1, 'foo', 5]...

What should happen if the index falls outside the array bounds? 1. return empty string OR 2. error At present, `nth(n=-1)` gives error while `nth(n=100)` gives empty string (for array...

Hi! I would like to own the data (comments) posted on my website by using the self-hosted Gitlab instance. So is it possible to use Gitlab issues instead of Github...

Hello! While building gcompris[0], scan-build[1] reported 3 logic errors along with other trivial errors in the qml-box2d submodule. Here is the report: https://rootkea.gitlab.io/gcompris/scan-build/ Please take a look at them. And...

Hello! I'm using Firefox on Linux. The addon fails the tests [aggressive] iframe navigator.userAgent and [aggressive] iframe navigator.appVersion on https://webbrowsertools.com/useragent/ I have set userAgent string to be: `Mozilla/5.0 (Windows NT...

wontfix