- published: 24 Apr 2024
- views: 661790
'+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; })); }); -->
Pope Saint John Paul II (Latin: Ioannes Paulus II; Italian: Giovanni Paolo II; Polish: Jan Paweł II), born Karol Józef Wojtyła (Polish: [ˈkarɔl ˈjuzɛv vɔjˈtɨwa]; 18 May 1920 – 2 April 2005), served as Pope from 1978 to 2005.
He was elected by the second Papal conclave of 1978, which was called after Pope John Paul I, who was elected in August after the death of Pope Paul VI, died after thirty-three days. Cardinal Wojtyła was elected on the third day of the conclave and adopted his predecessor's name in tribute to him. In the years since his death, John Paul II has been canonised as a saint by the Catholic Church. He is referred to by Catholics as St. John Paul the Great, for example as a name for institutions.
John Paul II is recognised as helping to end Communist rule in his native Poland and eventually all of Europe. John Paul II significantly improved the Catholic Church's relations with Judaism, Islam, the Eastern Orthodox Church, and the Anglican Communion. He upheld the Church's teachings on such matters as artificial contraception and the ordination of women, but also supported the Church's Second Vatican Council and its reforms.
Pope John Paul II is a 1984 American biopic drama TV movie based on the life of Karol Wojtyła, from his early days as an activist in Poland to his installation as Pope John Paul II. Written by Christopher Knopf and directed by Herbert Wise, the film stars Albert Finney, Caroline Bliss, Brian Cox, and John Forgeham. The film marks both Albert Finney's American television debut and the first script Finney had ever turned down upon initial reading.
This film's timeline begins with the death of Pope John Paul I on September 28, 1978, and then flashes back to Karol Wojtyła as a young man growing up decades earlier in Wadowice, Poland. The storyline then returns to pre-October 16 dates in 1978 and flashes back to Wojtyła's early life, family relationships, his political involvements fighting against Nazism during World War II and against Communism after the war, and his relationship and involvement in the Roman Catholic Church as he becomes a priest, a bishop, a cardinal, and is eventually installed as the titular new pope.
Pope John Paul II is a 2005 television miniseries dramatizing the life of Pope John Paul II (Karol Józef Wojtyła) from his early adult years in Poland to his death on 2 April 2005 at age 84.
The miniseries was written and directed by John Kent Harrison and aired in the United States on the CBS network on 4 and 7 December 2005. It was first released in Vatican City on 17 November 2005 and ten days later throughout Italy.
Jon Voight portrays the older Karol Wojtyla (after his investiture as Pope in 1978), while Cary Elwes portrays Wojtyla in his earlier life from 1939 to 1978. Voight was nominated for an Emmy Award for his performance.
Pope John Paul II co-stars James Cromwell, as Archbishop Adam Stefan Sapieha, Ben Gazzara, as Cardinal Agostino Casaroli, and Christopher Lee as Cardinal Stefan Wyszyński. Polish actor Mikolaj Grabowski is seen twice playing Cardinal Joseph Ratzinger of Germany, who would succeed John Paul II as Pope Benedict XVI on 19 April 2005.
Huntsville is a city located primarily in Madison County in the central part of the far northern region of the U.S. State of Alabama. Huntsville is the county seat of Madison County. The city extends west into neighboring Limestone County. Huntsville's population was 180,105 as of the 2010 census. The Huntsville Metropolitan Area's population was 417,593. Huntsville is the fourth-largest city in Alabama and the largest city in the five-county Huntsville-Decatur Combined Statistical Area, which at the 2013 census estimate had a total population of 683,871. In 2013, the Huntsville metropolitan area became the 2nd largest in Alabama with a population of 435,737.
It grew across nearby hills north of the Tennessee River, adding textile mills, then munitions factories, NASA's Marshall Space Flight Center and the United States Army Aviation and Missile Command nearby at the Redstone Arsenal. The National Trust for Historic Preservation named Huntsville to its "America's Dozen Distinctive Destinations for 2010" list.
Alabama is a southern state in the United States.
Alabama may also refer to:
Alabama was a Canadian band of the early 1970s. They had two songs that reached the top 100 in the RPM Magazine chart. "Song of Love" reached #26 in June 1973, and "Highway Driving" reached #42 in August. Band members were Buster Fykes, Hector McLean, Rick Knight, and Len Sembaluk.
Alabama is a Gloucester fishing schooner that was built in 1926 and served as the pilot boat for Mobile, Alabama. The Alabama's home port is Vineyard Haven Harbor, Martha's Vineyard, Massachusetts. The Alabama is owned by The Black Dog Tall Ships, along with the Shenandoah, and offers cruises of Nantucket Sound.
The schooner Alabama was one of the last vessels built from the design of one of the most notable designers of Gloucester Fishing Schooners, Thomas F. McManus. Commissioned by the Mobile Bar Pilot Association of Mobile, Alabama, the vessel was built in Pensacola, Florida, launched in 1926, and originally called Alabamian until her predecessor the Bar Pilot Association's original Alabama was retired. Though the hull bore strong resemblance of McMannus' famous Gloucester fishing schooner designs, it served as a pilot boat stationed on the Mobile Bar until 1966.
In 1967 the schooner was bought by Captain Robert S. Douglas, master and designer of the Shenandoah, and moved to Vineyard Haven. There she sat on a mooring with minimal necessary upkeep until 1994. In the early nineties with a dwindling market for windjammer cruises which leave out most modern amenities kids became the new direction for the Coastwise Packet Company - the original name for what is now also The Black Dog Tall Ships. Because of the success of these "Kids Cruises" on board the Shenandoah, Alabama was to be rebuilt by the Five Corners Shipbuilding Company headed by Gary Maynard a former First Mate that sailed on the Shenandoah. Most of the work was done in Vineyard Haven with the vessel afloat on her mooring using Captain Douglas' own power tools and shop space. Any other work was done in Fairhaven, Massachusetts at D.N. Kelly's Shipyard.
The Last Words Of Pope John Paul II Before His Death | Revelation about the end of times? Welcome to the Jesus Eternal Light channel. Our channel is your daily destination for Christian motivation, inspiration, prayers, and devotionals. Our purpose is to provide you with soul-enriching, faith-centered content that will ignite your spirit, educate your mind, and inspire your journey every single day. Dive into our thought-provoking verses from the Scriptures, heartfelt daily prayers, uplifting and motivational videos, and profound teachings, all carefully crafted to deepen your connection with God and revolutionize your life through the transformative power of His Word. Heartful Faith Inspirations expresses profound gratitude for your unwavering support. May the Lord shower you with His ...
Mother Teresa of Calcutta died on Sept. 5, 1997, at the age of 87. St. John Paul II greeted and blessed St. Teresa in St. Peter's Basilica a few months before, on June 29, 1997. One of the last times these saints were seen together.
The new Rome Reports app is now available! Download it here: Android: https://bit.ly/2SowpUn Apple: https://apple.co/2RHf58H Click here to receive the latest news: http://smarturl.it/RomeReports Visit or website to learn more: http://www.romereports.com/ Ten years have passed since the death of the Polish pontiff. --------------------- ROME REPORTS, www.romereports.com, is an independent international TV News Agency based in Rome covering the activity of the Pope, the life of the Vatican and current social, cultural and religious debates. Reporting on the Catholic Church requires proximity to the source, in-depth knowledge of the Institution, and a high standard of creativity and technical excellence. As few broadcasters have a permanent correspondent in Rome, ROME REPORTS is geared t...
A Saint who loved the outdoors, loved his people and most importantly loved Christ, this is the life of Pope John Paul II. Pope John Paul, Pray For Us 🙏 Subscribe For More Catholic Videos: https://www.youtube.com/channel/UCXHcH4CggCrvIpm0KM0kHQg?sub_confirmation=1
Pope John Paul II - "Karol The Man Who Became Pope" - English Full Movie
http://en.romereports.com The attempt on John Paul II's life . --------------------- Suscríbete al canal: http://smarturl.it/RomeReports Visita nuestra web: http://www.romereports.com/ ROME REPORTS, www.romereports.com, is an independent international TV News Agency based in Rome covering the activity of the Pope, the life of the Vatican and current social, cultural and religious debates. Reporting on the Catholic Church requires proximity to the source, in-depth knowledge of the Institution, and a high standard of creativity and technical excellence. As few broadcasters have a permanent correspondent in Rome, ROME REPORTS is geared to inform the public and meet the needs of television broadcasting companies around the world through daily news packages, weekly newsprograms and document...
📹VIDEO | Here, Pope John Paul I was greeted by Cardinal Karol Wojtyla, who a few weeks later, would succeed him as Pope John Paul II. The "Smiling Pope" will be beatified on Sep. 4 by Pope Francis.
On May 13th, 1981, Pope John Paul II was shot at close range by a would-be assassin from Turkey. He survived, and later forgave the shooter. Watch "CBS Evening News" coverage from that day.
Thank you for joining the Saint John Paul II National Shrine today. In this unprecedented crisis, the Shrine is committed to sharing the message of hope and resilience of Saint John Paul II by striving to meet the spiritual needs of a growing number of virtual visitors. We thank you for the support of your prayers. A Prayer for World Peace by Saint John Paul II: “O God, Creator of the universe, / Who extends Your paternal concern over every creature / and guides the events of history to the goal of salvation, / We acknowledge Your fatherly love / when You break the resistance of mankind / and, in a world torn by strife and discord, /You make us ready for reconciliation. / Renew for us the wonders of Your mercy: / send forth Your Spirit / that He may work in the intimacy of hearts; /...
This biograpghy shows the life of Bl. Pope John Paul II, from his birth in Poland to his Pontificate in Rome
Pope Saint John Paul II (Latin: Ioannes Paulus II; Italian: Giovanni Paolo II; Polish: Jan Paweł II), born Karol Józef Wojtyła (Polish: [ˈkarɔl ˈjuzɛv vɔjˈtɨwa]; 18 May 1920 – 2 April 2005), served as Pope from 1978 to 2005.
He was elected by the second Papal conclave of 1978, which was called after Pope John Paul I, who was elected in August after the death of Pope Paul VI, died after thirty-three days. Cardinal Wojtyła was elected on the third day of the conclave and adopted his predecessor's name in tribute to him. In the years since his death, John Paul II has been canonised as a saint by the Catholic Church. He is referred to by Catholics as St. John Paul the Great, for example as a name for institutions.
John Paul II is recognised as helping to end Communist rule in his native Poland and eventually all of Europe. John Paul II significantly improved the Catholic Church's relations with Judaism, Islam, the Eastern Orthodox Church, and the Anglican Communion. He upheld the Church's teachings on such matters as artificial contraception and the ordination of women, but also supported the Church's Second Vatican Council and its reforms.