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
div#console { | |
font-family: 'Ubuntu Mono'; | |
font-size: 12px; | |
background-color: red; | |
} |
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
<div class="span4"> | |
<div class="well"> | |
<span class="garantion cs" rel="tooltip" data-placement="right" title="" data-original-title="Zaregistrujte se do systému ePoptávka.cz a získejte roční garanci spokojenosti. Pokud nezískáte pomocí naší služby jedinou zakázku, vrátíme Vám celý poplatek zpět!"></span> | |
<h3><span class="label label-success" style=" | |
position: absolute; | |
top: -18px; | |
left: 105px; | |
font-size: 12px; | |
padding: 5px; | |
border-radius: 0; |
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
#!/usr/bin/env bash | |
apt-get -y install build-essential zlib1g-dev libssl-dev libreadline-dev libyaml-dev | |
cd /tmp | |
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p125.tar.gz | |
tar -xvzf ruby-1.9.3-p125.tar.gz | |
cd ruby-1.9.3-p125/ | |
./configure --prefix=/usr/local | |
make | |
make install | |
gem install chef ruby-shadow --no-ri --no-rdoc |
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 | |
namespace Simpleshop\Modules\Admin\Presenters; | |
use Nette\Application\UI\Presenter; | |
use Simpleshop\Modules\Admin\Events\MenuEvent; | |
use Smf\Events\IEventDispatcher; | |
use Smf\Menu\Control\Factory; | |
abstract class BasePresenter extends Presenter | |
{ |