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 | |
private function getCurrentRule() { | |
$return = false; | |
$rules = array_reverse($this->getRules()); | |
$today = time() ; | |
$year = Date('Y') ; | |
$day = Date('d') ; | |
$month = Date('m') ; |
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
#!/bin/bash | |
# Author: Michaël Marinetti | |
# Description: in each files ( $ext extension) | |
# if they not contains $search add $content (absolute path) before $add_before (a vim regex, beginning with / or ?) | |
dir=www | |
ext="htm" | |
search="_setAccount" | |
content=~/correct-html-header | |
add_before="/<\/head>/-1" |
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
$ svn diff | |
Index: classes/AdminTab.php | |
=================================================================== | |
--- classes/AdminTab.php (revision 15980) | |
+++ classes/AdminTab.php (working copy) | |
@@ -1524,6 +1524,8 @@ | |
echo Tools::displayDate($tr[$key], (int)$cookie->id_lang); | |
elseif (isset($params['type']) AND $params['type'] == 'datetime') | |
echo Tools::displayDate($tr[$key], (int)$cookie->id_lang, true); | |
+ elseif (isset($params['type']) AND $params['type'] == 'log') |
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
Etat HTTP 500 - | |
type Rapport d'exception | |
message | |
description Le serveur a rencontré une erreur interne () qui l'a empêché de satisfaire la requête. | |
exception |
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
1) chown root:sftp /home/web -R | |
fortement basé sur http://shapeshed.com/chroot_sftp_users_on_ubuntu_intrepid/ , et un grand merci à la communauté freenode/gandi-hosting ! | |
---------------------------------------------------- | |
# Package generated configuration file | |
# See the sshd_config(5) manpage for details |
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
read oldrev newrev refname | |
branch=${refname#refs/heads/} | |
dir_develop=/home/www/dev.mywebsite.com | |
dir_master=/home/www/mywebsite.com | |
[email protected] | |
if (test "$branch" = "develop") then | |
cd $dir_develop |
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
#!/bin/bash | |
# list of colors, just what I use for test | |
txtrst=\[\033[00m\] # no color | |
txtred=\[\033[31m\] # Red | |
txtred=\[\033[32m\] # Green | |
txtblu=\[\033[34m\] # Blue | |
RANDOM_PROMPT() | |
{ |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> | |
<head> | |
<link href="/js/jquery/jquery.cleditor.css" rel="stylesheet" type="text/css"/> | |
<script type="text/javascript" src="/js/jquery.min.js"></script> | |
<script type="text/javascript" src="/js/jquery/jquery.cleditor.js"></script> | |
<script type="text/javascript" src="/js/jquery/jquery.form.js"></script> | |
<script type="text/javascript"> | |
$("#myform").submit(function(e){ |
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
" progressively check higher values... falls out on first "true" | |
" (note addition of zero ... this guarantees return from function is numeric | |
if strftime("%H") < 6 + 0 | |
colorscheme darkblue | |
echo "setting colorscheme to darkblue" | |
elseif strftime("%H") < 12 + 0 | |
colorscheme morning | |
echo "setting colorscheme to morning" | |
elseif strftime("%H") < 18 + 0 | |
colorscheme shine |
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
#!/bin/bash | |
# | |
# file : serveur-prod:/home/git/scripts/deploy | |
# desc : This script deploy a pushed branch in web directory specified in conf/$repo-name.conf | |
# | |
# author : Michaël Marinetti | |
# creation : 2012-09-07 | |
# modified : 2013-01-24 | |
# | |
# LOG |
OlderNewer