-
Updated
Jun 2, 2020 - PHP
Nette
Nette Framework is a popular tool for PHP web development. It is designed to be as usable and as friendly as possible. It focuses on security and performance and is definitely one of the safest PHP frameworks.
Here are 446 public repositories matching this topic...
-
Updated
May 24, 2020 - PHP
-
Updated
Jun 8, 2020 - PHP
-
Updated
Jun 9, 2020 - PHP
-
Updated
May 11, 2020 - PHP
-
Updated
May 11, 2020 - PHP
Version: v3.0.1
Bug Description
In case of this config file:
services:
userManager: Model\User\UserManager(%security.admin%, %security.user%)when parameter 'security.user' does not exist Exception is:
<img width="922" alt="Snímek obrazovky 2019-08-25 v 19 44 00" src="https://user-images.githubusercontent.com/4738758/63653756-42f38c00-c771-11e9-9e5f-b71208933
- bug report? maybe
- feature request? no
- version: 2.4
Description
Hello,
I'm migrating one old project from Nette 2.2-dev to 2.4 and i've realized that new latte doesn't support "AND" keyword in if condition. I can't find any reason why it was removed. Documentation says "Conditions behave exactly the same way as their PHP counterparts". Modify all templates to use "&&" was pain an
-
Updated
May 27, 2020 - PHP
-
Updated
Jun 3, 2020 - PHP
Example:
$pattern = "sign/in";
$actual = "https://test.dev/sign/in?_fid=j3o0";
\Tester\Assert::match($pattern, $actual);
Current tester output:
Failed: 'https://test.dev/sign/in?_fid=j3o0' should match
... 'sign/in' in testAbc()
It would nice something like:
Failed: 'wrong pattern format given.'
Failed: 'https://test.dev/sign/in?_fid=j3o0' should matc
- bug report? no
- feature request? yes
- version: 2.4
Description
I'm just starting to learn Nette and after looking through documentation and example code i tried to setup a very simple Form. The Form rendered fine, but the onSuccess handler was never executed and it took me a very long time to figure out the problem:
I created a Nette\Forms\Form-Object instead of the `Nette\Appli
It's unwanted feature that grid remembers active page when grid is opened next time. Is it possible to suppress remembering of active page?
Is there any workaround how to delete it from session data? What's active page parameter name?
-
Updated
May 11, 2020 - PHP
Version: ^3.0
Bug Description
Wrong SQL generation for joining tables with DELETE.
Steps To Reproduce
This code
$this->database->table('is_document_item')
->where('document.code', 202750006)
->where('amount', 0)
->fetchAll();generates this query:
SELECT `is_document_item`.`id`
FROM `is_document_item`
LE-
Updated
Jun 5, 2020 - PHP
-
Updated
Jun 9, 2020 - PHP
when you set escaped string to document.title
document.title = ">"
the result is still escaped, windows title shows >
it is not decoded like
$('<div/>').html(">").text();
where the final string is >
-
Updated
Jun 8, 2020 - HTML
-
Updated
Jun 7, 2020 - PHP
-
Updated
May 11, 2020 - PHP
-
Updated
May 11, 2020 - PHP
Good news everyone,
as all we know Latte filters are applied from left to right - except |noecape. Internaly ecaping is just a flag turning off escaping of current literal. (Hope I've found the correct source doing this.)
In documentation there is no mention the order in filters of |noescape matters.
PS: I'd like to add this note, bute there's no way how to edit Latte docs.
-
Updated
Jun 8, 2020 - PHP
-
Updated
May 11, 2020 - PHP
-
Updated
Feb 20, 2019 - PHP
-
Updated
May 14, 2020 - PHP
Created by David Grudl
Released 2008
Latest release over 1 year ago
- Repository
- nette/nette
- Website
- nette.org
Description
There are few examples on website, but otherwise there is nothing else.
To fully understand the syntax of the file a grammar definitions are required. Take a look at http://json.org/ for a good example.
Steps To Reproduce