'+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; })); }); -->

Peter Davison

Peter Davison (born Peter Malcolm Gordon Moffett on 13 April 1951) is an English actor, best known for his roles as Tristan Farnon in the television version of James Herriot's All Creatures Great and Small, and as the fifth incarnation of the Doctor in Doctor Who, which he played from 1981 to 1984. Also, he played David Braithwaite in At Home with the Braithwaites. Since 2011 he has played Henry Sharpe in Law & Order: UK.

Early life

Davison was born Peter Moffett in Streatham, London, where he attended Granton Primary School. The family then moved to Knaphill in Surrey. During this time, Davison was a member of an amateur theatre company called the Byfleet Players. Before becoming an actor, he gained three O-levels at Winston Churchill School, St John's, Woking, Surrey, and then had several odd jobs, including a stint as a mortuary attendant and a Hoffman Press operator.

Davison studied at the Central School of Speech and Drama. His first job was as an actor and assistant stage manager at the Nottingham Playhouse. He chose the stage name Peter Davison to avoid confusion with the actor and director Peter Moffatt, with whom Davison later worked.

Peter Davison (professor)

Peter Hobley Davison (born 1926), OBE, Ph.D., D.Litt, Hon. D. Arts, is Research Professor of English at De Montfort University, Leicester, and Emeritus Professor of English at Glyndŵr University. Davison is considered an authority on the life and works of George Orwell.

Born in Newcastle upon Tyne, he taught, and gained his Ph.D. at Sydney University. In 1992, he was president of the Bibliographical Society and edited its journal, The Library, for 12 years.

In 1998, assisted by his wife, Sheila Davison, and Ian Angus he edited the 20-volume The Complete Works of George Orwell (Secker & Warburg, 1998).

In 2013, he edited Orwell's Diaries.

