• DELETE FROM KEYWORDS WHERE ID_DOMAINE=43470
  • DoneDoneDone

    URL:quefaitlapolice.samizdat.net

    Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Connection: close
    Date: Wed, 30 Oct 2024 22:15:11 GMT
    Pragma: no-cache
    Transfer-Encoding: chunked
    Content-Type: text/html; charset=UTF-8
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Server: Apache/2.2.15 (CentOS)
    Set-Cookie: PHPSESSID=fr0ktsmgns9b959f5iv0ljlo25; path=/
    X-Powered-By: PHP/5.3.3
    X-Pingback: http://quefaitlapolice.samizdat.net/xmlrpc.php
    
    
    Status => 200
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    
    <head profile="http://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    
    <title>QUE FAIT LA POLICE ?  </title>
    
    <meta name="generator" content="WordPress 4.2.2" /> <!-- pour nos statistiques, ne changez pas cela -->
    
    <link rel="stylesheet" href="http://quefaitlapolice.samizdat.net/wp-content/themes/default/style.css" type="text/css" media="screen" />
    <link rel="alternate" type="application/rss+xml" title="Flux RSS de QUE FAIT LA POLICE ?" href="http://quefaitlapolice.samizdat.net/?feed=rss2" />
    <link rel="pingback" href="http://quefaitlapolice.samizdat.net/xmlrpc.php" />
    
    <style type="text/css" media="screen">
    /* Pour pouvoir travailler avec les differentes installations de WordPress, les images sont
      referencees d'ici, et non depuis le fichier wp-layout.css. Si vous preferez utiliser CSS
      pour tout, effacez ces quelques lignes, ainsi que les fichiers d'image. */
    		
    	body { background: url("http://quefaitlapolice.samizdat.net/wp-content/themes/default/images/kubrickbgcolor.jpg"); }	
    	#page { background: url("http://quefaitlapolice.samizdat.net/wp-content/themes/default/images/kubrickbg.jpg") repeat-y top; border: none; }
    	#header { background: url("http://quefaitlapolice.samizdat.net/wp-content/themes/default/images/kubrickheader.jpg") no-repeat bottom center; }
    	#footer { background: url("http://quefaitlapolice.samizdat.net/wp-content/themes/default/images/kubrickfooter.jpg") no-repeat bottom; border: none;}
    
    /* Etant donn� que ce modele a une taille diff�rente avec les images, il nous faut declarer ce qui suit.
     Si vous ne voulez pas utiliser les images du modele, vous pouvez egalement effacer ces deux lignes.*/
    		
    	#header 	{ margin: 0 !important; margin: 0 0 0 1px; padding: 1px; height: 198px; width: 758px; }
    	#headerimg 	{ margin: 7px 9px 0; height: 192px; width: 740px; } 
    
    /* Pour faciliter l'implementation d'une image personnelle d'en-tete, j'ai fait en sorte
      que vous puissiez simplement placer une image 'personnalheader.jpg' dans le dossier /images/.
      Ses dimensions devront �tre au moins de 760 pixels par 200 pixels. Tout ce qui d�passera ne sera
      pas affich�.
    */
    
    	/*
    	#headerimg { background: url('http://quefaitlapolice.samizdat.net/wp-content/themes/default/images/personalheader.jpg') no-repeat top;}
    	*/
    </style>
    
    		<script type="text/javascript">
    			window._wpemojiSettings = {"baseUrl":"http:\/\/s.w.org\/images\/core\/emoji\/72x72\/","ext":".png","source":{"wpemoji":"http:\/\/quefaitlapolice.samizdat.net\/wp-includes\/js\/wp-emoji.js?ver=4.2.2","twemoji":"http:\/\/quefaitlapolice.samizdat.net\/wp-includes\/js\/twemoji.js?ver=4.2.2"}};
    			( function( window, document, settings ) {
    	var src, ready;
    
    	/**
    	 * Detect if the browser supports rendering emoji or flag emoji. Flag emoji are a single glyph
    	 * made of two characters, so some browsers (notably, Firefox OS X) don't support them.
    	 *
    	 * @since 4.2.0
    	 *
    	 * @param type {String} Whether to test for support of "simple" or "flag" emoji.
    	 * @return {Boolean} True if the browser can render emoji, false if it cannot.
    	 */
    	function browserSupportsEmoji( type ) {
    		var canvas = document.createElement( 'canvas' ),
    			context = canvas.getContext && canvas.getContext( '2d' );
    
    		if ( ! context || ! context.fillText ) {
    			return false;
    		}
    
    		/*
    		 * Chrome on OS X added native emoji rendering in M41. Unfortunately,
    		 * it doesn't work when the font is bolder than 500 weight. So, we
    		 * check for bold rendering support to avoid invisible emoji in Chrome.
    		 */
    		context.textBaseline = 'top';
    		context.font = '600 32px Arial';
    
    		if ( type === 'flag' ) {
    			/*
    			 * This works because the image will be one of three things:
    			 * - Two empty squares, if the browser doesn't render emoji
    			 * - Two squares with 'G' and 'B' in them, if the browser doesn't render flag emoji
    			 * - The British flag
    			 *
    			 * The first two will encode to small images (1-2KB data URLs), the third will encode
    			 * to a larger image (4-5KB data URL).
    			 */
    			context.fillText( String.fromCharCode( 55356, 56812, 55356, 56807 ), 0, 0 );
    			return canvas.toDataURL().length > 3000;
    		} else {
    			/*
    			 * This creates a smiling emoji, and checks to see if there is any image data in the
    			 * center pixel. In browsers that don't support emoji, the character will be rendered
    			 * as an empty square, so the center pixel will be blank.
    			 */
    			context.fillText( String.fromCharCode( 55357, 56835 ), 0, 0 );
    			return context.getImageData( 16, 16, 1, 1 ).data[0] !== 0;
    		}
    	}
    
    	function addScript( src ) {
    		var script = document.createElement( 'script' );
    
    		script.src = src;
    		script.type = 'text/javascript';
    		document.getElementsByTagName( 'head' )[0].appendChild( script );
    	}
    
    	settings.supports = {
    		simple: browserSupportsEmoji( 'simple' ),
    		flag:   browserSupportsEmoji( 'flag' )
    	};
    
    	settings.DOMReady = false;
    	settings.readyCallback = function() {
    		settings.DOMReady = true;
    	};
    
    	if ( ! settings.supports.simple || ! settings.supports.flag ) {
    		ready = function() {
    			settings.readyCallback();
    		};
    
    		if ( document.addEventListener ) {
    			document.addEventListener( 'DOMContentLoaded', ready, false );
    			window.addEventListener( 'load', ready, false );
    		} else {
    			window.attachEvent( 'onload', ready );
    			document.attachEvent( 'onreadystatechange', function() {
    				if ( 'complete' === document.readyState ) {
    					settings.readyCallback();
    				}
    			} );
    		}
    
    		src = settings.source || {};
    
    		if ( src.concatemoji ) {
    			addScript( src.concatemoji );
    		} else if ( src.wpemoji && src.twemoji ) {
    			addScript( src.twemoji );
    			addScript( src.wpemoji );
    		}
    	}
    
    } )( window, document, window._wpemojiSettings );
    		</script>
    		<style type="text/css">
    img.wp-smiley,
    img.emoji {
    	display: inline !important;
    	border: none !important;
    	box-shadow: none !important;
    	height: 1em !important;
    	width: 1em !important;
    	margin: 0 .07em !important;
    	vertical-align: -0.1em !important;
    	background: none !important;
    	padding: 0 !important;
    }
    </style>
    <link rel='stylesheet' id='sociable-front-css-css'  href='http://quefaitlapolice.samizdat.net/wp-content/plugins/sociable/sociable.css?ver=4.2.2' type='text/css' media='all' />
    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://quefaitlapolice.samizdat.net/xmlrpc.php?rsd" />
    <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://quefaitlapolice.samizdat.net/wp-includes/wlwmanifest.xml" /> 
    <meta name="generator" content="WordPress 4.2.2" />
    </head>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    
    <head profile="http://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    
    <title>QUE FAIT LA POLICE ?  </title>
    
    <meta name="generator" content="WordPress 4.2.2" /> <!-- pour nos statistiques, ne changez pas cela -->
    
    <link rel="stylesheet" href="http://quefaitlapolice.samizdat.net/wp-content/themes/default/style.css" type="text/css" media="screen" />
    <link rel="alternate" type="application/rss+xml" title="Flux RSS de QUE FAIT LA POLICE ?" href="http://quefaitlapolice.samizdat.net/?feed=rss2" />
    <link rel="pingback" href="http://quefaitlapolice.samizdat.net/xmlrpc.php" />
    
    <style type="text/css" media="screen">
    /* Pour pouvoir travailler avec les differentes installations de WordPress, les images sont
      referencees d'ici, et non depuis le fichier wp-layout.css. Si vous preferez utiliser CSS
      pour tout, effacez ces quelques lignes, ainsi que les fichiers d'image. */
    		
    	body { background: url("http://quefaitlapolice.samizdat.net/wp-content/themes/default/images/kubrickbgcolor.jpg"); }	
    	#page { background: url("http://quefaitlapolice.samizdat.net/wp-content/themes/default/images/kubrickbg.jpg") repeat-y top; border: none; }
    	#header { background: url("http://quefaitlapolice.samizdat.net/wp-content/themes/default/images/kubrickheader.jpg") no-repeat bottom center; }
    	#footer { background: url("http://quefaitlapolice.samizdat.net/wp-content/themes/default/images/kubrickfooter.jpg") no-repeat bottom; border: none;}
    
    /* Etant donn� que ce modele a une taille diff�rente avec les images, il nous faut declarer ce qui suit.
     Si vous ne voulez pas utiliser les images du modele, vous pouvez egalement effacer ces deux lignes.*/
    		
    	#header 	{ margin: 0 !important; margin: 0 0 0 1px; padding: 1px; height: 198px; width: 758px; }
    	#headerimg 	{ margin: 7px 9px 0; height: 192px; width: 740px; } 
    
    /* Pour faciliter l'implementation d'une image personnelle d'en-tete, j'ai fait en sorte
      que vous puissiez simplement placer une image 'personnalheader.jpg' dans le dossier /images/.
      Ses dimensions devront �tre au moins de 760 pixels par 200 pixels. Tout ce qui d�passera ne sera
      pas affich�.
    */
    
    	/*
    	#headerimg { background: url('http://quefaitlapolice.samizdat.net/wp-content/themes/default/images/personalheader.jpg') no-repeat top;}
    	*/
    </style>
    
    		<script type="text/javascript">
    			window._wpemojiSettings = {"baseUrl":"http:\/\/s.w.org\/images\/core\/emoji\/72x72\/","ext":".png","source":{"wpemoji":"http:\/\/quefaitlapolice.samizdat.net\/wp-includes\/js\/wp-emoji.js?ver=4.2.2","twemoji":"http:\/\/quefaitlapolice.samizdat.net\/wp-includes\/js\/twemoji.js?ver=4.2.2"}};
    			( function( window, document, settings ) {
    	var src, ready;
    
    	/**
    	 * Detect if the browser supports rendering emoji or flag emoji. Flag emoji are a single glyph
    	 * made of two characters, so some browsers (notably, Firefox OS X) don't support them.
    	 *
    	 * @since 4.2.0
    	 *
    	 * @param type {String} Whether to test for support of "simple" or "flag" emoji.
    	 * @return {Boolean} True if the browser can render emoji, false if it cannot.
    	 */
    	function browserSupportsEmoji( type ) {
    		var canvas = document.createElement( 'canvas' ),
    			context = canvas.getContext && canvas.getContext( '2d' );
    
    		if ( ! context || ! context.fillText ) {
    			return false;
    		}
    
    		/*
    		 * Chrome on OS X added native emoji rendering in M41. Unfortunately,
    		 * it doesn't work when the font is bolder than 500 weight. So, we
    		 * check for bold rendering support to avoid invisible emoji in Chrome.
    		 */
    		context.textBaseline = 'top';
    		context.font = '600 32px Arial';
    
    		if ( type === 'flag' ) {
    			/*
    			 * This works because the image will be one of three things:
    			 * - Two empty squares, if the browser doesn't render emoji
    			 * - Two squares with 'G' and 'B' in them, if the browser doesn't render flag emoji
    			 * - The British flag
    			 *
    			 * The first two will encode to small images (1-2KB data URLs), the third will encode
    			 * to a larger image (4-5KB data URL).
    			 */
    			context.fillText( String.fromCharCode( 55356, 56812, 55356, 56807 ), 0, 0 );
    			return canvas.toDataURL().length > 3000;
    		} else {
    			/*
    			 * This creates a smiling emoji, and checks to see if there is any image data in the
    			 * center pixel. In browsers that don't support emoji, the character will be rendered
    			 * as an empty square, so the center pixel will be blank.
    			 */
    			context.fillText( String.fromCharCode( 55357, 56835 ), 0, 0 );
    			return context.getImageData( 16, 16, 1, 1 ).data[0] !== 0;
    		}
    	}
    
    	function addScript( src ) {
    		var script = document.createElement( 'script' );
    
    		script.src = src;
    		script.type = 'text/javascript';
    		document.getElementsByTagName( 'head' )[0].appendChild( script );
    	}
    
    	settings.supports = {
    		simple: browserSupportsEmoji( 'simple' ),
    		flag:   browserSupportsEmoji( 'flag' )
    	};
    
    	settings.DOMReady = false;
    	settings.readyCallback = function() {
    		settings.DOMReady = true;
    	};
    
    	if ( ! settings.supports.simple || ! settings.supports.flag ) {
    		ready = function() {
    			settings.readyCallback();
    		};
    
    		if ( document.addEventListener ) {
    			document.addEventListener( 'DOMContentLoaded', ready, false );
    			window.addEventListener( 'load', ready, false );
    		} else {
    			window.attachEvent( 'onload', ready );
    			document.attachEvent( 'onreadystatechange', function() {
    				if ( 'complete' === document.readyState ) {
    					settings.readyCallback();
    				}
    			} );
    		}
    
    		src = settings.source || {};
    
    		if ( src.concatemoji ) {
    			addScript( src.concatemoji );
    		} else if ( src.wpemoji && src.twemoji ) {
    			addScript( src.twemoji );
    			addScript( src.wpemoji );
    		}
    	}
    
    } )( window, document, window._wpemojiSettings );
    		</script>
    		<style type="text/css">
    img.wp-smiley,
    img.emoji {
    	display: inline !important;
    	border: none !important;
    	box-shadow: none !important;
    	height: 1em !important;
    	width: 1em !important;
    	margin: 0 .07em !important;
    	vertical-align: -0.1em !important;
    	background: none !important;
    	padding: 0 !important;
    }
    </style>
    <link rel='stylesheet' id='sociable-front-css-css'  href='http://quefaitlapolice.samizdat.net/wp-content/plugins/sociable/sociable.css?ver=4.2.2' type='text/css' media='all' />
    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://quefaitlapolice.samizdat.net/xmlrpc.php?rsd" />
    <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://quefaitlapolice.samizdat.net/wp-includes/wlwmanifest.xml" /> 
    <meta name="generator" content="WordPress 4.2.2" />
    </head>
    

    QUE FAIT LA POLICE ?

    Recherche META Description de la page

    Recherche META Keywords de la page

    UPDATE DOMAINES SET server='Apache/2.2.15 (CentOS)',redirection='',Status='200',err='',[TITRE]=N'QUE FAIT LA POLICE ?',[DESCRIPTION]=N'',[KEYWORDS]=N'' WHERE id=43470
  • 0

    QUE FAIT LA POLICE ?

  • 0. QUE (3)
  • --------->0
  • 1. FAIT (4)
  • --------->0
  • 2. LA (2)
  • --------->0
  • 3. POLICE (6)
  • --------->0
  • 4. ? (1)
  • --------->0
    INSERT INTO KEYWORDS (keyword,id_domaine) VALUES (N'QUE',43470),(N'FAIT',43470),(N'LA',43470),(N'POLICE',43470),(N'?',43470)