- published: 31 Oct 2017
- views: 2929847
'+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; })); }); -->
Martin Luther (/ˈluːθər/;German: [ˈmaɐ̯tiːn ˈlʊtɐ]; 10 November 1483 – 18 February 1546) was a German professor of theology, composer, priest, former monk and a seminal figure in the Protestant Reformation. Luther came to reject several teachings and practices of the Late Medieval Catholic Church. He strongly disputed the claim that freedom from God's punishment for sin could be purchased with money. He proposed an academic discussion of the power and usefulness of indulgences in his Ninety-Five Theses of 1517. His refusal to retract all of his writings at the demand of Pope Leo X in 1520 and the Holy Roman Emperor Charles V at the Diet of Worms in 1521 resulted in his excommunication by the Pope and condemnation as an outlaw by the Emperor.
Luther taught that salvation and subsequently eternal life is not earned by good deeds but is received only as a free gift of God's grace through faith in Jesus Christ as redeemer from sin. His theology challenged the authority and office of the Pope by teaching that the Bible is the only source of divinely revealed knowledge from God and opposed sacerdotalism by considering all baptized Christians to be a holy priesthood. Those who identify with these, and all of Luther's wider teachings, are called Lutherans even though Luther insisted on Christian or Evangelical as the only acceptable names for individuals who professed Christ.
Martin Luther is a 1923 German silent historical film directed by Karl Wüstenhagen and starring Wüstenhagen, Dary Holm and Anton Walbrook. The film depicts the life of the 16th century Christian reformer Martin Luther. It was shot at historic sites in Erfurt and the Wartburg.
The film is still extant, but only through copies intended for distribution outside Germany.
Martin Luther is a 1953 film biography of Martin Luther. It was directed by Irving Pichel, (who also plays a supporting role), and stars Niall MacGinnis as Luther. It was produced by Louis de Rochemont and RD-DR Corporation in collaboration with Lutheran Church Productions and Luther-Film-G.M.B.H.
The National Board of Review named the film the fourth best of 1953. It was nominated for two Academy Awards, for Best Cinematography (Black-and-White) (Joseph C. Brun) and Art Direction/Set Decoration (Fritz Maurischat, Paul Markwitz). The music was composed by Mark Lothar and performed by the Munich Philharmonic Orchestra. It was filmed in studios in Wiesbaden, West Germany.
A notice at the beginning of the film characterizes it as a careful and balanced presentation of Luther's story: "This dramatization of a decisive moment in human history is the result of careful research of facts and conditions in the 16th century as reported by historians of many faiths." The research was done by notable Reformation scholars Theodore G. Tappert and Jaroslav Pelikan who assisted Allan Sloane and Lothar Wolff.
Martin Luther King, Jr. (January 15, 1929 – April 4, 1968) was an American Baptist minister, activist, humanitarian, and leader in the African-American Civil Rights Movement. He is best known for his role in the advancement of civil rights using nonviolent civil disobedience based on his Christian beliefs.
King became a civil rights activist early in his career. He led the 1955 Montgomery Bus Boycott and helped found the Southern Christian Leadership Conference (SCLC) in 1957, serving as its first president. With the SCLC, King led an unsuccessful 1962 struggle against segregation in Albany, Georgia (the Albany Movement), and helped organize the 1963 nonviolent protests in Birmingham, Alabama. King also helped to organize the 1963 March on Washington, where he delivered his famous "I Have a Dream" speech. There, he established his reputation as one of the greatest orators in American history.
On October 14, 1964, King received the Nobel Peace Prize for combating racial inequality through nonviolence. In 1965, he helped to organize the Selma to Montgomery marches, and the following year he and SCLC took the movement north to Chicago to work on segregated housing. In the final years of his life, King expanded his focus to include poverty and speak against the Vietnam War, alienating many of his liberal allies with a 1967 speech titled "Beyond Vietnam".
Martin Luther King, Jr. is a public sculpture by American artist John Wilson located at the United States Capitol rotunda in Washington, D.C., United States.
The bust depicts Dr. Martin Luther King, Jr. in a contemplative and peaceful mood, looking slightly downward, patinated to match the black marble base.
John Wilson, born in 1922 in Roxbury, Massachusetts. He graduated from Tufts University in 1947. He was professor of art at Boston University from 1964 to 1986.
The bust was unveiled in the Rotunda, on January 16, 1986, by Coretta Scott King, their four children and Christine King Farris.
Martin Luther King Jr is an under construction light rail subway station in the Los Angeles County Metro Rail system. The station will be located near the intersection of Crenshaw Blvd and Martin Luther King Jr. Boulevard. It will be served by the Crenshaw/LAX Line.The station will provide new transportation to the Baldwin Hills Crenshaw Plaza shopping centre. The station will also serve Baldwin Hills and Leimert Park districts of Los Angeles. It is currently under construction and is slated to open in 2019.
Moses (/ˈmoʊzɪz, -zɪs/;Hebrew: מֹשֶׁה, Modern Moshe Tiberian Mōšéh ISO 259-3 Moše; Syriac: ܡܘܫܐ Moushe; Arabic: موسى Mūsā; Greek: Mωϋσῆς Mōÿsēs in both the Septuagint and the New Testament) is a prophet in Abrahamic religions. According to the Hebrew Bible, he was a former Egyptian prince who later in life became a religious leader and lawgiver, to whom the authorship of the Torah is traditionally attributed. The historical consensus is that Moses is not an historical figure. Also called Moshe Rabbenu in Hebrew (מֹשֶׁה רַבֵּנוּ, lit. "Moses our Teacher"), he is the most important prophet in Judaism. He is also an important prophet in Christianity, Islam, Baha'ism as well as a number of other faiths.
According to the Book of Exodus, Moses was born in a time when his people, the Israelites, an enslaved minority, were increasing in numbers and the Egyptian Pharaoh was worried that they might ally with Egypt's enemies. Moses' Hebrew mother, Jochebed, secretly hid him when the Pharaoh ordered all newborn Hebrew boys to be killed in order to reduce the population of the Israelites. Through the Pharaoh's daughter (identified as Queen Bithia in the Midrash), the child was adopted as a foundling from the Nile river and grew up with the Egyptian royal family. After killing an Egyptian slavemaster (because the slavemaster was smiting a Hebrew), Moses fled across the Red Sea to Midian, where he encountered the God of Israel speaking to him from within a "burning bush which was not consumed by the fire" on Mount Horeb (which he regarded as the Mountain of God).
Martin Luther - how a humble 15th-century monk was able to change the world. Luther was born into a world governed by the Roman Church and a distant emperor. He managed to awaken a national spirit in Germans and become someone they identified with. ‘Holy Roman Empire of the German Nation’ was what the territories in central Europe were called in the 15th century. It was the era of the Habsburg ruler Charles V, who saw himself as ruler by God’s grace and defender of Christian unity. In 1521, he said that the sun never set in his empire, which stretched from Latin America in the west to central Europe and to the Philippines in the east. The German territories were just one of his realms, and powerful princes defended their own interests here. Secular and religious power was still based on t...
Join this channel to get access to perks: https://www.youtube.com/channel/UCRv0M7dDL0Y21_9rU4tgNDw/join
On October 31, 1517, a rebellious German monk named Martin Luther is said to have nailed his Ninety-Five Theses to the door of Castle Church. This simple act of protest sparked a religious revolution that would split Western Christianity and shake the foundations of Europe's cultural identity. ➡ Subscribe: http://bit.ly/NatGeoSubscribe ➡ Get More Short Film Showcase: http://bit.ly/ShortFilmShowcase About Short Film Showcase: The Short Film Showcase spotlights exceptional short videos created by filmmakers from around the web and selected by National Geographic editors. We look for work that affirms National Geographic's belief in the power of science, exploration, and storytelling to change the world. The filmmakers created the content presented, and the opinions expressed are their own, ...
“NO MAN CAN COMMAND MY CONSCIENCE!” A biopic of Martin Luther, covering his life between 1505 and 1530, and the birth of the Protestant Reformation movement. Original title: Martin Luther (1953) Black & White version: https://youtu.be/aSoGjprY070 Director: Irving Pichel Writers: Allan Sloane, Lothar Wolff, Theodore G. Tappert Stars: Niall MacGinnis, John Ruddock, Pierre Lefevre Genres: Classics, Biography, Drama, History @CultCinemaClassics https://www.youtube.com/playlist?list=UUMOycDFnpMeWzaITQSD1dWsOA
The great drama of Martin Luther’s life comes alive in this vivid portrayal of the penniless monk’s quest for truth—a quest that would re-shape the church, and the world. Martin Luther triggered a seismic upheaval that rocked the western world in the 1500s—with an impact that continues to reverberate to this day. The great drama of Martin Luther’s life comes alive in this vivid portrayal of the penniless monk’s quest for truth—a quest that would re-shape the church, and the world. Perhaps the most faithful movie about Luther’s life ever made, the film does not shy away from the deep theological questions—and answers—that mark Luther as one of the most influential people of the last thousand years. Director: David Batty Starring: Padraic Delaney, Gerharde Bode, Jr., Bruno Grzeszykowski S...
Who was Martin Luther? What is the Reformation and why does it matter? Roughly 500 years ago, Luther is said to have nailed his 95 Theses on the door of the Castle Church in Germany. With the help of the printing press, this 16th century protest against corruption in the Catholic Church would drastically change the course of Christianity - and history itself. ➡ Subscribe: http://bit.ly/NatGeoSubscribe About National Geographic: National Geographic is the world's premium destination for science, exploration, and adventure. Through their world-class scientists, photographers, journalists, and filmmakers, Nat Geo gets you closer to the stories that matter and past the edge of what's possible. Get More National Geographic: Official Site: http://bit.ly/NatGeoOfficialSite Facebook: http://bit....
YouTube : https://www.youtube.com/channel/UCbNq89KhBgFFl-DwYCXkLZQ?sub_confirmation=1 Twitter : https://twitter.com/jdschristmedia Instagram : https://www.instagram.com/jdschristmedia/ Martin Luther Tamil: https://youtu.be/s9pLv24Q0lM ✸✸✸✸✸✸✸✸✸✸✸✸✸✸✸✸✸✸✸✸✸✸✸✸✸✸ #martinluther #jdschristmedia #luthermovie watch' Martin Luther movie in Tamil: https://youtu.be/s9pLv24Q0lM --------------------------------------------------------------- IMDb - 6.6/10. 45%- Rotten tomatoes MARTIN LUTHER (LUTHER) During the early 16th century, idealistic German monk Martin Luther, disgusted by the materialism in the church, begins the dialogue that will lead to the Prote...
I Have a Dream" is a public speech that was delivered by American civil rights activist Martin Luther King Jr. during the March on Washington for Jobs and Freedom on August 28, 1963, in which he called for civil and economic rights and an end to racism in the United States. Delivered to over 250,000 civil rights supporters from the steps of the Lincoln Memorial in Washington, D.C., the speech was a defining moment of the civil rights movement and among the most iconic speeches in American history. Under the applicable copyright laws, the speech will remain under copyright in the United States until 70 years after King's death, through 2038. Sorry for audio-video sync problem If needed full video with proper sync and no subtitle Get here 👉 http://gestyy.com/w7NO7J
Matin Luther King speech in 1967 after being released from Montgomery, Alabama jail. Martin Luther King's last speech, April 1968. To license footage please write to contact (at) footagefile.com WEBSITE: https://www.footagefile.com FACEBOOK: https://www.facebook.com/FootageFile INSTAGRAM: https://www.instagram.com/footagefile/ As with all archives, we make no judgment on the content of our holdings and make them available for educational purposes for all to see. Films may have content or express opinions some may think inappropriate or offensive, but it is not the work of an archive to censor educational resources. Films should be viewed with historical objectivity and within a context relevant to the times in which they were produced.
This week marks 60 years since Rev. Martin Luther King Jr. gave his iconic "I Have a Dream" speech on the steps of the Lincoln Memorial to over 200,000 attendees. But the iconic line was not the original plan for the Aug. 28, 1963 speech. "CBS Saturday Morning" co-hosts Jeff Glor, Michelle Miller and Dana Jacobson deliver two hours of original reporting and breaking news, as well as profiles of leading figures in culture and the arts. Watch "CBS Saturday Morning" at 7 a.m. ET on CBS and 8 a.m. ET on the CBS News app. Subscribe to "CBS Mornings" on YouTube: https://www.youtube.com/CBSMornings Watch CBS News live: https://cbsn.ws/1PlLpZ7c Download the CBS News app: https://cbsn.ws/1Xb1WC8 Follow "CBS Mornings" on Instagram: https://bit.ly/3A13OqA Like "CBS Mornings" on Facebook: https:/...
Martin Luther (/ˈluːθər/;German: [ˈmaɐ̯tiːn ˈlʊtɐ]; 10 November 1483 – 18 February 1546) was a German professor of theology, composer, priest, former monk and a seminal figure in the Protestant Reformation. Luther came to reject several teachings and practices of the Late Medieval Catholic Church. He strongly disputed the claim that freedom from God's punishment for sin could be purchased with money. He proposed an academic discussion of the power and usefulness of indulgences in his Ninety-Five Theses of 1517. His refusal to retract all of his writings at the demand of Pope Leo X in 1520 and the Holy Roman Emperor Charles V at the Diet of Worms in 1521 resulted in his excommunication by the Pope and condemnation as an outlaw by the Emperor.
Luther taught that salvation and subsequently eternal life is not earned by good deeds but is received only as a free gift of God's grace through faith in Jesus Christ as redeemer from sin. His theology challenged the authority and office of the Pope by teaching that the Bible is the only source of divinely revealed knowledge from God and opposed sacerdotalism by considering all baptized Christians to be a holy priesthood. Those who identify with these, and all of Luther's wider teachings, are called Lutherans even though Luther insisted on Christian or Evangelical as the only acceptable names for individuals who professed Christ.