'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Santa Claus Is a Stinker

Santa Claus Is a Stinker or Le Père Noël est une ordure was a cult French comedy play created in 1979 by the troupe Le Splendid and turned into a film directed by Jean-Marie Poiré in 1982.

Plot

Pierre a stuffy, self-righteous volunteer at a telephone helpline for depressed people and his well-meaning but naïve co-worker Thérèse, are stuck with the Christmas Eve shift in the Paris office, much to their displeasure.

The building's lift is malfunctioning, and they receive visits from unwanted callers: Katia, a depressed transvestite who tries to hit on Pierre, M. Preskovic who lives in the same building and always turns up unexepectedly to offer them various unappetizing pastries and Josette, a heavily pregnant woman on the run from her violent fiancé Félix. Félix is working as a Santa Claus during the season and turns up on her trail in costume and brandishing a gun. Félix and Josette, a caricature trailer trash couple, end up struggling over the gun and accidentally shooting dead the lift repairman, whom they then butcher and feed to zoo animals.

Une

Une is a municipality and town of Colombia in the department of Cundinamarca.

Gallery

  • Une.jpg
  • Agroecology

  • Agroecology

    Coordinates: 4°24′07″N 74°01′30″W / 4.40194°N 74.02500°W / 4.40194; -74.02500

    This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Une

    UNE

    UNE can mean:

  • Universidad del Noreste (University of the Northeast), Tampico, Tamaulipas, Mexico
  • University of New England (Australia), in New South Wales
  • University of New England (United States), in Biddeford, Maine
  • Unbundled Network Element, a telecommunications regulation requirement in the United States
  • Ubuntu Netbook Edition, a version of the Ubuntu operating system customized for netbook computers
  • Any of a number of standards released by AENOR, the Spanish member organization of the International Organization for Standardization. A UNE or UNE-EN standard is similar to an ISO standard
  • Unidad Nacional de la Esperanza (National Unity of Hope), a political party in Guatemala
  • In French language, une means "one."

    Une was the chemical symbol for Unnilennium, the former name of the chemical element Meitnerium (Mt), element 109.

    This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/UNE

    Podcasts:

    • Le père Noël est une ordure - le gâteau

      published: 03 Jan 2020
    • Oh Putin d'ta mère Salope! Le Père Noël est une ordure - Thierry Lhermitte & Anémone

      Abonnez-vous à ma chaîne: https://www.youtube.com/channel/UC1YgKCMhSA3Vgz4p7fdhOnQ/?sub_confirmation=1 Le Père Noël est une ordure (1982) Thierry Lhermitte & Anémone également: Preskovic présente Cloug https://youtu.be/cMFR_0LiUME Dubitchou https://youtu.be/X-4UPGVxKgc Le cadeau de Thérèse pour Pierre https://youtu.be/rezRIUBq5zA Mais qu'est-ce que c'est qu'cette matière? C'est d'la merde? https://youtu.be/giol2pJAwuY Destinée - Slow Erotique entre Pierre et Katia https://youtu.be/sXqCUjVFVJs Visitez ma chaîne: https://www.youtube.com/channel/UC1YgKCMhSA3Vgz4p7fdhOnQ

      published: 14 Apr 2019
    • LE PÈRE NOËL EST UNE ORDURE - Extrait #2 - Gérard Jugnot / Marie-Anne Chazel / Christian Clavier

      LE PÈRE NOËL EST UNE ORDURE – Extrait #2 – Gérard Jugnot / Marie-Anne Chazel / Christian Clavier / Thierry Lhermitte / Anémone A l'occasion des fêtes de Noël, (re)découvrez LE PÈRE NOËL EST UNE ODURE, le film culte de Jean-Marie Poiré avec toute la bande du Splendid ! Réalisé par Jean-Marie Poiré (1982) Avec Gérard Jugnot, Marie-Anne Chazel, Christian Clavier, Anémone, Thierry Lhermitte, Josiane Balasko Synopsis : Félix, déguisé en Père Noël, distribue des prospectus pour un réveillon sexy. Evincé par un Père Noël africain, il rejoint sa roulotte où il retrouve Josette, sa compagne, sur le point de le quitter. Il la poursuit. Josette trouve refuge à "SOS détresse", qu'animent deux complexés: Thérèse et Pierre. Suivez toute l'actualité du Catalogue STUDIOCANAL sur notre page faceb...

      published: 25 Dec 2020
    • Ça dépend, ça dépasse - Le Père Noël est une ordure

      Christian Clavier (Katia) et Marie-Anne Chazel (Zézette) dans Le Père Noël est une ordure. (1982) Passage qui comprend aussi "la profession de l'époux?" et "Zézette épouse X" Excellent ! XD

      published: 07 Oct 2019
    • "Je m'appelle Thérèse" extrait Le père Noël est une ordure

      "Je m'appelle Thérèse" Le père Noël est une ordure est un film français réalisé par Jean-Marie Poiré et sorti au cinéma le 25 août 1982, interprété par la troupe du Splendid. Ce film est l'adaptation de leur pièce de théâtre éponyme créée en 1979 Avec Anémone Thierry Lhermitte Gérard Jugnot Marie-Anne Chazel Christian Clavier Josiane Balasko Bruno Moynot

      published: 03 Dec 2016
    • "encule toi tout seul espèce de mal polish" extrait Le père Noël est une ordure

      Le père Noël est une ordure est un film français réalisé par Jean-Marie Poiré et sorti au cinéma le 25 août 1982, interprété par la troupe du Splendid. Ce film est l'adaptation de leur pièce de théâtre éponyme créée en 1979 Avec Anémone, Thierry Lhermitte, Gérard Jugnot, Marie-Anne Chazel, Christian Clavier, Josiane Balasko, Bruno Moynot

      published: 17 Dec 2016
    • Dubitchou c'est roulé à la main sous les aisselles - Preskovic - Le Père Noël est une ordure

      Abonnez-vous à ma chaîne: https://www.youtube.com/channel/UC1YgKCMhSA3Vgz4p7fdhOnQ/?sub_confirmation=1 Mr Preskovic présente le Dubitchou! Scène culte tirée du film Le père noël est une ordure également: Preskovic présente Cloug https://youtu.be/cMFR_0LiUME Oh Putin d'ta mère Salope! https://youtu.be/BLNv5P0oEis Le cadeau de Thérèse pour Pierre https://youtu.be/rezRIUBq5zA Mais qu'est-ce que c'est qu'cette matière? C'est d'la merde? https://youtu.be/giol2pJAwuY Destinée - Slow Erotique entre Pierre et Katia https://youtu.be/sXqCUjVFVJs Visitez ma chaîne: https://www.youtube.com/channel/UC1YgKCMhSA3Vgz4p7fdhOnQ

      published: 25 Mar 2019
    • "une serpillière c'est formidable" extrait part 2 Le père Noël est une ordure

      Le père Noël est une ordure est un film français réalisé par Jean-Marie Poiré et sorti au cinéma le 25 août 1982, interprété par la troupe du Splendid. Ce film est l'adaptation de leur pièce de théâtre éponyme créée en 1979 Avec Anémone Thierry Lhermitte Gérard Jugnot Marie-Anne Chazel Christian Clavier Josiane Balasko Bruno Moynot

      published: 13 Dec 2016
    • LE PÈRE NOËL EST UNE ORDURE Bande Annonce VF 1982 HD

      Découvrez la bande annonce LE PÈRE NOËL EST UNE ORDURE ABONNE-TOI 👉 https://www.youtube.com/channel/UCWlHoiamUBRXPwNzfapJcQw/?sub_confirmation=1 🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻 DESCRIPTION DE LA VIDÉO La permanence téléphonique parisienne SOS détresse-amitié est perturbée le soir de Noël par l'arrivée de personnages marginaux farfelus qui provoquent des catastrophes en chaîne. 🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺 MES PLAYLISTS BANDE ANNONCE 1970/1979 https://www.youtube.com/playlist?list=PLMfyT9p4eQNArGXuZg1CUqNS2rWSSsPn7 BANDE ANNONCE 1980/1989 https://www.youtube.com/playlist?list=PLMfyT9p4eQNAOt0hgQ-5pSJS-17tijpcR BANDE ANNONCE 1990/1999 https://www.youtube.com/playlist?list=PLMfyT9p4eQNDO45NmzRx1cyDiIazlXbkJ BANDE ANNONCE 2000/2009 https://www.youtube.com/playlist?list=PLMfyT9p4eQNDUrZVRVlU_GKGMvlm1LsIF BANDE ANNO...

      published: 09 Jan 2019
    • LE PÈRE NOËL EST UNE ORDURE 1982 N°1/3 (ANÉMONE, Thierry LHERMITTE)

      Vous êtes encore là, vous ? Ça fait dix fois qu’on vous dit de partir. Oh, le trottoir est à tous le monde, on est en république. Je m’excuse, j’essaie de gagner ma croûte, on m’empêche de travailler. Je sors de prison, j’ai payé ma dette à la société, et j’ai pas honte de le dire, on m’empêche de me réinsérer maintenant. Oui, et bien tu vas arrêter de faire ton scandale ici, sinon on va te taper. Donnez-moi un morceau de cette chose longue et molle… Oh je suis désolée de vous avoir dérangée. Non Madame, vous ne m’avez pas dérangée du tout. Nous sommes là pour ça Thérèse c’est Josette, réponds-moi. Ici SOS Détresse-Amitié, nous avons bien reçu votre appel, surtout ne quittez pas, une voix amie va bientôt vous répondre. Bien, bien, bien. Pas eu trop d’appels Thérèse ? Non, rien de grave, l...

      published: 02 May 2019
    developed with YouTube
    Le père Noël est une ordure - le gâteau
    2:23

    Le père Noël est une ordure - le gâteau

    • Order:
    • Duration: 2:23
    • Uploaded Date: 03 Jan 2020
    • views: 117265
    https://wn.com/Le_Père_Noël_Est_Une_Ordure_Le_Gâteau
    Oh Putin d'ta mère Salope! Le Père Noël est une ordure - Thierry Lhermitte & Anémone
    1:45

    Oh Putin d'ta mère Salope! Le Père Noël est une ordure - Thierry Lhermitte & Anémone

    • Order:
    • Duration: 1:45
    • Uploaded Date: 14 Apr 2019
    • views: 208840
    Abonnez-vous à ma chaîne: https://www.youtube.com/channel/UC1YgKCMhSA3Vgz4p7fdhOnQ/?sub_confirmation=1 Le Père Noël est une ordure (1982) Thierry Lhermitte & Anémone également: Preskovic présente Cloug https://youtu.be/cMFR_0LiUME Dubitchou https://youtu.be/X-4UPGVxKgc Le cadeau de Thérèse pour Pierre https://youtu.be/rezRIUBq5zA Mais qu'est-ce que c'est qu'cette matière? C'est d'la merde? https://youtu.be/giol2pJAwuY Destinée - Slow Erotique entre Pierre et Katia https://youtu.be/sXqCUjVFVJs Visitez ma chaîne: https://www.youtube.com/channel/UC1YgKCMhSA3Vgz4p7fdhOnQ
    https://wn.com/Oh_Putin_D'ta_Mère_Salope_Le_Père_Noël_Est_Une_Ordure_Thierry_Lhermitte_Anémone
    LE PÈRE NOËL EST UNE ORDURE - Extrait #2 - Gérard Jugnot / Marie-Anne Chazel / Christian Clavier
    2:13

    LE PÈRE NOËL EST UNE ORDURE - Extrait #2 - Gérard Jugnot / Marie-Anne Chazel / Christian Clavier

    • Order:
    • Duration: 2:13
    • Uploaded Date: 25 Dec 2020
    • views: 213480
    LE PÈRE NOËL EST UNE ORDURE – Extrait #2 – Gérard Jugnot / Marie-Anne Chazel / Christian Clavier / Thierry Lhermitte / Anémone A l'occasion des fêtes de Noël, (re)découvrez LE PÈRE NOËL EST UNE ODURE, le film culte de Jean-Marie Poiré avec toute la bande du Splendid ! Réalisé par Jean-Marie Poiré (1982) Avec Gérard Jugnot, Marie-Anne Chazel, Christian Clavier, Anémone, Thierry Lhermitte, Josiane Balasko Synopsis : Félix, déguisé en Père Noël, distribue des prospectus pour un réveillon sexy. Evincé par un Père Noël africain, il rejoint sa roulotte où il retrouve Josette, sa compagne, sur le point de le quitter. Il la poursuit. Josette trouve refuge à "SOS détresse", qu'animent deux complexés: Thérèse et Pierre. Suivez toute l'actualité du Catalogue STUDIOCANAL sur notre page facebook : https://www.facebook.com/StudiocanalCatalogue/
    https://wn.com/Le_Père_Noël_Est_Une_Ordure_Extrait_2_Gérard_Jugnot_Marie_Anne_Chazel_Christian_Clavier
    Ça dépend, ça dépasse - Le Père Noël est une ordure
    1:59

    Ça dépend, ça dépasse - Le Père Noël est une ordure

    • Order:
    • Duration: 1:59
    • Uploaded Date: 07 Oct 2019
    • views: 101411
    Christian Clavier (Katia) et Marie-Anne Chazel (Zézette) dans Le Père Noël est une ordure. (1982) Passage qui comprend aussi "la profession de l'époux?" et "Zézette épouse X" Excellent ! XD
    https://wn.com/Ça_Dépend,_Ça_Dépasse_Le_Père_Noël_Est_Une_Ordure
    "Je m'appelle Thérèse" extrait Le père Noël est une ordure
    0:31

    "Je m'appelle Thérèse" extrait Le père Noël est une ordure

    • Order:
    • Duration: 0:31
    • Uploaded Date: 03 Dec 2016
    • views: 472217
    "Je m'appelle Thérèse" Le père Noël est une ordure est un film français réalisé par Jean-Marie Poiré et sorti au cinéma le 25 août 1982, interprété par la troupe du Splendid. Ce film est l'adaptation de leur pièce de théâtre éponyme créée en 1979 Avec Anémone Thierry Lhermitte Gérard Jugnot Marie-Anne Chazel Christian Clavier Josiane Balasko Bruno Moynot
    https://wn.com/Je_M'Appelle_ThéRèSe_Extrait_Le_Père_Noël_Est_Une_Ordure
    "encule toi tout seul espèce de mal polish" extrait Le père Noël est une ordure
    0:33

    "encule toi tout seul espèce de mal polish" extrait Le père Noël est une ordure

    • Order:
    • Duration: 0:33
    • Uploaded Date: 17 Dec 2016
    • views: 198755
    Le père Noël est une ordure est un film français réalisé par Jean-Marie Poiré et sorti au cinéma le 25 août 1982, interprété par la troupe du Splendid. Ce film est l'adaptation de leur pièce de théâtre éponyme créée en 1979 Avec Anémone, Thierry Lhermitte, Gérard Jugnot, Marie-Anne Chazel, Christian Clavier, Josiane Balasko, Bruno Moynot
    https://wn.com/Encule_Toi_Tout_Seul_EspèCe_De_Mal_Polish_Extrait_Le_Père_Noël_Est_Une_Ordure
    Dubitchou c'est roulé à la main sous les aisselles - Preskovic - Le Père Noël est une ordure
    2:48

    Dubitchou c'est roulé à la main sous les aisselles - Preskovic - Le Père Noël est une ordure

    • Order:
    • Duration: 2:48
    • Uploaded Date: 25 Mar 2019
    • views: 221502
    Abonnez-vous à ma chaîne: https://www.youtube.com/channel/UC1YgKCMhSA3Vgz4p7fdhOnQ/?sub_confirmation=1 Mr Preskovic présente le Dubitchou! Scène culte tirée du film Le père noël est une ordure également: Preskovic présente Cloug https://youtu.be/cMFR_0LiUME Oh Putin d'ta mère Salope! https://youtu.be/BLNv5P0oEis Le cadeau de Thérèse pour Pierre https://youtu.be/rezRIUBq5zA Mais qu'est-ce que c'est qu'cette matière? C'est d'la merde? https://youtu.be/giol2pJAwuY Destinée - Slow Erotique entre Pierre et Katia https://youtu.be/sXqCUjVFVJs Visitez ma chaîne: https://www.youtube.com/channel/UC1YgKCMhSA3Vgz4p7fdhOnQ
    https://wn.com/Dubitchou_C'Est_Roulé_À_La_Main_Sous_Les_Aisselles_Preskovic_Le_Père_Noël_Est_Une_Ordure
    "une serpillière c'est formidable"  extrait part 2 Le père Noël est une ordure
    0:33

    "une serpillière c'est formidable" extrait part 2 Le père Noël est une ordure

    • Order:
    • Duration: 0:33
    • Uploaded Date: 13 Dec 2016
    • views: 232281
    Le père Noël est une ordure est un film français réalisé par Jean-Marie Poiré et sorti au cinéma le 25 août 1982, interprété par la troupe du Splendid. Ce film est l'adaptation de leur pièce de théâtre éponyme créée en 1979 Avec Anémone Thierry Lhermitte Gérard Jugnot Marie-Anne Chazel Christian Clavier Josiane Balasko Bruno Moynot
    https://wn.com/Une_SerpillièRe_C'Est_Formidable_Extrait_Part_2_Le_Père_Noël_Est_Une_Ordure
    LE PÈRE NOËL EST UNE ORDURE Bande Annonce VF 1982 HD
    2:36

    LE PÈRE NOËL EST UNE ORDURE Bande Annonce VF 1982 HD

    • Order:
    • Duration: 2:36
    • Uploaded Date: 09 Jan 2019
    • views: 69840
    Découvrez la bande annonce LE PÈRE NOËL EST UNE ORDURE ABONNE-TOI 👉 https://www.youtube.com/channel/UCWlHoiamUBRXPwNzfapJcQw/?sub_confirmation=1 🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻🔻 DESCRIPTION DE LA VIDÉO La permanence téléphonique parisienne SOS détresse-amitié est perturbée le soir de Noël par l'arrivée de personnages marginaux farfelus qui provoquent des catastrophes en chaîne. 🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺🔺 MES PLAYLISTS BANDE ANNONCE 1970/1979 https://www.youtube.com/playlist?list=PLMfyT9p4eQNArGXuZg1CUqNS2rWSSsPn7 BANDE ANNONCE 1980/1989 https://www.youtube.com/playlist?list=PLMfyT9p4eQNAOt0hgQ-5pSJS-17tijpcR BANDE ANNONCE 1990/1999 https://www.youtube.com/playlist?list=PLMfyT9p4eQNDO45NmzRx1cyDiIazlXbkJ BANDE ANNONCE 2000/2009 https://www.youtube.com/playlist?list=PLMfyT9p4eQNDUrZVRVlU_GKGMvlm1LsIF BANDE ANNONCE 2010/2017 https://www.youtube.com/playlist?list=PLMfyT9p4eQNC-BnZ_WxTSad2bkr7C5lEM BANDE ANNONCE 2018 https://www.youtube.com/playlist?list=PLMfyT9p4eQNCZkaom967TwvlWW7Qq5-eu BANDE ANNONCE 2019 https://www.youtube.com/playlist?list=PLMfyT9p4eQNCcOaxkEgIXFHS4Sbd8hk01 BANDE ANNONCE ENFANT https://www.youtube.com/playlist?list=PLMfyT9p4eQNBygy-JWTF2r6xFFkcirfCu 🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹 Suivez nous ! sur Facebook : https://www.facebook.com/FilmsExclu/ et Twitter : https://twitter.com/FilmsExclu #BandeAnnonce #Trailer 🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹🔹
    https://wn.com/Le_Père_Noël_Est_Une_Ordure_Bande_Annonce_Vf_1982_Hd
    LE PÈRE NOËL EST UNE ORDURE 1982 N°1/3 (ANÉMONE, Thierry LHERMITTE)
    5:09

    LE PÈRE NOËL EST UNE ORDURE 1982 N°1/3 (ANÉMONE, Thierry LHERMITTE)

    • Order:
    • Duration: 5:09
    • Uploaded Date: 02 May 2019
    • views: 121284
    Vous êtes encore là, vous ? Ça fait dix fois qu’on vous dit de partir. Oh, le trottoir est à tous le monde, on est en république. Je m’excuse, j’essaie de gagner ma croûte, on m’empêche de travailler. Je sors de prison, j’ai payé ma dette à la société, et j’ai pas honte de le dire, on m’empêche de me réinsérer maintenant. Oui, et bien tu vas arrêter de faire ton scandale ici, sinon on va te taper. Donnez-moi un morceau de cette chose longue et molle… Oh je suis désolée de vous avoir dérangée. Non Madame, vous ne m’avez pas dérangée du tout. Nous sommes là pour ça Thérèse c’est Josette, réponds-moi. Ici SOS Détresse-Amitié, nous avons bien reçu votre appel, surtout ne quittez pas, une voix amie va bientôt vous répondre. Bien, bien, bien. Pas eu trop d’appels Thérèse ? Non, rien de grave, la routine quoi. Oui depuis dix-huit heures nous n’avons eu qu’un appel. C’est cela oui. Allo, SOS-Détresse-Amitié, bonjour je vous écoute. Allo, SOS-Détresse ? Allo, je ne vous entends pas. Allo, SOS-Détresse, je suis au bout du rouleau là. Qu’est-ce que je dois faire ? Allo, appuyez sur le bouton… Dites-donc Thérèse, un seul appel depuis dix-huit heures, pour un soir de Noël, c’est tout de même très came. Oui mais notez d’un sens, tant mieux. C’est cela, oui, oui, oui. … Ah, un appel. Allo, Détresse-Amitié, oui joyeux Noël Monsieur. Mais Monsieur, vous ne me dérangez pas. Je suis là pour vous écouter. Et bien je vous appelle parce que je suis très seul ce soir. Et bien non Monsieur, justement vous ne l’êtes plus. Toute l’équipe de Détresse-Amitié est là qui vous écoute. Ah… est-ce que je pourrais passer vous voir ? Ah non Monsieur, ça ça n’est pas possible, non. Non par contre peut-être avez-vous de la famille avec qui passer la soirée ? Non, ils ne m’apprécient pas. C’est cela oui. Et un bar-tabac qui ferait réveillon à côté de chez vous ? Non, non-non. Non plus. Et bien Monsieur, confiez-vous à nous, nous sommes là pour vous écouter. Voilà, je ne sais plus où j’en suis, je ne sais plus qui je suis. Je ne sais même pas si c’est moi qui parle en ce moment, alors… Ah, si, si, c’est vous me parlez en ce moment, je vous assure. Allo ? Allo. Ne vous laissez pas aller Monsieur. Monsieur, vous êtes dans une mauvaise passe, mais le bout du tunnel n’est peut-être pas si loin. Oui, je vous appelle parce que, euh, j’ai un problème. Vous voyez ? un problème. Enfin c’est pas vraiment un problème, non, c’est au niveau de moi. Enfin quand j’étais petit, je supportais mal la province. Non, c’est pas vraiment pour ça que je vous appelle, c’est pour Alice. Elle supportait pas non plus… Écoutez Pierre, ne faites pas l’enfant…. Je sais pas si je me fais bien comprendre… Si parfaitement c’est très clair, je vous suis parfaitement… Écoutez Pierre, je suis avec un pauvre garçon incapable d’aligner trois mots corrects, alors… Merci, alors sympa Il a raccroché, c’est un garçon très timide. Alors puisque vous ne pouvez pas attendre trois secondes, Joyeux Noël, Pierre. Ah c’est pour moi ? Écoutez, c’est très… il ne fallait pas. Voilà, voilà. Oh écoutez… J’espère que ça vous plairai, c’est dur avec vous, vous avez tout. Oh non, rien que d’avoir pensé que c’était Noël, c’est déjà formidable. Vous ne l’ouvrez pas ? Si bien sûr, mais de l’extérieur, c’est magnifique. Oh, oh. aaah. Oh, une serpillière, c’est formidable, Thérèse, je suis ravi, écoutez… Non, Pierre, c’est un gilet. Ah oui, ah mais bien sûr. Bien sûr c’st un gilet, il y a des trous plus grands pour les bras… Alors… Je suis ravi Thérèse, vraiment je suis ravi. Et point de vu des couleurs parce que j’avais pensé à un joli camaïeu de bleu marine comme je sais que vous aimez bien puis je me suis dit, dans ces tons là, ça changera. Vous avez tout à fait raison Thérèse, parce que le gris et le bordeaux ça va avec tout alors vous risquez pas de vous tromper. Et puis c’est une chose qui n’est pas commune, et que vous ne verrez pas chez tout le monde. Ah bien j’espère bien Thérèse, j’espère bien. Écoutez si vous saviez ce que ça tombe bien, je me disais encore hier soir, qu’il me manquait quelque chose pour descendre les poubelles. Je suis ravi Thérèse !
    https://wn.com/Le_Père_Noël_Est_Une_Ordure_1982_N°1_3_(Anémone,_Thierry_Lhermitte)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Oh Putin d'ta mère Salope! Le Père Noël est une ordure - Thierry Lhermitte & Anémone
      1:45
      Oh Putin d'ta mère Salope! Le Père Noël est une ordure - Thierry Lhermitte & Anémoneremove from playlist
    • LE PÈRE NOËL EST UNE ORDURE - Extrait #2 - Gérard Jugnot / Marie-Anne Chazel / Christian Clavier
      2:13
      LE PÈRE NOËL EST UNE ORDURE - Extrait #2 - Gérard Jugnot / Marie-Anne Chazel / Christian Clavierremove from playlist
    • Ça dépend, ça dépasse - Le Père Noël est une ordure
      1:59
      Ça dépend, ça dépasse - Le Père Noël est une ordureremove from playlist
    • 0:31
      "Je m'appelle Thérèse" extrait Le père Noël est une ordureremove from playlist
    • 0:33
      "encule toi tout seul espèce de mal polish" extrait Le père Noël est une ordureremove from playlist
    • Dubitchou c'est roulé à la main sous les aisselles - Preskovic - Le Père Noël est une ordure
      2:48
      Dubitchou c'est roulé à la main sous les aisselles - Preskovic - Le Père Noël est une ordureremove from playlist
    • 0:33
      "une serpillière c'est formidable" extrait part 2 Le père Noël est une ordureremove from playlist
    • LE PÈRE NOËL EST UNE ORDURE Bande Annonce VF 1982 HD
      2:36
      LE PÈRE NOËL EST UNE ORDURE Bande Annonce VF 1982 HDremove from playlist
    • LE PÈRE NOËL EST UNE ORDURE 1982 N°1/3 (ANÉMONE, Thierry LHERMITTE)
      5:09
      LE PÈRE NOËL EST UNE ORDURE 1982 N°1/3 (ANÉMONE, Thierry LHERMITTE)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Le père Noël est une ordure - le gâteau

    2:23
    Le père Noël est une ordure - le gâteau
    published: 03 Jan 2020
    Play in Full Screen
    1:45
    Oh Putin d'ta mère Salope! Le Père Noël est une ordure - Thierry Lhermitte & Anémone
    Abonnez-vous à ma chaîne: https://www.youtube.com/channel/UC1YgKCMhSA3Vgz4p7fdhOnQ/?sub_co...
    published: 14 Apr 2019
    Play in Full Screen
    2:13
    LE PÈRE NOËL EST UNE ORDURE - Extrait #2 - Gérard Jugnot / Marie-Anne Chazel / Christian Clavier
    LE PÈRE NOËL EST UNE ORDURE – Extrait #2 – Gérard Jugnot / Marie-Anne Chazel / Christian C...
    published: 25 Dec 2020
    Play in Full Screen
    1:59
    Ça dépend, ça dépasse - Le Père Noël est une ordure
    Christian Clavier (Katia) et Marie-Anne Chazel (Zézette) dans Le Père Noël est une ordure....
    published: 07 Oct 2019
    Play in Full Screen
    0:31
    "Je m'appelle Thérèse" extrait Le père Noël est une ordure
    "Je m'appelle Thérèse" Le père Noël est une ordure est un film français réalisé par Jean...
    published: 03 Dec 2016
    Play in Full Screen
    0:33
    "encule toi tout seul espèce de mal polish" extrait Le père Noël est une ordure
    Le père Noël est une ordure est un film français réalisé par Jean-Marie Poiré et sorti au ...
    published: 17 Dec 2016
    Play in Full Screen
    2:48
    Dubitchou c'est roulé à la main sous les aisselles - Preskovic - Le Père Noël est une ordure
    Abonnez-vous à ma chaîne: https://www.youtube.com/channel/UC1YgKCMhSA3Vgz4p7fdhOnQ/?sub_co...
    published: 25 Mar 2019
    Play in Full Screen
    0:33
    "une serpillière c'est formidable" extrait part 2 Le père Noël est une ordure
    Le père Noël est une ordure est un film français réalisé par Jean-Marie Poiré et sorti au ...
    published: 13 Dec 2016
    Play in Full Screen
    2:36
    LE PÈRE NOËL EST UNE ORDURE Bande Annonce VF 1982 HD
    Découvrez la bande annonce LE PÈRE NOËL EST UNE ORDURE ABONNE-TOI 👉 https://www.youtube.co...
    published: 09 Jan 2019
    Play in Full Screen
    5:09
    LE PÈRE NOËL EST UNE ORDURE 1982 N°1/3 (ANÉMONE, Thierry LHERMITTE)
    Vous êtes encore là, vous ? Ça fait dix fois qu’on vous dit de partir. Oh, le trottoir est...
    published: 02 May 2019
    Play in Full Screen

    Santa Claus Is a Stinker

    Santa Claus Is a Stinker or Le Père Noël est une ordure was a cult French comedy play created in 1979 by the troupe Le Splendid and turned into a film directed by Jean-Marie Poiré in 1982.

    Plot

    Pierre a stuffy, self-righteous volunteer at a telephone helpline for depressed people and his well-meaning but naïve co-worker Thérèse, are stuck with the Christmas Eve shift in the Paris office, much to their displeasure.

    The building's lift is malfunctioning, and they receive visits from unwanted callers: Katia, a depressed transvestite who tries to hit on Pierre, M. Preskovic who lives in the same building and always turns up unexepectedly to offer them various unappetizing pastries and Josette, a heavily pregnant woman on the run from her violent fiancé Félix. Félix is working as a Santa Claus during the season and turns up on her trail in costume and brandishing a gun. Félix and Josette, a caricature trailer trash couple, end up struggling over the gun and accidentally shooting dead the lift repairman, whom they then butcher and feed to zoo animals.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×