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

Bishop of Wrocław

Bishops of Wrocław/Breslau Bishopric, Prince-Bishopric (1290-1918), and Archdiocese (since 1930; see Roman Catholic Archdiocese of Wrocław/Breslau for details).

Bishops

  • 1000–? – John (Johannes Wrotizlaensis, Jan)
  • 1051–1062 – Hieronymus
  • 1063–1072 – Johann I
  • 1074–1111 – Peter I
  • 1112–1120 – Siroslaus I
  • 1120–1126 – Haymo
  • 1127–1140 – Robert I
  • 1140–1142 – Robert II
  • 1145–1146 – Konrad
  • 1146–1149 – Johann II
  • 1149–1169 – Walter
  • 1170–1198 – Siroslaus II
  • 1198–1201 – Jarosław, Duke of Opole (Jaroslaw of Oppeln)
  • 1201–1207 – Cyprian, (1196–1201 Bishop of Lebus)
  • 1207–1232 – Lawrence
  • 1232–1268 – Thomas I
  • 1268–1270 – Ladislaus of Salzburg, administrator
  • 1270–1290 – Thomas II.
  • Prince-Bishops

  • 1290–1292 – Thomas II, granted princely regalia by Henry IV Probus for the archiepiscopal Duchy of Nysa and Castellany of Otmuchów on 23 June 1290
  • 1292–1301 – Johann III Romka
  • 1302–1319 – Henry of Wierzbna (Heinrich von Würben)
  • 1319–1326 – sede vacante after double election:
    • Vitus of Habdank;
    • Lutold of Kroměříž
  • Podcasts:

    • Henryk Gulbinowicz, 97, Polish Roman Catholic Cardinal, Archbishop of Wrocław Death

      Henryk Gulbinowicz Death - Are you interested in getting all the facts related to news of the death Henryk Roman Gulbinowicz at one place? If you want to check all the details and death information, refer to this video. Henryk Roman Gulbinowicz (17 October 1923 – 16 November 2020) was a prelate of the Catholic Church who served as Archbishop of Wrocław from 1976 to 2004. Pope John Paul II made him a cardinal in 1985. In 2020, he was banned from making public appearances following a Holy See investigation t hat confirmed allegations that he had committed sexual abuse and evidence that he had been a secret police informant from 1969 to 1985. Even in Poland his birth year was thought to be 1928 as late as October 2003, when he was reported to have reached the normal retirement age of 7...

      published: 16 Nov 2020
    • Wrocław Cathedral, Wrocław, Lower Silesian, Poland, Europe

      The Cathedral of St. John the Baptist in Wrocław, is the seat of the Roman Catholic Archdiocese of Wrocław and a landmark of the city of Wrocław in Poland. The cathedral, located in the Ostrów Tumski district, is a Gothic church with Neo-Gothic additions. The current standing cathedral is the fourth church to have been built on the site. A first church at the location of the present cathedral was built under Přemyslid rule in the mid 10th century, a fieldstone building with one nave about 25 m (82 ft) in length, including a distinctive transept and an apse. After the Polish conquest of Silesia and the founding of the Wrocław diocese under the Piast duke Bolesław I Chrobry about 1000, this Bohemian church was replaced by a larger basilical structure with three naves, a crypt, and towers on ...

      published: 08 Aug 2013
    • Spotkania Papieży Franciszka z emerytowanym Benedyktem XVI

      #shorts Jeśli chcesz, żebyśmy produkowali więcej takich programów, ZASUBSKRYBUJ nasz kanał i PRZEKAŻ DAROWIZNĘ: ➤ Tradycyjnym przelewem: PL 14 7065 0002 0652 4682 1704 0001 Fundacja Vide et Crede, ul. Eluarda 2, 54-019 Wrocław tytułem: darowizna na cele statutowe, EWTN Polska ➤ Elektronicznie: https://ewtn.pl/chce-pomoc/darowizna/ ➤ PayPal: Polski: paypal.me/ewtnpl English: https://cutt.ly/vp8ujAa Português: https://cutt.ly/2p8y7Eb ➤ Patronite: https://patronite.pl/ewtn - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EWTN Polska | Telewizja Wiekuistego Słowa | Oficjalny kanał - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- - - - - - - - - - - - - - Oglądaj nas na: ➤ YouTube: https://ww...

      published: 03 Jan 2023
    • POLAND: WROCLAW: POPE JOHN PAUL II VISIT

      (1 Jun 1997) Natural Sound Pope John Paul the Second started an 11-day journey to his native Poland on Saturday with a visit to the city of Wroclaw. On Sunday half a (m) million people are expected to visit the city to try to get a glimpse of the pontiff when he says mass at the close of an Eucharistic Congress. A homecoming for Pope John Paul the Second. The pontiff arrived in Warsaw on Saturday to begin his seventh visit to his native land as pope. He then flew to Wroclaw where he made his first stop at the Gothic twin-spired St. John the Baptist Cathedral. Inside the cathedral, where Poland's 115 bishops were assembled, delighted nuns reached out to touch John Paul as he walked down the centre aisle. The pontiff then visited Wroclaw Town Hall where, watched, by ...

      published: 21 Jul 2015
    • Great Example of Hypergamy

      http://comeonmanpod.com - #hypergamy #psychology #biology #redpill #comeonmanpodcast

      published: 20 Dec 2021
    • Ingres Arcybiskupa Jerzego (Pańkowskiego)

      Powołany na mocy decyzji Świętego Soboru Polskiego Autokefalicznego Kościoła Prawosławnego i podniesiony do godności arcybiskupa władyka Jerzy (Pańkowski) został w dniu 18 czerwca 2017 r. w Soborze Narodzenia Przenajświętszej Bogurodzicy we Wrocławiu, oficjalnie wprowadzony na tron biskupów wrocławskich.

      published: 23 Jun 2017
    • To było ostatnie pożegnanie papieża Benedykta XVI na Placu Świętego Piotra

      #shorts Papież Franciszek złożył mu hołd i udzielił ostatniego błogosławieństwa trumny na zakończenie Mszy św. żałobnej w Watykanie Jeśli chcesz, żebyśmy produkowali więcej takich programów, ZASUBSKRYBUJ nasz kanał i PRZEKAŻ DAROWIZNĘ: ➤ Tradycyjnym przelewem: PL 14 7065 0002 0652 4682 1704 0001 Fundacja Vide et Crede, ul. Eluarda 2, 54-019 Wrocław tytułem: darowizna na cele statutowe, EWTN Polska ➤ Elektronicznie: https://ewtn.pl/chce-pomoc/darowizna/ ➤ PayPal: Polski: paypal.me/ewtnpl English: https://cutt.ly/vp8ujAa Português: https://cutt.ly/2p8y7Eb ➤ Patronite: https://patronite.pl/ewtn - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EWTN Polska | Telewizja Wiekuistego Słowa | Oficjalny kanał - - - - - - - - -...

      published: 05 Jan 2023
    • Święcenia prezbiteratu w katedrze wrocławskiej (cd)

      ciąg dalszy materiału- ...w archikatedrze wrocławskiej, podczas uroczystej eucharystii, ks. abp Marian Gołębiewski Administrator Apostolski Archidiecezji wrocławskiej udzielił święceń prezbiteratu 17-tu diakonom Metropolitalnego Wyższego Seminarium Duchownego we Wrocławiu. Abp Marian Gołębiewski zapewnił o modlitwie za wyświęconych kapłanów oraz zachęcił do wytrwałości w wierze. video- realizacja Zdzisław Maj tvRodzina

      published: 28 May 2013
    • Inside Corpus Christi Church / Wroclaw

      This video shows you the inside of the Corpus Christi Church in Wroclaw. In Polish it is called Parafia Rzymskokatolicka, I believe.. Not too old from the inside, and the silence is a Hugh difference with the busy outside. Polish people pray a lot, but don't give money to the vagrants who are often sitting next to the entrance, they will directly use it in the café next to the church. Reasonable modern style inside, where most churches are dark, this one is exceptionally light as you can see in this video. Not to disturbing a local citizen praying, we made this a short video. Please walk into this church when you are nearby for a moment of self-reflection, you have an impression of the inside now. ------- Ten film pokazuje wnętrze kościoła Bożego Ciała we Wrocławiu. W języku polskim nazyw...

      published: 17 May 2019
    • Orthodox Christianity Is Depressing

      #shorts #christianity #orthodoxy Just look at their icons ☹️. Enough said. For more information about orthodoxy, check out my following video: https://www.youtube.com/watch?v=XaBG9C8s3oM&list=PLNSE5celHpYVwLZ8Mdls4yRhW2H8HnlV8&index=7 Orthodox Magic Clothes: Part 1: https://youtube.com/shorts/0Fv5LlkMJ2w Orthodox Magic Clothes: Part 2: https://youtube.com/shorts/QzanEd5IIlc The “Miracle” of the “Holy” Fire! https://youtube.com/shorts/194c-b7RiLk Prelest, an Orthodox Scam! https://youtube.com/shorts/1ruueAO5gK8 The official Orthoprax Christianity website: http://orthopraxchristianity.org/

      published: 29 Aug 2022
    Henryk Gulbinowicz, 97, Polish Roman Catholic Cardinal, Archbishop of Wrocław Death
    1:40

    Henryk Gulbinowicz, 97, Polish Roman Catholic Cardinal, Archbishop of Wrocław Death

    • Order:
    • Duration: 1:40
    • Uploaded Date: 16 Nov 2020
    • views: 22
    Henryk Gulbinowicz Death - Are you interested in getting all the facts related to news of the death Henryk Roman Gulbinowicz at one place? If you want to check all the details and death information, refer to this video. Henryk Roman Gulbinowicz (17 October 1923 – 16 November 2020) was a prelate of the Catholic Church who served as Archbishop of Wrocław from 1976 to 2004. Pope John Paul II made him a cardinal in 1985. In 2020, he was banned from making public appearances following a Holy See investigation t hat confirmed allegations that he had committed sexual abuse and evidence that he had been a secret police informant from 1969 to 1985. Even in Poland his birth year was thought to be 1928 as late as October 2003, when he was reported to have reached the normal retirement age of 75. We request to kindly like and subscribe to our channel, so that in the future as well, we can provide the latest death news at the earliest. You are suggested to use social media apps presented below to inform others about the death of Henryk Roman Gulbinowicz. Anyone who want to pay one’s tributes can use the comment section below to do that. Thanks and have a good day ahead.
    https://wn.com/Henryk_Gulbinowicz,_97,_Polish_Roman_Catholic_Cardinal,_Archbishop_Of_Wrocław_Death
    Wrocław Cathedral, Wrocław, Lower Silesian, Poland, Europe
    0:25

    Wrocław Cathedral, Wrocław, Lower Silesian, Poland, Europe

    • Order:
    • Duration: 0:25
    • Uploaded Date: 08 Aug 2013
    • views: 1324
    The Cathedral of St. John the Baptist in Wrocław, is the seat of the Roman Catholic Archdiocese of Wrocław and a landmark of the city of Wrocław in Poland. The cathedral, located in the Ostrów Tumski district, is a Gothic church with Neo-Gothic additions. The current standing cathedral is the fourth church to have been built on the site. A first church at the location of the present cathedral was built under Přemyslid rule in the mid 10th century, a fieldstone building with one nave about 25 m (82 ft) in length, including a distinctive transept and an apse. After the Polish conquest of Silesia and the founding of the Wrocław diocese under the Piast duke Bolesław I Chrobry about 1000, this Bohemian church was replaced by a larger basilical structure with three naves, a crypt, and towers on its eastern side. The first cathedral was however soon destroyed, probably by the invading troops of Duke Bretislaus of Bohemia around 1039. A larger, Romanesque-style church was soon built in its place in the times of Duke Casimir I, and expanded similar to Płock Cathedral on the behest of Bishop Walter of Malonne in 1158. After the end of the Mongol invasion, the church was again largely rebuilt in the present-day Brick Gothic style. It was the first building of the city to be made of brick when construction of the new choir and ambulatory started in 1244. The nave with sacristy and the basements of the prominent western steeples were added under Bishop Nanker until 1341. On June 19, 1540, a fire destroyed the roof, which was restored 16 years later in Renaissance style. Another fire on June 9, 1759, burnt the towers, roof, sacristy, and quire. The damage was slowly repaired during the following 150 years. In the 19th century, Karl Lüdecke rebuilt the interior and western side in neogothic style. Further work was done at the beginning of the 20th century by Hugo Hartung, especially on the towers ruined during the 1759 fire. The cathedral was almost entirely destroyed (about 70% of the construction) during the Siege of Breslau and heavy bombing by the Red Army in the last days of World War II. Parts of the interior fittings were saved and are now on display at the National Museum in Warsaw. The initial reconstruction of the church lasted until 1951, when it was reconsecrated by Archbishop Stefan Wyszyński. In the following years, additional aspects were rebuilt and renovated. The original, conical shape of the towers was restored only in 1991. The cathedral holds the largest pipe organ in Poland built in 1913 by Walcker Orgelbau for the Centennial Hall, formerly the largest organ in the world. The current cathedral is a three-nave Gothic oriented basilica surrounded by an ambulatory. The cathedral has three entrances: the main western portal and two later entrances from the north and south. Chapel of St. Elizabeth in the south was built 1682-1700 as the mausoleum of Bishop Frederick of Hesse-Darmstadt. The chapel was dedicated to St. Elizabeth of Hungary, whose cult had been popular in the city since the Middle Ages. It is a fine example of baroque architecture and forms the counterpoint of the Elector's Chapel. The design was probably the work of Giacome Schianzi, who is also credited with the paintings in the dome, which, along with wall paintings by Andreas Kowalski, show the death, burial, and heavenly glory of St. Elizabeth. The statue of St. Elizabeth was created by Ercole Ferrata, a student of Bernini's. Facing the altar on the other side of the chapel is the cardinal's tomb, the work of Domenico Guidi, another of Bernini's pupils. It depicts the kneeling cardinal surrounded by allegories of Truth and Eternity. Above the door to the church is a bust of the cardinal executed by the workshop of Bernini. The Gothic Marian Chapel directly behind the choir was built by the architect Peschel under the orders of Bishop Preczlaw of Pogarell from 1354-1365. Apart from the tomb of its founder it it also contains the tomb of Bishop Johann IV Roth, the work of Peter Fischer the Elder. A famous story from WWII concerned a famously beautiful marble statue of the Virgin and Child, created by Carl Johann Steinhäuser in 1854, that was kept in the chapel. When the Russians bombed the cathedral, the flames miraculously stopped in front of the fallen statue, preserving the three back chapels from destruction. Despite the fall, bombing, and general destruction, the statue remained unharmed. The northern Baroque Elector's Chapel, or the Chapel of Corpus Christi, was built from 1716-1724 as the mausoleum of bishop Count Palatine Francis Louis of Neuburg. Francis Louis was also bishop of Trier and Magdeburg, making him one of the electors eligible to choose the German emperor, hence the name of the chapel. The designer was the Viennese architect Johann Bernhard Fischer von Erlach. The decorative paintings were the work of Carlo Carlone and the sculptures that of Ferdinand Brokoff.
    https://wn.com/Wrocław_Cathedral,_Wrocław,_Lower_Silesian,_Poland,_Europe
    Spotkania Papieży Franciszka z emerytowanym Benedyktem XVI
    0:57

    Spotkania Papieży Franciszka z emerytowanym Benedyktem XVI

    • Order:
    • Duration: 0:57
    • Uploaded Date: 03 Jan 2023
    • views: 30820
    #shorts Jeśli chcesz, żebyśmy produkowali więcej takich programów, ZASUBSKRYBUJ nasz kanał i PRZEKAŻ DAROWIZNĘ: ➤ Tradycyjnym przelewem: PL 14 7065 0002 0652 4682 1704 0001 Fundacja Vide et Crede, ul. Eluarda 2, 54-019 Wrocław tytułem: darowizna na cele statutowe, EWTN Polska ➤ Elektronicznie: https://ewtn.pl/chce-pomoc/darowizna/ ➤ PayPal: Polski: paypal.me/ewtnpl English: https://cutt.ly/vp8ujAa Português: https://cutt.ly/2p8y7Eb ➤ Patronite: https://patronite.pl/ewtn - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EWTN Polska | Telewizja Wiekuistego Słowa | Oficjalny kanał - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- - - - - - - - - - - - - - Oglądaj nas na: ➤ YouTube: https://www.youtube.com/ewtnpolska ➤ Cyfrowych sieciach kablowych oraz TVK ➤ www.ewtn.pl ➤ Facebook: https://www.facebook.com/EWTNPolska/ ➤ Twitter: https://twitter.com/EWTNPL Jesteśmy polską stacją, która należy do rodziny katolickich telewizji - EWTN. Naszym charyzmatem jest propagowanie nauczania i tradycji Kościoła katolickiego po to, by umożliwiać nam wszystkim duchowy wzrost. Codziennie transmitujemy modlitwy z Jasnej Góry, Tyńca, Niepokalanowa, produkujemy własne programy. Pierwszą stację w rodzinie katolickich telewizji EWTN założyła w 1981 r. klaryska klauzurowa Matka Angelica, ceniona i wspierana przez Jana Pawła II. „EWTN jest kluczem do przywrócenia znaczenia Kościoła rzymskokatolickiego” – mówił Jan Paweł II. Nasze programy są dostępne dla każdego. Finansujemy się dzięki darowiznom naszych Widzów, którzy chcą pomóc naszej misji. --- Zastrzeżenia --- Wszystkie umieszczone materiały video, foto oraz transmisje live są chronione prawem, zabrania się rozpowszechniania i wykorzystywania ich we fragmentach lub całości bez zgody Fundacji Vide et Crede operatora EWTN Global Catholic Network w Polsce.
    https://wn.com/Spotkania_Papieży_Franciszka_Z_Emerytowanym_Benedyktem_Xvi
    POLAND: WROCLAW: POPE JOHN PAUL II VISIT
    2:03

    POLAND: WROCLAW: POPE JOHN PAUL II VISIT

    • Order:
    • Duration: 2:03
    • Uploaded Date: 21 Jul 2015
    • views: 1683
    (1 Jun 1997) Natural Sound Pope John Paul the Second started an 11-day journey to his native Poland on Saturday with a visit to the city of Wroclaw. On Sunday half a (m) million people are expected to visit the city to try to get a glimpse of the pontiff when he says mass at the close of an Eucharistic Congress. A homecoming for Pope John Paul the Second. The pontiff arrived in Warsaw on Saturday to begin his seventh visit to his native land as pope. He then flew to Wroclaw where he made his first stop at the Gothic twin-spired St. John the Baptist Cathedral. Inside the cathedral, where Poland's 115 bishops were assembled, delighted nuns reached out to touch John Paul as he walked down the centre aisle. The pontiff then visited Wroclaw Town Hall where, watched, by Polish President Alexander Kwasniewski, he signed his name to loud applause. The pope continued on to the International Eucharistic Congress, which has been in session all week. The Congress has brought together all Christian denominations and the Pope's presence there was greeted with a standing ovation. On Sunday, he'll say mass at the Congress' close. Church officials say they expect half a (m) million people to visit the city to try and get a glimpse of him. The trip will be one of the longest tours of his 19-year papacy; the pope plans to visit 12 cities in 11 days, including Poznan and Krakow. But the Polish trip also takes in some nostalgia. The pope will visit his parents' tomb, the Tatra mountains where he used to ski and the school where he secretly studied theology during the Nazi occupation. John Paul said although he's now living far away in Italy he never ceases to feel like a child of Poland. Find out more about AP Archive: http://www.aparchive.com/HowWeWork Twitter: https://twitter.com/AP_Archive Facebook: https://www.facebook.com/APArchives ​​ Instagram: https://www.instagram.com/APNews/ You can license this story through AP Archive: http://www.aparchive.com/metadata/youtube/b420455c61b94e727fcfc4800654cf10
    https://wn.com/Poland_Wroclaw_Pope_John_Paul_Ii_Visit
    Great Example of Hypergamy
    0:54

    Great Example of Hypergamy

    • Order:
    • Duration: 0:54
    • Uploaded Date: 20 Dec 2021
    • views: 2613859
    http://comeonmanpod.com - #hypergamy #psychology #biology #redpill #comeonmanpodcast
    https://wn.com/Great_Example_Of_Hypergamy
    Ingres Arcybiskupa Jerzego (Pańkowskiego)
    3:40

    Ingres Arcybiskupa Jerzego (Pańkowskiego)

    • Order:
    • Duration: 3:40
    • Uploaded Date: 23 Jun 2017
    • views: 20580
    Powołany na mocy decyzji Świętego Soboru Polskiego Autokefalicznego Kościoła Prawosławnego i podniesiony do godności arcybiskupa władyka Jerzy (Pańkowski) został w dniu 18 czerwca 2017 r. w Soborze Narodzenia Przenajświętszej Bogurodzicy we Wrocławiu, oficjalnie wprowadzony na tron biskupów wrocławskich.
    https://wn.com/Ingres_Arcybiskupa_Jerzego_(Pańkowskiego)
    To było ostatnie pożegnanie papieża Benedykta XVI na Placu Świętego Piotra
    1:00

    To było ostatnie pożegnanie papieża Benedykta XVI na Placu Świętego Piotra

    • Order:
    • Duration: 1:00
    • Uploaded Date: 05 Jan 2023
    • views: 34207
    #shorts Papież Franciszek złożył mu hołd i udzielił ostatniego błogosławieństwa trumny na zakończenie Mszy św. żałobnej w Watykanie Jeśli chcesz, żebyśmy produkowali więcej takich programów, ZASUBSKRYBUJ nasz kanał i PRZEKAŻ DAROWIZNĘ: ➤ Tradycyjnym przelewem: PL 14 7065 0002 0652 4682 1704 0001 Fundacja Vide et Crede, ul. Eluarda 2, 54-019 Wrocław tytułem: darowizna na cele statutowe, EWTN Polska ➤ Elektronicznie: https://ewtn.pl/chce-pomoc/darowizna/ ➤ PayPal: Polski: paypal.me/ewtnpl English: https://cutt.ly/vp8ujAa Português: https://cutt.ly/2p8y7Eb ➤ Patronite: https://patronite.pl/ewtn - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EWTN Polska | Telewizja Wiekuistego Słowa | Oficjalny kanał - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- - - - - - - - - - - - - - Oglądaj nas na: ➤ YouTube: https://www.youtube.com/ewtnpolska ➤ Cyfrowych sieciach kablowych oraz TVK ➤ www.ewtn.pl ➤ Facebook: https://www.facebook.com/EWTNPolska/ ➤ Twitter: https://twitter.com/EWTNPL Jesteśmy polską stacją, która należy do rodziny katolickich telewizji - EWTN. Naszym charyzmatem jest propagowanie nauczania i tradycji Kościoła katolickiego po to, by umożliwiać nam wszystkim duchowy wzrost. Codziennie transmitujemy modlitwy z Jasnej Góry, Tyńca, Niepokalanowa, produkujemy własne programy. Pierwszą stację w rodzinie katolickich telewizji EWTN założyła w 1981 r. klaryska klauzurowa Matka Angelica, ceniona i wspierana przez Jana Pawła II. „EWTN jest kluczem do przywrócenia znaczenia Kościoła rzymskokatolickiego” – mówił Jan Paweł II. Nasze programy są dostępne dla każdego. Finansujemy się dzięki darowiznom naszych Widzów, którzy chcą pomóc naszej misji. --- Zastrzeżenia --- Wszystkie umieszczone materiały video, foto oraz transmisje live są chronione prawem, zabrania się rozpowszechniania i wykorzystywania ich we fragmentach lub całości bez zgody Fundacji Vide et Crede operatora EWTN Global Catholic Network w Polsce.
    https://wn.com/To_Było_Ostatnie_Pożegnanie_Papieża_Benedykta_Xvi_Na_Placu_Świętego_Piotra
    Święcenia prezbiteratu w katedrze wrocławskiej (cd)
    12:03

    Święcenia prezbiteratu w katedrze wrocławskiej (cd)

    • Order:
    • Duration: 12:03
    • Uploaded Date: 28 May 2013
    • views: 4697
    ciąg dalszy materiału- ...w archikatedrze wrocławskiej, podczas uroczystej eucharystii, ks. abp Marian Gołębiewski Administrator Apostolski Archidiecezji wrocławskiej udzielił święceń prezbiteratu 17-tu diakonom Metropolitalnego Wyższego Seminarium Duchownego we Wrocławiu. Abp Marian Gołębiewski zapewnił o modlitwie za wyświęconych kapłanów oraz zachęcił do wytrwałości w wierze. video- realizacja Zdzisław Maj tvRodzina
    https://wn.com/Święcenia_Prezbiteratu_W_Katedrze_Wrocławskiej_(Cd)
    Inside Corpus Christi Church / Wroclaw
    1:40

    Inside Corpus Christi Church / Wroclaw

    • Order:
    • Duration: 1:40
    • Uploaded Date: 17 May 2019
    • views: 58
    This video shows you the inside of the Corpus Christi Church in Wroclaw. In Polish it is called Parafia Rzymskokatolicka, I believe.. Not too old from the inside, and the silence is a Hugh difference with the busy outside. Polish people pray a lot, but don't give money to the vagrants who are often sitting next to the entrance, they will directly use it in the café next to the church. Reasonable modern style inside, where most churches are dark, this one is exceptionally light as you can see in this video. Not to disturbing a local citizen praying, we made this a short video. Please walk into this church when you are nearby for a moment of self-reflection, you have an impression of the inside now. ------- Ten film pokazuje wnętrze kościoła Bożego Ciała we Wrocławiu. W języku polskim nazywa się Parafia Rzymskokatolicka, wierzę .. Nie za stary od środka, a cisza to różnica Hugh z ruchliwym na zewnątrz. Polacy dużo się modlą, ale nie dają pieniędzy włóczęgom, którzy często siedzą przy wejściu, będą bezpośrednio z niego korzystać w kawiarni obok kościoła. Rozsądny styl nowoczesny wewnątrz, gdzie większość kościołów jest ciemna, ten jest wyjątkowo lekki, jak widać na tym filmie. Nie przeszkadzając miejscowym mieszkańcom modlić się, zrobiliśmy to krótkie wideo. Proszę, wejdź do tego kościoła, kiedy jesteś w pobliżu na chwilę autorefleksji, teraz masz wrażenie, że jesteś w środku. ------- Cette vidéo vous montre l'intérieur de l'église du Corpus Christi à Wroclaw. En polonais, cela s'appelle Parafia Rzymskokatolicka, je crois. Pas trop vieux de l'intérieur, et le silence est une différence entre Hugh et le monde occupé. Les Polonais prient beaucoup, mais ne donnez pas d'argent aux vagabonds qui sont souvent assis à côté de l'entrée, ils l'utiliseront directement au café situé à côté de l'église. Style moderne raisonnable à l'intérieur, où la plupart des églises sont sombres, celle-ci est exceptionnellement claire, comme vous pouvez le voir dans cette vidéo. Sans déranger un citoyen local en train de prier, nous avons fait une courte vidéo. Veuillez entrer dans cette église lorsque vous êtes à proximité pour un moment de réflexion sur vous-même. Vous avez maintenant une impression de l'intérieur. ------- Dieses Video zeigt Ihnen das Innere der Fronleichnamskirche in Breslau. Auf Polnisch heißt es Parafia Rzymskokatolicka, glaube ich. Von innen nicht zu alt, und die Stille unterscheidet sich stark von den Beschäftigten im Freien. Die Polen beten viel, geben aber den Landstreitern, die oft neben dem Eingang sitzen, kein Geld. Sie werden es direkt im Café neben der Kirche benutzen. Angemessener moderner Stil im Inneren, wo die meisten Kirchen dunkel sind, ist diese außergewöhnlich hell, wie Sie in diesem Video sehen können. Um das Beten eines Einheimischen nicht zu stören, haben wir ein kurzes Video gemacht. Bitte betritt diese Kirche, wenn du für einen Moment der Selbstreflexion in der Nähe bist, du hast jetzt einen Eindruck von innen. ------- Toto video vám ukazuje vnitřek kostela Corpus Christi ve Vratislavi. V polštině se to nazývá Parafia Rzymskokatolicka, věřím .. Není příliš starý zevnitř, a ticho je rozdíl mezi Hughem a rušným exteriérem. Poláci se hodně modlí, ale nedávají peníze tulákům, kteří často sedí vedle vchodu, budou je přímo používat v kavárně vedle kostela. Rozumný moderní styl uvnitř, kde je většina kostelů temných, je tento výjimečně lehký, jak můžete vidět na tomto videu. Abychom nerušili modlitbu místního občana, udělali jsme toto krátké video. Prosím, vraťte se do této církve, když jste poblíž, abyste se dostali k sebevyjádření. ------- Questo video mostra l'interno della Chiesa del Corpus Christi a Wroclaw. In polacco si chiama Parafia Rzymskokatolicka, credo .. Non troppo vecchio dall'interno, e il silenzio è una differenza di Hugh con l'esterno occupato. I polacchi pregano molto, ma non danno soldi ai vagabondi che sono spesso seduti vicino all'ingresso, lo useranno direttamente nel bar vicino alla chiesa. All'interno di un ragionevole stile moderno, dove la maggior parte delle chiese sono buie, questa è eccezionalmente leggera come puoi vedere in questo video. Per non disturbare un cittadino locale che prega, abbiamo realizzato questo breve video. Per favore, entra in questa chiesa quando sei nelle vicinanze per un momento di auto-riflessione, ora hai l'impressione di essere dentro. -------
    https://wn.com/Inside_Corpus_Christi_Church_Wroclaw
    Orthodox Christianity Is Depressing
    0:51

    Orthodox Christianity Is Depressing

    • Order:
    • Duration: 0:51
    • Uploaded Date: 29 Aug 2022
    • views: 267728
    #shorts #christianity #orthodoxy Just look at their icons ☹️. Enough said. For more information about orthodoxy, check out my following video: https://www.youtube.com/watch?v=XaBG9C8s3oM&list=PLNSE5celHpYVwLZ8Mdls4yRhW2H8HnlV8&index=7 Orthodox Magic Clothes: Part 1: https://youtube.com/shorts/0Fv5LlkMJ2w Orthodox Magic Clothes: Part 2: https://youtube.com/shorts/QzanEd5IIlc The “Miracle” of the “Holy” Fire! https://youtube.com/shorts/194c-b7RiLk Prelest, an Orthodox Scam! https://youtube.com/shorts/1ruueAO5gK8 The official Orthoprax Christianity website: http://orthopraxchristianity.org/
    https://wn.com/Orthodox_Christianity_Is_Depressing
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Henryk Gulbinowicz, 97, Polish Roman Catholic Cardinal, Archbishop of Wrocław Death
      1:40
      Henryk Gulbinowicz, 97, Polish Roman Catholic Cardinal, Archbishop of Wrocław Deathremove from playlist
    • Wrocław Cathedral, Wrocław, Lower Silesian, Poland, Europe
      0:25
      Wrocław Cathedral, Wrocław, Lower Silesian, Poland, Europeremove from playlist
    • Spotkania Papieży Franciszka z emerytowanym Benedyktem XVI
      0:57
      Spotkania Papieży Franciszka z emerytowanym Benedyktem XVIremove from playlist
    • POLAND: WROCLAW: POPE JOHN PAUL II VISIT
      2:03
      POLAND: WROCLAW: POPE JOHN PAUL II VISITremove from playlist
    • Great Example of Hypergamy
      0:54
      Great Example of Hypergamyremove from playlist
    • Ingres Arcybiskupa Jerzego (Pańkowskiego)
      3:40
      Ingres Arcybiskupa Jerzego (Pańkowskiego)remove from playlist
    • To było ostatnie pożegnanie papieża Benedykta XVI na Placu Świętego Piotra
      1:00
      To było ostatnie pożegnanie papieża Benedykta XVI na Placu Świętego Piotraremove from playlist
    • Święcenia prezbiteratu w katedrze wrocławskiej (cd)
      12:03
      Święcenia prezbiteratu w katedrze wrocławskiej (cd)remove from playlist
    • Inside Corpus Christi Church / Wroclaw
      1:40
      Inside Corpus Christi Church / Wroclawremove from playlist
    • Orthodox Christianity Is Depressing
      0:51
      Orthodox Christianity Is Depressingremove from playlist
    PLAYLIST TIME: 0:00 / 25:13

    Henryk Gulbinowicz, 97, Polish Roman Catholic Cardinal, Archbishop of Wrocław Death

    Henryk Gulbinowicz Death - Are you interested in getting all the facts related to news of the death Henryk Roman Gulbinowicz at one place? If you want to check all the details and death information, refer to this video. Henryk Roman Gulbinowicz (17 October 1923 – 16 November 2020) was a prelate of the Catholic Church who served as Archbishop of Wrocław from 1976 to 2004. Pope John Paul II made him a cardinal in 1985. In 2020, he was banned from making public appearances following a Holy See investigation t hat confirmed allegations that he had committed sexual abuse and evidence that he had been a secret police informant from 1969 to 1985. Even in Poland his birth year was thought to be 1928 as late as October 2003, when he was reported to have reached the normal retirement age of 75. We request to kindly like and subscribe to our channel, so that in the future as well, we can provide the latest death news at the earliest. You are suggested to use social media apps presented below to inform others about the death of Henryk Roman Gulbinowicz. Anyone who want to pay one’s tributes can use the comment section below to do that. Thanks and have a good day ahead.
    1:40
    Henryk Gulbinowicz, 97, Polish Roman Catholic Cardinal, Archbishop of Wrocław Death
    Henryk Gulbinowicz Death - Are you interested in getting all the facts related to news of ...
    published: 16 Nov 2020
    Play in Full Screen
    0:25
    Wrocław Cathedral, Wrocław, Lower Silesian, Poland, Europe
    The Cathedral of St. John the Baptist in Wrocław, is the seat of the Roman Catholic Archdi...
    published: 08 Aug 2013
    Play in Full Screen
    0:57
    Spotkania Papieży Franciszka z emerytowanym Benedyktem XVI
    #shorts Jeśli chcesz, żebyśmy produkowali więcej takich programów, ZASUBSKRYBUJ nasz kan...
    published: 03 Jan 2023
    Play in Full Screen
    2:03
    POLAND: WROCLAW: POPE JOHN PAUL II VISIT
    (1 Jun 1997) Natural Sound Pope John Paul the Second started an 11-day journey to hi...
    published: 21 Jul 2015
    Play in Full Screen
    0:54
    Great Example of Hypergamy
    http://comeonmanpod.com - #hypergamy #psychology #biology #redpill #comeonmanpodcast
    published: 20 Dec 2021
    Play in Full Screen
    3:40
    Ingres Arcybiskupa Jerzego (Pańkowskiego)
    Powołany na mocy decyzji Świętego Soboru Polskiego Autokefalicznego Kościoła Prawosławnego...
    published: 23 Jun 2017
    Play in Full Screen
    1:00
    To było ostatnie pożegnanie papieża Benedykta XVI na Placu Świętego Piotra
    #shorts Papież Franciszek złożył mu hołd i udzielił ostatniego błogosławieństwa trumny na...
    published: 05 Jan 2023
    Play in Full Screen
    12:03
    Święcenia prezbiteratu w katedrze wrocławskiej (cd)
    ciąg dalszy materiału- ...w archikatedrze wrocławskiej, podczas uroczystej eucharystii, ks...
    published: 28 May 2013
    Play in Full Screen
    1:40
    Inside Corpus Christi Church / Wroclaw
    This video shows you the inside of the Corpus Christi Church in Wroclaw. In Polish it is c...
    published: 17 May 2019
    Play in Full Screen
    0:51
    Orthodox Christianity Is Depressing
    #shorts #christianity #orthodoxy Just look at their icons ☹️. Enough said. For more infor...
    published: 29 Aug 2022
    Play in Full Screen

    Bishop of Wrocław

    Bishops of Wrocław/Breslau Bishopric, Prince-Bishopric (1290-1918), and Archdiocese (since 1930; see Roman Catholic Archdiocese of Wrocław/Breslau for details).

    Bishops

  • 1000–? – John (Johannes Wrotizlaensis, Jan)
  • 1051–1062 – Hieronymus
  • 1063–1072 – Johann I
  • 1074–1111 – Peter I
  • 1112–1120 – Siroslaus I
  • 1120–1126 – Haymo
  • 1127–1140 – Robert I
  • 1140–1142 – Robert II
  • 1145–1146 – Konrad
  • 1146–1149 – Johann II
  • 1149–1169 – Walter
  • 1170–1198 – Siroslaus II
  • 1198–1201 – Jarosław, Duke of Opole (Jaroslaw of Oppeln)
  • 1201–1207 – Cyprian, (1196–1201 Bishop of Lebus)
  • 1207–1232 – Lawrence
  • 1232–1268 – Thomas I
  • 1268–1270 – Ladislaus of Salzburg, administrator
  • 1270–1290 – Thomas II.
  • Prince-Bishops

  • 1290–1292 – Thomas II, granted princely regalia by Henry IV Probus for the archiepiscopal Duchy of Nysa and Castellany of Otmuchów on 23 June 1290
  • 1292–1301 – Johann III Romka
  • 1302–1319 – Henry of Wierzbna (Heinrich von Würben)
  • 1319–1326 – sede vacante after double election:
    • Vitus of Habdank;
    • Lutold of Kroměříž
  • '); } 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)); } }); }); }); // -->
    ×