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
RewriteEngine On | |
RewriteRule ^(.+?)$ http://newdomain.com/$1 [L,R=301] | |
RewriteRule ^(.*)$ http://newdomain.com/$1 [L,R=301] |
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
class FooForm(Form): | |
email = StringField( | |
'Email', | |
[ | |
validators.Length( | |
min=3, | |
max=40, | |
message=u"Votre email doit comporter 3 à 40 caractères"), | |
validators.Email('Adresse mail invalide') | |
]) |
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
from wtforms import Form, BooleanField, StringField, PasswordField, validators | |
class RegistrationForm(Form): | |
username = StringField('Username', [validators.Length(min=4, max=25)]) | |
email = StringField('Email Address', [validators.Length(min=6, max=35)]) | |
password = PasswordField('New Password', [ | |
validators.DataRequired(), | |
validators.EqualTo('confirm', message='Passwords must match') | |
]) | |
confirm = PasswordField('Repeat Password') |
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
from django.core.management import call_command | |
call_command('update_index',) |
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
from django.forms.models import model_to_dict | |
class ModelDiffMixin(object): | |
""" | |
A model mixin that tracks model fields' values and provide some useful api | |
to know what fields have been changed. | |
""" | |
def __init__(self, *args, **kwargs): |
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
[filter "lfs"] | |
clean = git-lfs clean %f | |
smudge = git-lfs smudge %f | |
required = true | |
[user] | |
name = Samuel Martin | |
email = [email protected] | |
[user] | |
name = martinsam | |
email = [email protected] |
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 | |
# -- Configuration | |
REMOTE_BACKUP_DIR=/lamp0/tmp/mysql_backup | |
LOCAL_BACKUP_DIR=Your_path | |
TODAY_DATE=$(date +%F) | |
FILENAME=$TODAY_DATE.databases.sql.gz | |
SERVER='sftp.dc0.gpaas.net' | |
LOGIN=your_login_server |
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 | |
/** | |
* The base configurations of the WordPress. | |
* | |
* This file has the following configurations: MySQL settings, Table Prefix, | |
* Secret Keys, WordPress Language, and ABSPATH. You can find more information | |
* by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing | |
* wp-config.php} Codex page. You can get the MySQL settings from your web host. | |
* | |
* This file is used by the wp-config.php creation script during the |
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
# coding: utf8 | |
from selenium import webdriver | |
from selenium.webdriver.common.keys import Keys | |
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities | |
desired_cap = { | |
'plateform': "OS X Yosemite", | |
'browserName': "Firefox", |
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
<!-- result list --> | |
<th####> | |
Solde | |
</th####><table cellspacing="0"> | |
<thead> | |
<tr> | |
<th> | |
<a href="?state__exact=ACTIVE&ot=asc&o=0"> |