This file contains 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
<VirtualHost *:80> | |
ServerName git.server | |
ServerAdmin webmaster@git.server | |
DocumentRoot /usr/share/gitweb | |
<Directory /usr/share/gitweb> | |
Options FollowSymLinks ExecCGI | |
AddHandler cgi-script cgi | |
RewriteEngine On | |
RewriteCond %{REQUEST_FILENAME} !-f |
This file contains 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 App\Wdog\Traits; | |
use App\Wdog\Entities\LogAction; | |
use Auth; | |
use Carbon\Carbon; | |
use Illuminate\Database\Eloquent\Model; | |
This file contains 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 | |
/** @var Nayjest\Grids\Filter $filter */ | |
/** @var Nayjest\Grids\SelectFilterConfig $cfg */ | |
$cfg = $filter->getConfig(); | |
$onchange = ''; | |
if (method_exists($cfg, 'isSubmittedOnChange') && $cfg->isSubmittedOnChange()) { | |
$onchange = 'onchange="this.form.submit()"'; | |
} | |
?> | |
<select |
This file contains 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 | |
/** @var Nayjest\Grids\Filter $filter */ | |
?> | |
<input | |
form="form_<?= $grid->getConfig()->getName() ?>" | |
class="form-control input-sm" | |
name="<?= $filter->getInputName() ?>" | |
value="<?= $filter->getValue() ?>" | |
/> |
This file contains 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 | |
$form_unique_id = uniqid(); | |
?> | |
<form id="form_<?= $grid->getConfig()->getName() ?>"></form> | |
<?php | |
/** @var Nayjest\Grids\DataProvider $data * */ | |
/** @var Nayjest\Grids\Grid $grid * */ | |
?> | |
<table class="table table-striped" id="<?= $grid->getConfig()->getName() ?>"> |
This file contains 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
server { | |
listen 80; | |
server_name test.app; | |
root "/var/www/html"; | |
index index.html index.htm index.php; | |
charset utf-8; | |
location / { |
This file contains 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
<script language="javascript"> | |
var deleter = { | |
linkSelector: "a[data-delete]", | |
modalTitle: "Confermi Eliminazione?", | |
modalMessage: "Questo dato non potra' essere recuperato?", | |
modalCancelButtonText:'Annulla', | |
modalConfirmButtonText: "Si Elimina!", | |
laravelToken: null, | |
url: "/", |
This file contains 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
var elixir = require('laravel-elixir'); | |
/* | |
|-------------------------------------------------------------------------- | |
| Elixir Asset Management | |
|-------------------------------------------------------------------------- | |
| | |
| Elixir provides a clean, fluent API for defining some basic Gulp tasks | |
| for your Laravel application. By default, we are compiling the Sass | |
| file for our application, as well as publishing vendor resources. |
This file contains 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
################################# | |
# | |
# Backend | |
# | |
################################# | |
# Backend to use: "xrender" or "glx". | |
# GLX backend is typically much faster but depends on a sane driver. | |
backend = "glx"; |
This file contains 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
# Use Xft? | |
use_xft yes | |
xftfont mono:size=8 | |
xftalpha 0.8 | |
text_buffer_size 2048 | |
# Update interval in seconds | |
update_interval 1 | |
# This is the number of times Conky will update before quitting. |
OlderNewer