Publications

  • George Orwell: A Literary Life (Palgrave Macmillan, 1996)
  • The Complete Works of George Orwell (Secker & Warburg, 1998) ISBN 0 436 20377 4
  • The Lost Orwell (Timewell Press, 2007) ISBN 978-1857252149
  • George Orwell: A Life in Letters (Penguin, 2011)
  • References

    Peter Davison (composer)

    Peter Davison is a composer and instrumentalist whose works range from meditation and yoga music to well known TV and film themes and scores. Peter Davison composes music scores for Indie Features, the History Channel, A+E, biography, PBS, Warner Bros., Disney, Gaiam (Yoga/Relaxation music) and others. An extensive knowledge of Western and Eastern music lend global flavors to his work. His CDs "Meditate" and "Exhale" were both in the Billboard Top 10 New Age Albums.

    His instrumental "Sip of Wine" (from his CD "Future, Present, Past") received the Best Song of the Year Award, Hollywood Music in Media Awards, (New Age/Ambient), 2010. He has also received nominations for "Best Score of the Year, TV Show" (The Endless Voyage, PBS), "Best Classical Composition" ("Fern Valley" and "Mount Tahquitz" from his CD "Forest Home") and "Best Song of the Year" ("Possibility" from his CD "Possibility," "Getting Closer" from his CD "Getting Closer").

    Peter Davison's Yoga/Relaxation music is used for Spas, Yoga, relaxation, meditation, massage, – anywhere that a deep, calming and soothing environment is desired. He composes the memorable music for over 45 of GAIAM's award winning DVDs featuring master instructors Rodney Yee, Patricia Walden, Suzanne Deason, David-Dorian Ross and others.

    Peter Davison (poet)

    Peter Davison (June 27, 1928, New York, New York – December 29, 2004, Boston, Massachusetts) was an American poet, essayist, teacher, lecturer, editor, and publisher.

    Life

    Peter Davison was born in New York City to Edward Davison, a Scottish poet, and Nathalie (née Weiner) Davison. He grew up in Boulder, Colorado, where his father taught at the University of Colorado. Davison attended Harvard University, graduating in 1949. Among his classmates at Harvard were John Ashbery, Robert Bly, and Robert Creeley.

    After graduating from Harvard, Davison spent a year at Cambridge University on a Fulbright Fellowship. He worked at publishers Harcourt Brace and at Harvard University Press, serving as an assistant to that press's director. In 1966 he joined the Atlantic Monthly Press, remaining there for 29 years, the final 15 as its director. For 30 years he was also poetry editor for Atlantic Monthly. (Later it merged with Grove Press to become Grove/Atlantic.)

    In the 1980s he joined Houghton Mifflin, where he edited books for his own imprint from 1985 to 1998. From the 1950s forward he was part of a Boston and New England literary milieu that included Robert Lowell, Robert Frost, Anne Sexton, Sylvia Plath, Richard Wilbur, and Donald Hall.

    Peter Davison (disambiguation)

    Peter Davison (born 1951) is a British actor.

    Peter Davison may also refer to:

  • Peter Davison (professor) (born 1926), professor of English and biographer
  • Peter Davison (poet) (1928–2004), American poet
  • Peter Davison (composer), composer and instrumentalist
  • Peter Davison (investor), Australian investor and entrepreneur
  • Peter Davison (footballer) (born 1944), Australian rules footballer
  • See also

  • Peter Davidson (disambiguation)
  • Peter Davison (footballer)

    Peter Davison (born 15 November 1944) is a former Australian rules footballer who played with North Melbourne in the Victorian Football League (VFL).

    Notes

    External links

  • Peter Davison's statistics from AFL Tables
  • Peter Davison's profile from AustralianFootball.com
  • Podcasts:

    Peter Davison

    Peter Davison

    ALBUMS

    • Peter Davison Drives The Third Doctor's Car Bessie

      Appreciating Great British Car Journey's, Peter Davison was surprised with an iconic car. The original 'Bessie' Siva Edwardian has never been driven since and preserved in exhibitions, Peter was given the chance to drive the car as part of the programme. #DoctorWho

      published: 22 Mar 2023
    • How Peter Davison Became Doctor Who (Days of Wrath: The Making of Four to Doomsday)

      Stepping into the considerable shoes of Tom Baker, Peter Davison faced quite the challenge when taking on the lead role in Doctor Who. His job wasn't made any easier by the fact that his first story to be broadcast would not be his first story to be recorded. "Four To Doomsday" represented his first chance to get to grips with the being the 5th Doctor. For this behind the scenes look at Peter Davison's first recorded outing as the Doctor, Century 21 Films brought together cast and crew, recreated sections of the original sets, and scoured the archives for rare and unseen photos and unedided studio tape material. Featuring Peter Davison (The Doctor), John Black (Director), Christopher H. Bidmead (Script Editor), and Kevin Davies (Filmmaker, Fan, and Studio Guest). “Days of Wrath” is avai...

      published: 27 Jul 2023
    • Doctor Who- Peter Davison interview from Pebble Mill at One

      An interview with the 5th Doctor, Peter Davison, in March 1982 on the BBC magazine show "Pebble Mill at One"

      published: 05 Jun 2023
    • Pete Davidson's Best Stand-Up Jokes

      Take a look back at some of Pete Davidson’s best bits about why he dropped out of college, why he misses masturbating at his mom’s house and why he wants to get an “SMD” tattoo. (Contains strong language.) Subscribe to Comedy Central: https://www.youtube.com/channel/UCUsN5ZwHx2kILm84-jPDeXw?sub_confirmation=1 Follow Comedy Central Stand-Up: Twitter: https://twitter.com/standup Facebook: https://www.facebook.com/standup Instagram: https://www.instagram.com/ccstandup Watch more Comedy Central: https://www.youtube.com/comedycentral Watch full Comedy Central stand-up specials: http://www.cc.com/shows/stand-up #PeteDavidson

      published: 26 Sep 2020
    • Peter Davison on His Regeneration | Regenerations Panel | Doctor Who 50th Celebration

      Doctors Peter Davison and Tom Baker discuss the mixed feelings they experienced filming their regenerations, at the Doctor Who Celebration in November 2013. Subscribe for more exclusive clips: https://bbc.in/SubscribeToDoctorWho Click here for the full Regenerations panel video, also featuring Colin Baker and Sylvester McCoy: http://www.doctorwho.tv/whats-new/article/exclusive-video-four-doctors-discuss-50-years-of-Doctor-who/ Subscribe to Doctor Who for more exclusive videos: https://bbc.in/SubscribeToDoctorWho WATCH MORE: Compilations: https://bbc.in/DWCompilations Regenerations: https://bbc.in/DWRegenerations Title Sequences: https://bbc.in/DWTitleSequences New to Who: https://bbc.in/DWNewToWho Official Podcast: https://bbc.in/DWOfficialPodcast MORE ABOUT DOCTOR WHO: Welcome to the...

      published: 16 Apr 2014
    • Pete Davidson on Kanye West | Netflix Is A Joke: The Festival

      Pete Davidson took the stage at the #NetflixIsAJoke Fest to address the Kanye West questions. Subscribe: https://bit.ly/2Kncxw6 About Netflix Is A Joke: The official hub of Netflix stand-up, comedy series, films, and all things funny — curated by the world’s most advanced algorithm and a depressed, yet lovable, cartoon horse. Their unlikely friendship is our story… About Netflix: Netflix is the world's leading streaming entertainment service with 222 million paid memberships in over 190 countries enjoying TV series, documentaries, feature films and mobile games across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any internet-connected screen. Members can play, pause and resume watching, all without commercials or commitments. Co...

      published: 06 May 2022
    • Peter Davison: What was it like when you found out David Tennant was going to be your Son in Law.

      A fan asks Peter Davison what he thought when he found out David Tennant was going to be his Son in Law. This was in Dallas, Tx at WhoFest 2017

      published: 10 Jul 2020
    • Peter Davison on David Tennant returning to Doctor Who

      Full Video Here: https://youtu.be/VqKPAYfq_PY

      published: 31 Oct 2022
    • Reviewing Every Doctor Who Story - Episode 5: The Peter Davison Era

      From a beautiful but impossible city to a mudburst soaked hellhole, taking in the Great Fire of London, the beginning and possible end of the universe, several banquets, talking gravity woodlice and Space Captain Beryl Reid, it's time for me to ramble for an hour and a bit about the Peter Davison era of Doctor Who! Now, doesn’t that sound fun? Who just said no? I heard that! This video’s apologies are due to the Monty Python team, the members of Lovejoy once again, and Sarah Sutton (but it isn't me that needs to apologise in that case!) Also, the more than 1,000 of you I’ve somehow convinced to subscribe to me. Please seek urgent medical attention. Chapters 0:00:00 - Intro 0:01:57 - Castrovalva 0:07:50 - Four To Doomsday 0:12:16 - Kinda 0:16:50 - The Visitation 0:20:39 - Black Orchid...

      published: 19 Feb 2023
    • David Tennant on how his marriage revolves around Doctor Who

      Full Interview: https://youtu.be/PIZENu4Xxsc Video Source: @ListenToTimesRadio entertainment purposes only.

      published: 05 Dec 2022
    developed with YouTube
    Peter Davison Drives The Third Doctor's Car Bessie
    2:13

    Peter Davison Drives The Third Doctor's Car Bessie

    • Order:
    • Duration: 2:13
    • Uploaded Date: 22 Mar 2023
    • views: 8809
    Appreciating Great British Car Journey's, Peter Davison was surprised with an iconic car. The original 'Bessie' Siva Edwardian has never been driven since and preserved in exhibitions, Peter was given the chance to drive the car as part of the programme. #DoctorWho
    https://wn.com/Peter_Davison_Drives_The_Third_Doctor's_Car_Bessie
    How Peter Davison Became Doctor Who (Days of Wrath: The Making of Four to Doomsday)
    3:10

    How Peter Davison Became Doctor Who (Days of Wrath: The Making of Four to Doomsday)

    • Order:
    • Duration: 3:10
    • Uploaded Date: 27 Jul 2023
    • views: 3133
    Stepping into the considerable shoes of Tom Baker, Peter Davison faced quite the challenge when taking on the lead role in Doctor Who. His job wasn't made any easier by the fact that his first story to be broadcast would not be his first story to be recorded. "Four To Doomsday" represented his first chance to get to grips with the being the 5th Doctor. For this behind the scenes look at Peter Davison's first recorded outing as the Doctor, Century 21 Films brought together cast and crew, recreated sections of the original sets, and scoured the archives for rare and unseen photos and unedided studio tape material. Featuring Peter Davison (The Doctor), John Black (Director), Christopher H. Bidmead (Script Editor), and Kevin Davies (Filmmaker, Fan, and Studio Guest). “Days of Wrath” is available in full on the Doctor Who Season 19 Blu-Ray set. -------------------------------------------------------------------- Find us online! • Century 21 Films Facebook - https://www.facebook.com/century21films/ • Century 21 Films Twitter - https://twitter.com/century21films • Thunderbirds Facebook - https://www.facebook.com/thunderbirds65/ • Thunderbirds Twitter - https://twitter.com/thunderbirds65 • Instagram - https://www.instagram.com/century21films • Website - https://www.century21films.co.uk • Shop - https://century21films.bigcartel.com/ -------------------------------------------------------------------- About Us: About Me: Century 21 Films Ltd is a multi-faceted production company whose work spans drama to documentary, miniature effects to puppet shows. It was founded by a group of filmmakers who first collaborated on Filmed in Supermarionation, the story of Gerry and Sylvia Anderson's hit puppet shows including Thunderbirds, Stingray and Captain Scarlet. Since then, we have worked for a multitude of high-profile clients including ITV, BBC, Mammoth Productions, British Film Institute and the Halifax working on projects such Thunderbirds, Endeavour, Doctor Who and The Twilight Zone. In addition to our regular filmmaking services, we specialise in ‘Supermarionation’ - the puppetry filming technique used to make shows like Thunderbirds and have collaborated with ITV repeatedly to provide specialised services. Our work has been featured on The One Show, This Morning, Good Morning Britain, BBC News, ITV News and Mastermind. #doctorwho #drwho #century21films #televisioncentre #bbc
    https://wn.com/How_Peter_Davison_Became_Doctor_Who_(Days_Of_Wrath_The_Making_Of_Four_To_Doomsday)
    Doctor Who- Peter Davison interview from Pebble Mill at One
    8:38

    Doctor Who- Peter Davison interview from Pebble Mill at One

    • Order:
    • Duration: 8:38
    • Uploaded Date: 05 Jun 2023
    • views: 215
    An interview with the 5th Doctor, Peter Davison, in March 1982 on the BBC magazine show "Pebble Mill at One"
    https://wn.com/Doctor_Who_Peter_Davison_Interview_From_Pebble_Mill_At_One
    Pete Davidson's Best Stand-Up Jokes
    15:22

    Pete Davidson's Best Stand-Up Jokes

    • Order:
    • Duration: 15:22
    • Uploaded Date: 26 Sep 2020
    • views: 10835194
    Take a look back at some of Pete Davidson’s best bits about why he dropped out of college, why he misses masturbating at his mom’s house and why he wants to get an “SMD” tattoo. (Contains strong language.) Subscribe to Comedy Central: https://www.youtube.com/channel/UCUsN5ZwHx2kILm84-jPDeXw?sub_confirmation=1 Follow Comedy Central Stand-Up: Twitter: https://twitter.com/standup Facebook: https://www.facebook.com/standup Instagram: https://www.instagram.com/ccstandup Watch more Comedy Central: https://www.youtube.com/comedycentral Watch full Comedy Central stand-up specials: http://www.cc.com/shows/stand-up #PeteDavidson
    https://wn.com/Pete_Davidson's_Best_Stand_Up_Jokes
    Peter Davison on His Regeneration | Regenerations Panel | Doctor Who 50th Celebration
    1:47

    Peter Davison on His Regeneration | Regenerations Panel | Doctor Who 50th Celebration

    • Order:
    • Duration: 1:47
    • Uploaded Date: 16 Apr 2014
    • views: 118892
    Doctors Peter Davison and Tom Baker discuss the mixed feelings they experienced filming their regenerations, at the Doctor Who Celebration in November 2013. Subscribe for more exclusive clips: https://bbc.in/SubscribeToDoctorWho Click here for the full Regenerations panel video, also featuring Colin Baker and Sylvester McCoy: http://www.doctorwho.tv/whats-new/article/exclusive-video-four-doctors-discuss-50-years-of-Doctor-who/ Subscribe to Doctor Who for more exclusive videos: https://bbc.in/SubscribeToDoctorWho WATCH MORE: Compilations: https://bbc.in/DWCompilations Regenerations: https://bbc.in/DWRegenerations Title Sequences: https://bbc.in/DWTitleSequences New to Who: https://bbc.in/DWNewToWho Official Podcast: https://bbc.in/DWOfficialPodcast MORE ABOUT DOCTOR WHO: Welcome to the Doctor Who Channel! Step inside the TARDIS and embark on an epic journey through time and space. From the Doctor's first adventure in 1963 through countless regenerations, here you will find iconic moments, behind the scenes footage, exclusive content and more! This is the ultimate destination for all things from the Whoniverse. This is a commercial channel from BBC Studios. Service & Feedback https://www.bbcstudios.com/contact/contact-us/
    https://wn.com/Peter_Davison_On_His_Regeneration_|_Regenerations_Panel_|_Doctor_Who_50Th_Celebration
    Pete Davidson on Kanye West | Netflix Is A Joke: The Festival
    3:58

    Pete Davidson on Kanye West | Netflix Is A Joke: The Festival

    • Order:
    • Duration: 3:58
    • Uploaded Date: 06 May 2022
    • views: 3345256
    Pete Davidson took the stage at the #NetflixIsAJoke Fest to address the Kanye West questions. Subscribe: https://bit.ly/2Kncxw6 About Netflix Is A Joke: The official hub of Netflix stand-up, comedy series, films, and all things funny — curated by the world’s most advanced algorithm and a depressed, yet lovable, cartoon horse. Their unlikely friendship is our story… About Netflix: Netflix is the world's leading streaming entertainment service with 222 million paid memberships in over 190 countries enjoying TV series, documentaries, feature films and mobile games across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any internet-connected screen. Members can play, pause and resume watching, all without commercials or commitments. Connect with Netflix Is A Joke: Visit Netflix WEBSITE: http://nflx.it/29BcWb5 Like Netflix Is A Joke on FACEBOOK: https://bit.ly/2xD5zfu Follow Netflix Is A Joke on TWITTER: https://bit.ly/2N6ENkx Follow Netflix Is A Joke on INSTAGRAM: https://bit.ly/2VTQcxu
    https://wn.com/Pete_Davidson_On_Kanye_West_|_Netflix_Is_A_Joke_The_Festival
    Peter Davison: What was it like when you found out David Tennant was going to be your Son in Law.
    3:14

    Peter Davison: What was it like when you found out David Tennant was going to be your Son in Law.

    • Order:
    • Duration: 3:14
    • Uploaded Date: 10 Jul 2020
    • views: 166964
    A fan asks Peter Davison what he thought when he found out David Tennant was going to be his Son in Law. This was in Dallas, Tx at WhoFest 2017
    https://wn.com/Peter_Davison_What_Was_It_Like_When_You_Found_Out_David_Tennant_Was_Going_To_Be_Your_Son_In_Law.
    Peter Davison on David Tennant returning to Doctor Who
    1:11

    Peter Davison on David Tennant returning to Doctor Who

    • Order:
    • Duration: 1:11
    • Uploaded Date: 31 Oct 2022
    • views: 8834
    Full Video Here: https://youtu.be/VqKPAYfq_PY
    https://wn.com/Peter_Davison_On_David_Tennant_Returning_To_Doctor_Who
    Reviewing Every Doctor Who Story - Episode 5: The Peter Davison Era
    1:49:54

    Reviewing Every Doctor Who Story - Episode 5: The Peter Davison Era

    • Order:
    • Duration: 1:49:54
    • Uploaded Date: 19 Feb 2023
    • views: 19940
    From a beautiful but impossible city to a mudburst soaked hellhole, taking in the Great Fire of London, the beginning and possible end of the universe, several banquets, talking gravity woodlice and Space Captain Beryl Reid, it's time for me to ramble for an hour and a bit about the Peter Davison era of Doctor Who! Now, doesn’t that sound fun? Who just said no? I heard that! This video’s apologies are due to the Monty Python team, the members of Lovejoy once again, and Sarah Sutton (but it isn't me that needs to apologise in that case!) Also, the more than 1,000 of you I’ve somehow convinced to subscribe to me. Please seek urgent medical attention. Chapters 0:00:00 - Intro 0:01:57 - Castrovalva 0:07:50 - Four To Doomsday 0:12:16 - Kinda 0:16:50 - The Visitation 0:20:39 - Black Orchid 0:25:27 - Earthshock 0:33:47 - Time-Flight 0:41:20 - Arc Of Infinity 0:45:52 - Snakedance 0:49:35 - Mawdryn Undead 0:55:09 - Terminus 0:59:20 - Enlightenment 1:03:58 - The King's Demons 1:10:25 - The Five Doctors 1:15:31 - Warriors Of The Deep 1:22:05 - The Awakening 1:27:19 - Frontios 1:31:10 - Resurrection Of The Daleks 1:37:25 - Planet Of Fire 1:42:21 - The Caves Of Androzani 1:48:05 - Outro
    https://wn.com/Reviewing_Every_Doctor_Who_Story_Episode_5_The_Peter_Davison_Era
    David Tennant on how his marriage revolves around Doctor Who
    2:04

    David Tennant on how his marriage revolves around Doctor Who

    • Order:
    • Duration: 2:04
    • Uploaded Date: 05 Dec 2022
    • views: 11037
    Full Interview: https://youtu.be/PIZENu4Xxsc Video Source: @ListenToTimesRadio entertainment purposes only.
    https://wn.com/David_Tennant_On_How_His_Marriage_Revolves_Around_Doctor_Who
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Peter Davison Drives The Third Doctor's Car Bessie

    Appreciating Great British Car Journey's, Peter Davison was surprised with an iconic car. The original 'Bessie' Siva Edwardian has never been driven since and preserved in exhibitions, Peter was given the chance to drive the car as part of the programme. #DoctorWho
    2:13
    Peter Davison Drives The Third Doctor's Car Bessie
    Appreciating Great British Car Journey's, Peter Davison was surprised with an iconic car. ...
    published: 22 Mar 2023
    Play in Full Screen
    3:10
    How Peter Davison Became Doctor Who (Days of Wrath: The Making of Four to Doomsday)
    Stepping into the considerable shoes of Tom Baker, Peter Davison faced quite the challenge...
    published: 27 Jul 2023
    Play in Full Screen
    8:38
    Doctor Who- Peter Davison interview from Pebble Mill at One
    An interview with the 5th Doctor, Peter Davison, in March 1982 on the BBC magazine show "P...
    published: 05 Jun 2023
    Play in Full Screen
    15:22
    Pete Davidson's Best Stand-Up Jokes
    Take a look back at some of Pete Davidson’s best bits about why he dropped out of college,...
    published: 26 Sep 2020
    Play in Full Screen
    1:47
    Peter Davison on His Regeneration | Regenerations Panel | Doctor Who 50th Celebration
    Doctors Peter Davison and Tom Baker discuss the mixed feelings they experienced filming th...
    published: 16 Apr 2014
    Play in Full Screen
    3:58
    Pete Davidson on Kanye West | Netflix Is A Joke: The Festival
    Pete Davidson took the stage at the #NetflixIsAJoke Fest to address the Kanye West questio...
    published: 06 May 2022
    Play in Full Screen
    3:14
    Peter Davison: What was it like when you found out David Tennant was going to be your Son in Law.
    A fan asks Peter Davison what he thought when he found out David Tennant was going to be h...
    published: 10 Jul 2020
    Play in Full Screen
    1:11
    Peter Davison on David Tennant returning to Doctor Who
    Full Video Here: https://youtu.be/VqKPAYfq_PY
    published: 31 Oct 2022
    Play in Full Screen
    1:49:54
    Reviewing Every Doctor Who Story - Episode 5: The Peter Davison Era
    From a beautiful but impossible city to a mudburst soaked hellhole, taking in the Great Fi...
    published: 19 Feb 2023
    Play in Full Screen
    2:04
    David Tennant on how his marriage revolves around Doctor Who
    Full Interview: https://youtu.be/PIZENu4Xxsc Video Source: @ListenToTimesRadio entertai...
    published: 05 Dec 2022
    Play in Full Screen

    Peter Davison

    Peter Davison (born Peter Malcolm Gordon Moffett on 13 April 1951) is an English actor, best known for his roles as Tristan Farnon in the television version of James Herriot's All Creatures Great and Small, and as the fifth incarnation of the Doctor in Doctor Who, which he played from 1981 to 1984. Also, he played David Braithwaite in At Home with the Braithwaites. Since 2011 he has played Henry Sharpe in Law & Order: UK.

    Early life

    Davison was born Peter Moffett in Streatham, London, where he attended Granton Primary School. The family then moved to Knaphill in Surrey. During this time, Davison was a member of an amateur theatre company called the Byfleet Players. Before becoming an actor, he gained three O-levels at Winston Churchill School, St John's, Woking, Surrey, and then had several odd jobs, including a stint as a mortuary attendant and a Hoffman Press operator.

    Davison studied at the Central School of Speech and Drama. His first job was as an actor and assistant stage manager at the Nottingham Playhouse. He chose the stage name Peter Davison to avoid confusion with the actor and director Peter Moffatt, with whom Davison later worked.

    '); } 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)); } }); }); }); // -->
    ×