Miloslav Hůla
Miloslav Hůla
Would be nice to have a capability of automatic object to Dibi expression conversion, similar to [BackedEnum](https://github.com/dg/dibi/blob/dfd4707d53bb19ee6e5deba7d8daea61eb66ef92/src/Dibi/Translator.php#L317) conversion. # Explanation Let's start by date and time. Poor PHP support for...
Hi, I'm getting segfault with suhosin enabled. When disabled, everything works fine. Environment and steps to reproduce it: ``` # uname -a Linux jessie 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt20-1+deb8u4 (2016-02-29)...
- new feature - doc PR: will if accepted The `Future` class is a helper for "building data structures" which I use about 4 years. It is handy for small...
- new feature - BC break? no - doc PR: will Proposed `Arrays::updateDiff()` compares two associative arrays and returns such items from later one, which does not exist or differs...
- bug fix? no - new feature? yes - BC break? no - doc PR: will I'm using this abstract collection really often. Its purpose is to emulate typed array...
Pull request for [this RFC](http://forum.nette.org/en/19724-asynchronous-client-requests-in-tracy-ajax), Discuss on forum, code comments here, please.
Can be useful to receive only updated values from form/container. For example: ```php $diff = $form->getUpdatedValues(); if (count($diff)) { $db->update(...); } else { $this->flash('Nothing changed.'); } # or $this->log("User $username:",...
Version: dev (73742cf42111d3af7468fd8ae8e1dd11dd7a2c31) ### Bug Description JsonRespose uses [Json::encode()](https://github.com/nette/utils/blob/8eda0c33f798f7ce491715e9dae8797f191e9b00/src/Utils/Json.php). It has default flag `JSON_UNESCAPED_UNICODE` set. For example, encoding result of `["Předměty"]` is: ```json ["Předměty"] ``` When I decode such data...
``` $ composer create-project nette/web-project test1 cd test1 # Must set execution bit chmod 755 vendor/bin/tester chmod 755 vendor/nette/tester/src/tester # Running now works vendor/bin/tester ```
The filter values are passed to datasource callback even the form is invalid. It can be problem when sanitized value is expected, let's say MAC or IP address. Not sure...