- published: 16 Feb 2016
- views: 1291929
'+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; })); }); -->
Reginald II, Count Palatine of Burgundy and Count of Mâcon, Vienne and Oltingen, was born in 1061; he was the eldest son of William I of Burgundy and brother to Stephen I of Burgundy, his successor, as well as to Pope Callixtus II.
He succeeded to the County, aged 25, on his father's death in 1087, also gaining the title of Count of Mâcon.
From his wife, the Countess Regina of Oltingen, he inherited—among others—the title of Count of Oltingen, they were the parents of William II of Burgundy.
The place and date of his death is uncertain, as is his potential participation in the First Crusade. His death is dated either to 1095, prior to the First Crusade or to circa 1102 in the Holy Land along with his brothers Stephen I and Hugh, archbishop of Besancon.
This is a list of the counts of Burgundy, i.e., of the region known as Franche-Comté not to be confused with the Duchy of Burgundy, from 982 to 1678.
In 1678 the County of Burgundy was annexed by France as part of the Treaty of Nijmegen.
HIDDEN ERROR: Usage of "death date" is not recognized
Renaud Pierre Manuel Séchan, known as Renaud (French: [ʁəno]; born 11 May 1952), is a popular French singer, songwriter and actor. His characteristically 'broken' voice makes for a very distinctive vocal style. Several of his songs are popular classics in France, including the sea tale "Dès que le vent soufflera", the irreverent "Laisse béton", the ballad "Morgane de toi" and the nostalgic "Mistral gagnant". However, with the exception of a recording of "Miss Maggie" in English and a franglais recording of "It is not because you are", his work is almost unknown outside the French-speaking world.
Fresh out of school, Renaud was determined to become an actor. By chance he met the actor Patrick Dewaere and was invited to join the company of the comedy theatre Café de la Gare, which had recently been founded by Patrick Dewaere, Coluche, and Miou-Miou.
His early work is characterized by a volatile temperament, innovative use of French, and edgy, dark, left-wing social and political themes. Raised in an educated milieu, the son of an intellectual, Renaud adopted the looks and attitude of working-class youth in the 1970s, and reflected this in his lyrics. A recurrent theme is his disgust for the average French people with petit-bourgeois preoccupations and right-wing leanings (see beauf). His music focuses on the disparity between classes, the abuse of political power, overbearing authority and disgust for the military, with rare glimpses of tenderness for his fellow humans, the planet earth, and art.
Renaud, ou La suite d'Armide (Renaud, or the Sequel to "Armide") is an opera by the French composer Henri Desmarets, first performed at the Académie Royale de Musique (the Paris Opera) on 5 March 1722. It takes the form of a tragédie en musique in a prologue and five acts. The libretto, by Simon-Joseph Pellegrin, is based on Torquato Tasso's Gerusalemme liberata. The opera is a sequel to Jean-Baptiste Lully's Armide (1686).
The libretto had an influence on Antonio Sacchini's opera Renaud, first performed in 1783.
Renaud, born Renaud Séchan, is a French singer, songwriter and actor.
Renaud may also refer to:
Burgundy (French: Bourgogne, IPA: [buʁ.ɡɔɲ]) is a historical territory and a former administrative region of east-central France. Since 1 January 2016, it is part of the new region Bourgogne-Franche-Comté. Burgundy comprises the following four departments: Côte-d'Or, Saône-et-Loire, Yonne and Nièvre.
Historically, "Burgundy" has referred to numerous political entities, including kingdoms and duchies spanning territory from the Mediterranean to the Low Countries.
Burgundy takes its name from the Burgundians, a Germanic people.
Burgundy was inhabited in turn by Celts, Romans (Gallo-Romans), and in the 4th century, the Romans who were then allied with the Burgundians, a Germanic people possibly originating in Bornholm (Baltic Sea), who settled there and established their own kingdom. However, Agathias identifies Burgunds (Βουρουγουνδοι) and Ultizurs as Bulgaric people of Hunnic circle tribes, near relatives of Cotrigurs and Utigurs. This Burgundian kingdom was conquered in the 6th century by another Germanic tribe, the Franks, who continued the kingdom of Burgundy under their own rule.
The Chinese Elm cultivar Ulmus parvifolia 'Burgundy' is a small American development.
The tree rarely exceeds 6 m in height, and has a broad, rounded form. The leaves are relatively large, dark-green, turning a deep burgundy in autumn. The exfoliating mottled bark is a rich orange-brown.
The species and its cultivars are highly resistant, but not immune, to Dutch elm disease, and completely unaffected by the Elm Leaf Beetle Xanthogaleruca luteola .
'Burgundy' is not known to be in cultivation beyond North America.
Presumably named for the colour of its autumn foliage.
(Widely available)
Movie: Napoleon (2023) Actress: Catherine Walker 🇮🇪 Age at the time of filming: 48 Footwear: High heeled boots👢
The Battle of Bouvines was fought on 27 July 1214 near the town of Bouvines in the County of Flanders. It was the concluding battle of the Anglo-French War of 1213–1214. A French army of approximately 7,000 men commanded by King Philip Augustus defeated an Allied army of approximately 9,000 men commanded by Holy Roman Emperor Otto IV. In early 1214, a coalition was assembled against King Philip Augustus of France, consisting of Otto IV, King John of England, Count Ferrand of Flanders, Count Renaud of Boulogne, Duke Henry I of Brabant, Count William I of Holland, Duke Theobald I of Lorraine, and Duke Henry III of Limburg. Its objective was to reverse the conquests made by Philip earlier in his reign. The resulting battle was a crushing French victory that dashed English and Flemish hopes ...
Field of Glory II Medieval is a realistic turn-based tactical game set in the High Middle Ages, developed by legendary designer Richard Bodley Scott and you can get it here: https://store.steampowered.com/app/1368870/Field_of_Glory_II_Medieval/ Kings and Generals animated historical animated documentary series on the medieval battles continue with a coverage of the battle of Bouvines of 1214. In the aftermath of the Third Crusade and the death of the king of England Richard Lionheart, French king Philip II Augustus attempts to restore his authority over France, but this forces the English king John I Lackland and the emperor of the Holy Roman Empire Otto IV to ally against him, leading to another Anglo-French war and the battle of Bouvines. The battle had a dramatic influence on European ...
New technologies at the service of wine: overview, costs, benefits (AI, robotization) by Renaud Ruer - La Place - CEO & Owner After obtaining his degree in International Business from the Sceaux University Institute of Technology, Renaud Ruer continued his studies in Political Sciences at Concordia University in Montreal, Canada. He began his professional career in packaging for the perfume industry before moving into the wine sector 21 years ago. He started at Baron Philippe de Rothschild, and subsequently held positions on Bernard Magrez’ estates and finally at Château d'Yquem, where he created the post of commercial and marketing director. He then decided to go out on his own as a wine merchant in Bordeaux, while also consulting for other wine & spirit brands.
1500 Volts AU PIED DES FALAISES Le réseau de Pierre Belkerri est un grand réseau de club, il en a en effet la taille et la qualité de présentation. Sans reproduire un site particulier, la maquette évoque divers sites de la région Sud-Est, de Dijon à l’endroit où la ligne impériale Paris - Lyon termine sa descente du seuil de Bourgogne et traverse les derniers contreforts calcaires qui précèdent l’arrivée à Dijon et offre un beau cadre aux grands trains de cette région, Ce réseau qui a déjà de nombreuses prestations remarquées lors de diverses expositions de trains, s’il appartient à l’un des membres très actifs du club de Chalon-sur-Saône, il porte les couleurs de cette association bourguignonne et est utilisé pour présenter le matériel roulant de chacun. Un thème fédérateur Une ligne à ...
Right now Trade is offering a total of $20 off your first three bags when you go to https://www.drinktrade.com/peopleprofiles, or click the link in the description below. That’s more than 16 cups of coffee for free! To get started, take their quiz at https://www.drinktrade.com/peopleprofiles, and start your journey to your perfect cup. That’s https://www.drinktrade.com/peopleprofiles for $20 off your first three bags. Hello guys! If you like our work please subscribe to our second channel The History Chronicles https://www.youtube.com/c/TheHistoryChronicles For early access to our videos, discounted merch and many other exclusive perks please support us as a Patron or Member... Patreon: http://www.patreon.com/thepeopleprofiles Buy me a Coffee: https://www.buymeacoffee.com/peopleprofiles ...
Thanks to Keeps for sponsoring - Head to https://keeps.com/kings to get 50% off your first order of hair loss treatment! New Kings and Generals animated historical animated documentary video on the Byzantine-Crusader-Bulgarian Wars, as well as the Fourth Crusade and the Sack of Constantinople, fragmentation, and restoration of the Eastern Roman Empire and Frankokratia will cover a number of battles including Tryavna, Zara, Sack of Constantinople, Adrianople, Klokotnica, Constantinople 1241, Pelagonia and Constantinople 1261. Kings and Generals Full Length Documentaries: https://www.youtube.com/playlist?list=PLaBYW76inbX5i81Dml0VEQqxWoJVueilr Previous videos on the Crusades, Bulgaria, and the Byzantine Empire: Varangians - Elite Bodyguards of the Byzantine Emperors - https://youtu.be/PRr4...
Episode covers Anglo-French war fought by kings Philip Augustus and John Lackland. The conflict leads to the decisive Battle of Bouvines, which changed the course of history of Western Europe. Support BazBattles on Patreon: https://www.patreon.com/bazbattles Music used: BTS Prolog - Kevin MacLeod Impact Allegretto - Kevin MacLeod All This Scoring Action - Kevin MacLeod Impact Andante - Kevin MacLeod Instinct - Bensound Many thanks to my generous Patreon supporters: Prince of Parthia, Admiralwaffles, Ed Nark, Giancarlo Andujo, Aust, James T Crawford, Matthew Rushing, Tobias Arvidsson, Victor Degliame, Callum Johnson and The Gorilla Shaman Show!
Reginald II, Count Palatine of Burgundy and Count of Mâcon, Vienne and Oltingen, was born in 1061; he was the eldest son of William I of Burgundy and brother to Stephen I of Burgundy, his successor, as well as to Pope Callixtus II.
He succeeded to the County, aged 25, on his father's death in 1087, also gaining the title of Count of Mâcon.
From his wife, the Countess Regina of Oltingen, he inherited—among others—the title of Count of Oltingen, they were the parents of William II of Burgundy.
The place and date of his death is uncertain, as is his potential participation in the First Crusade. His death is dated either to 1095, prior to the First Crusade or to circa 1102 in the Holy Land along with his brothers Stephen I and Hugh, archbishop of Besancon.