Florent

Results 11 issues of Florent

Hi, I've noticed that `` tags (`ctrl`+`Enter`) were removed when using the default settings. Looking into the code, I found that the reason for this was that inside the `clean()`...

Since the plugin handles only one modal at a time, the need may arise to have one `modal:close` trigger another `modal:open` in order to implement state management. Here's an example:...

Usage: ``` js $('#ajax-link').on('modal:ajax:fail',function(event,jqXHR,textStatus,errorThrown){ //analyze here why ajax failed }); ```

The SMTP class doesn't automatically encode the `Subject` header. Is that on purpose or is it a bug?

enhancement

This is a followup of [this conversation](https://github.com/bcosca/fatfree-core/commit/5dcbd8c78adb7d594cde7bbf29eed649d0480e64#all_commit_comments). The SQL mapper tries to automatically quote the keys that are located in the `ORDER BY` clause. In most cases, this mechanism is...

v4

Hi guys, Since @ikkez has [introduced](https://github.com/bcosca/fatfree-core/commit/f304c29ceba9dff6521d50497955c5e9e04e69ce) the configurable template filters, I love this feature. It's very powerful :+1: The only thing is that arguments can be only passed to the...

enhancement

Would it make sense to have the possibility to cache values for the duration of the script? I'm thinking about mapper optimization (lazy-loaded mappers on a collection) but that could...

enhancement

This is a followup of #214. When defining a route like `GET /explorer/@path`: should encoded slashes be allowed inside `@path` or not? E.g: `/explorer/abc%2fdef`. Background: * encoded slashes used to...

Hi, this [topic](https://groups.google.com/forum/#!topic/f3-framework/7cOpHTKm-W4) made me wondering if the framework couldn't provide an easy way to manipulate the data coming from or going to the database. Easier than overloading the `get()`...

Hi there, Thanks for sharing that plugin. Here's a quick fix for issue #164, which happens when dragged elements are relatively positioned. Cheers