- published: 17 Nov 2016
- views: 4185
'+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; })); }); -->
Coordinates: 13°50′N 88°55′W / 13.833°N 88.917°W / 13.833; -88.917
El Salvador (i/ɛl ˈsælvədɔːr/; Spanish: [el salβaˈðor]), officially the Republic of El Salvador (Spanish: República de El Salvador, literally "Republic of The Savior"), is the smallest and the most densely populated country in Central America. El Salvador's capital and largest city is San Salvador. As of 2015, El Salvador had a population of approximately 6.38 million, making it the most densely populated country in the region. Its population consists largely of Mestizos of European and Indigenous American descent.
El Salvador was for centuries inhabited by several Mesoamerican nations, especially the Cuzcatlecs, as well as the Lenca and Maya. In the early 16th century, the Spanish Empire conquered the territory, incorporating it into the Viceroyalty of New Spain. In 1821, the country achieved independence from Spain as part of the First Mexican Empire, only to further secede as part of the Federal Republic of Central America in 1823. Upon the republic's dissolution in 1841, El Salvador became sovereign until forming a short-lived union with Honduras and Nicaragua called the Greater Republic of Central America, which lasted from 1895 to 1898.
El Salvador is a country in Central America.
El Salvador may also refer to:
El Salvador alias El Henrique was a Spanish treasure ship that ran aground near present-day Beaufort Inlet, North Carolina during a hurricane in August of 1750. She was traveling with six other Spanish merchantmen including the Nuestra Señora De Soledad which went ashore near present-day Core Banks, NC and the Nuestra Señora de Guadalupe which went ashore near present-day Ocracoke, NC.
The merchant ship El Salvador sailed from Cartagena, Colombia for Cadiz, Spain loaded with a cargo of gold and silver where she was part of the Spanish treasure fleet, a convoy system adopted by the Spanish Empire from 1566 to 1790. After taking on supplies in Havana, Cuba the heavily laden El Salvador headed for Cadiz with six other Spanish ships on August 7, 1750. Around noon on August 25 the El Salvador and the six other vessels in the fleet were caught in a hurricane Northeast of present-day Cape Canaveral, Florida. The storm forced the ships North along the Gulf Stream where the El Salvador, Soledad and Guadalupe were driven ashore along the Outer Banks of North Carolina. Reports found in the Spanish archives indicate that El Salvador was carrying 240,000 pesos in registered Spanish Treasury funds, made up of four chests of gold coins and sixteen chests of silver coins of varying denominations, plus 50,000 pesos in commercial funds.
"El Salvador" is a song by the British rock band Athlete and was the lead track on their 2003 debut album, Vehicles and Animals. It was released 24 March 2003 as the fourth single from the album, charting at #31 in the UK Singles Chart (see 2003 in British music).
"El Salvador" is a 1982 protest song about United States involvement in the Salvadoran Civil War, written by Noel Paul Stookey and performed by Peter, Paul and Mary. The song originally appeared on the 1986 album No Easy Walk To Freedom. It was included on the 1999 compilation album Songs of Conscience and Concern and as part of a 25th anniversary concert in New York's Greenwich Village at The Bitter End.
Stookey wrote the song on Mother's Day, 1982, inspired by an article in a Roman Catholic magazine, and has said that the song was controversial even with the group's fans. In a 1997 interview with the Houston Chronicle, Stookey commented, "The most recent surprise we had was in the mid- to late-'80s, when we were singing a song called 'El Salvador'. The last line was, 'Don't you think it's time we leave El Salvador?' We actually got booed at our concerts, which was something we hadn't heard since the civil rights movement or the anti-war movement." Segments of the lyrics often were quoted in articles of the period, including this verse:
The Policía Nacional Civil is the national police of El Salvador.
In the early days of the Republic of El Salvador, the Civil Guard was created in 1867, which then gave way to the National Guard in 1912.
At the end of the Salvadoran Civil War law enforcement bodies in El Salvador included the National Police (Policia Nacional), the Treasury Police, and the National Guard. All were part of the Armed Forces of El Salvador. According to the Commission on the Truth for El Salvador, these police agencies perpetrated many human rights abuses during the civil war. Establishing civilian control of law enforcement agencies was a central tenet of the peace accords which ended the war only after the government and the guerrillas agreed to create a new National Civil Police, incorporating both former police and ex-insurgents as well as a large proportion of previous non-combatants into its ranks. The office of U.S. Senate Majority Whip Alan Cranston (D-California) played a key role in brokering that final agreement, which included the U.S. Department of Justice taking the lead among international actors in establishing the new force.
(24 Nov 1995) Spanish/Nat El Salvador's National Civilian Police faces further criticism following a violent confrontation between officers and war veterans, in which one man was killed. APTV has exclusive pictures, showing the victim being shot by a policeman firing at close range. The man was one of 200 veterans who had taken 40 government workers hostage in protest at the government's failure to give them state benefits promised under the country's peace accord. 200 veterans took over the Disabled War Veterans' Fund Offices in San Salvador in a bid to pressure the government into paying out state benefits they claim are due to them. The veterans - former rebels and government soldiers - claim they were promised benefits and funds to help them reassimilate into civi...
(12 Apr 1996) Spanish/Nat El Salvador's National Civil Police have come under fire recently for human rights abuses. Some leaders are asking for a reorganisation of the police force. An alleged victim of El Salvador's National Civil Police. A recent investigation into the homicides of three adults and a 13-year old in San Pedro Masahuat where the National Civil Police (P-N-C) has been implicated has drawn attention to human rights abuses. Police officials said there are cases of abuses by the police everywhere in the world, but they would be hard on those who committed crimes within the (P-N-C) SOUNDBITE: (Spanish) We have always said from the beginning that we will judge double hard those who, while being members of the police, break the law and commit crimes. SUPER ...
A new prison in El Salvador that is set to host 40,000 people during the country's state of emergency has been criticized for alleged human rights violations. RELATED: El Salvador cooks up what it says is a world record for pupusa dish https://bit.ly/3IXIIQG » Subscribe to USA TODAY: http://bit.ly/1xa3XAh » Watch more on this and other topics from USA TODAY: https://bit.ly/3QYKjbc » USA TODAY delivers current local and national news, sports, entertainment, finance, technology, and more through award-winning journalism, photos, videos and VR. #ElSalvador #Prison #GangMembers
(23 Aug 1996) Spanish/Nat U-N Secretary-General Boutros Boutros-Ghali has warned that El Salvador's civilian police force is becoming increasingly authoritarian. His claim coincides with a survey revealing that the general public in the Central American country is losing faith in the justice system. Faced with a wave of crime and civil disorder, El Salvador's new civilian police force has turned to increasingly brutal methods. The P-N-C, or National Civilian Police, was one of the most important results of the 1992 peace accord which ended years of civil war. By including both police officers and former rebels, it was hoped the new force would defuse tensions in El Salvador. But a recent U-N report criticised the police for human rights abuses. And a new report, penned...
(17 Mar 1996) Spanish/Nat Crime in El Salvador is a persistent and growing problem. Just this week, President Armando Calderon Sol announced emergency measures to fight the problem. A new and elite police unit is training as a resource for the National Civil Police in all areas of the fight against crime. With over 8,000 murders reported in the Central American country last year, as well as robberies, and kidnappings, the police can use all the help they can get. APTV followed Salvador's GRP - Police Reaction Group- as it went through its paces. Salvador's GRP - Police Reaction Group began in November of 1994. Its members voluntarily undergo physical, tactical, and psychological tests. The final goal: to prevent and combat crime of any kind, while respecting life.. ...
The national civil police of El Salvador rescued a newborn from a septic tank. #Elsalvador #nayibbukele #bukele #sv #news
El Salvador national police say they have arrested more than 2,000 people in just four days since the country declared a state of emergency because of a spike in gang-related violence. Human rights groups are concerned President Bukele's crackdown is giving way to human rights violations. » Subscribe to NBC News: http://nbcnews.to/SubscribeToNBC » Watch more NBC video: http://bit.ly/MoreNBCNews NBC News Digital is a collection of innovative and powerful news brands that deliver compelling, diverse and engaging news stories. NBC News Digital features NBCNews.com, MSNBC.com, TODAY.com, Nightly News, Meet the Press, Dateline, and the existing apps and digital extensions of these respective properties. We deliver the best in breaking news, live video coverage, original journalism and segme...
(15 Jun 1995) Spanish/Nat The Salvadoran government said Thursday it had struck a deadly blow to organised crime after the National Civil Police (P-N-C) confiscated an arms arsenal allegedly belonging to one of the most dreaded criminal gangs operating in the country. The operation took place in three different houses in a suburb north of the capital, San Salvador. The government says organised crime in El Salvador has suffered a deadly blow. The National Civil Police (P-N-C) confiscated an arms arsenal allegedly belonging to the "Benedicto" gang- one of El Salvador's most dreadful criminal organisations. The police operation took place in three different houses in a suburb north of San Salvador. Police found a full arsenal of weapons including rockets, M-16 rifles and gr...
This is an audio version of the Wikipedia Article: National Civil Police of El Salvador 00:00:06 1 History 00:03:01 2 Hierarchical organization and responsibilities 00:04:54 2.1 Weapons 00:05:02 3 Historical secret police organizations 00:05:24 4 The National Academy of Public Security (ANSP) 00:06:10 5 Combatting gang violence 00:10:03 6 Controversy and corruption 00:12:49 7 See also Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understanding - improves your listening skills - improves your own spoken accent - learn while on the move - reduce eye strain Now learn the vast amount of gene...
This video explores the basics of Salvadoran history and politics to explain why the country has had such a tumultuous and tragic history and why even now it remains resilient and hopeful. It goes from the arrival of the Spanish to Nayib Bukele and looks at the coffee republic, la matanza and the 1980s civil war.
Coordinates: 13°50′N 88°55′W / 13.833°N 88.917°W / 13.833; -88.917
El Salvador (i/ɛl ˈsælvədɔːr/; Spanish: [el salβaˈðor]), officially the Republic of El Salvador (Spanish: República de El Salvador, literally "Republic of The Savior"), is the smallest and the most densely populated country in Central America. El Salvador's capital and largest city is San Salvador. As of 2015, El Salvador had a population of approximately 6.38 million, making it the most densely populated country in the region. Its population consists largely of Mestizos of European and Indigenous American descent.
El Salvador was for centuries inhabited by several Mesoamerican nations, especially the Cuzcatlecs, as well as the Lenca and Maya. In the early 16th century, the Spanish Empire conquered the territory, incorporating it into the Viceroyalty of New Spain. In 1821, the country achieved independence from Spain as part of the First Mexican Empire, only to further secede as part of the Federal Republic of Central America in 1823. Upon the republic's dissolution in 1841, El Salvador became sovereign until forming a short-lived union with Honduras and Nicaragua called the Greater Republic of Central America, which lasted from 1895 to 1898.
A girl cries in the early morning
Woken by the sound of a gun
She knows somewhere somebody's dying
Beneath the rising sun
Outside the window of her cabaña
The shadows are full of her fears
She knows her lover is out there somewhere
He's been on the run for a year
Oh, the soul of El Salvador
Bells ring out in the chapel steeple
A priest prepares to say mass
The sad congregation come tired and hungry
To pray that trouble will pass
Meanwhile the sun rises over the dusty streets
Where his crowd gathers round.
Flies and mosquitoes are drinking from pools of blood
Where the boby is found
Oh, the soul of El Salvador
Out on the ranch the rich man's preparing
To go for his morning ride
They've saddled his horse out in the corral
He walks out full of pride
He looks like a cowboy from one of those pictures
A president made in the past
Peasants in rags, the stand back for they know
That El Rico travels fast
Over the soul of El Salvador
A girl cries in the early morning
Woken by the sound of a gun
She knows somewhere somebody's dying
Beneath the rising sun
Outside the window of her cabaña
The shadows are full of her fears
She knows her lover is out there somewhere
He's been on the run for a year
Oh, the soul of El Salvador
Oh, the soul of El Salvador