This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {control formProductAdd} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| upstream huboard_unicorn { | |
| server unix:/home/hosiplan/develop/testing/huboard/tmp/unicorn.huboard.sock fail_timeout=0; | |
| } | |
| server { | |
| listen 127.0.0.1:80; | |
| server_name huboard.dev; | |
| root /home/hosiplan/develop/testing/huboard/public; | |
| try_files $uri/index.html $uri @huboard_unicorn; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function ($) { | |
| $.nette.ext('overlay', { | |
| before: function (xhr, settings) { | |
| if (!settings.nette || !settings.nette.el) { | |
| return; | |
| } | |
| var tar = $(settings.nette.el); | |
| var container = tar.closest('.ajax-overlay'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * @method onAttached(BaseControl $control, Nette\Application\UI\PresenterComponent $parent) | |
| * @method \BasePresenter getPresenter() | |
| * | |
| * @property \BasePresenter|BaseControl[] $presenter | |
| * @property-read \BasePresenter|BaseControl[] $presenter | |
| * @property \Nette\Templating\FileTemplate|\stdClass $template |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| require __DIR__ . '/../vendor/autoload.php'; | |
| $configurator = new Nette\Configurator; | |
| $configurator->setDebugMode(TRUE); // debug mode MUST NOT be enabled on production server | |
| $configurator->enableDebugger(__DIR__ . '/../log'); | |
| $configurator->setTempDirectory(__DIR__ . '/../temp'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class ExtensionTest extends Tester\TestCase | |
| { | |
| public function testMergingMetadata_simple() | |
| { | |
| $compiler = new CompilerMock(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: redis-server | |
| # Required-Start: $syslog | |
| # Required-Stop: $syslog | |
| # Should-Start: $local_fs | |
| # Should-Stop: $local_fs | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: redis-server - Persistent key-value db |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "methodCalls": [ | |
| { | |
| "class": "\\Mockery", | |
| "method": "mock", | |
| "position": 0, | |
| "mask": "%s|\\Mockery\\MockInterface" | |
| }, | |
| { | |
| "class": "\\Nette\\DI\\Container", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class TimerPanel extends Object implements IDebugPanel | |
| { | |
| const PRODLEVA = 1800; | |
| const PROTOKOL = 'file'; // safe | |
| const LOG_FILE = "/temp/timerPanel.log"; |
OlderNewer

