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

Khalistan movement

The Khalistan movement is a nationalist political liberation movement, which seeks to create a separate country called Khalistān (Punjabi: ਖਾਲਿਸਤਾਨ, "The Land of the Pure") in the Punjab region of South Asia. The territorial definition of the proposed country ranges from the Punjab state of India to the greater Punjab region, including the neighbouring Indian states.

The Punjab region has been the traditional homeland for the Sikhs. Before its conquest by the British it had been ruled by the Sikhs for 82 years; the Sikh Misls ruled over the entire Punjab from 1767 to 1799, till their confederacy was unified into the Sikh Empire by Maharajah Ranjit Singh. However, the region also has a substantial number of Hindus and Muslims, and before 1947, the Sikhs formed the largest religious group only in the Ludhiana district of the British province. When the Muslim League demanded a separate country for Muslims via the Lahore Resolution of 1940, a section of Sikh leaders grew concerned that their community would be left without any homeland following the partition of India between the Hindus and the Muslims. They put forward the idea of Khalistan, envisaging it as a theocratic state covering a small part of the greater Punjab region.

Podcasts:

  • Gravitas Plus: What is the Khalistan movement?

    Gravitas Plus: The Khalistan movement is now history, but globally the Khalistan bogey has reemerged. How did a protest in India become a debate about Khalistan? What is the role of “foreign forces?” Palki Sharma explores how history is being used to hijack the present. #GravitasPlus #Khalistan #PalkiSharmaLive About Channel: WION -The World is One News, examines global issues with in-depth analysis. We provide much more than the news of the day. Our aim to empower people to explore their world. With our Global headquarters in New Delhi, we bring you news on the hour, by the hour. We deliver information that is not biased. We are journalists who are neutral to the core and non-partisan when it comes to the politics of the world. People are tired of biased reportage and we stand for a g...

    published: 13 Feb 2021
  • Canada is highly radicalised, India should not take this threat lightly, says author Kushal Mehra

    As a 68-year-old man allegedly associated with Babar Khalsa attacked SAD Chief Sukhvinder Singh Badal, author Kushal Mehra tells ThePrint’s Ananya Bhardwaj that Canada is highly radicalised and the effects of growing threat of Sikh separatism there are now being seen on the ground in Punjab.The gradual takeover of Canadian Gurdwaras by Khalistani elements has created an active base for funding and radicalism, he says.

    published: 07 Dec 2024
  • A brief history of Khalistan movement #upsc #shorts

    For further UPSC Foundation Course 2024 - 25 queries, fill this form. https://forms.gle/RFheB3MUuWYu1N9ZA To Join the course for UPSC 2024 - https://study.pwonlyias.com/batches For Guidance or any course-related query, kindly talk to one of our team members on 9920613613 To Watch our Demo Lecture on CTR model, Click on the link given below: 1. Economy - https://rb.gy/qzfvws 2. History - https://rb.gy/0dgcvv 3. Geography - https://rb.gy/g6hzwo 4. Art and Culture - https://rb.gy/4ubxon #upsc2024 #upsc #civil_service_examination #Khalistani #Khalistan #Khalistanis #prokhalistan #khalistaniseparatists #secessionists #separatists #gandhistatue #statuedefaced #vandalism #violence

    published: 29 Mar 2023
  • Canada: Khalistan Supporters Protest Outside Indian Consulate In Toronto

    Pro-Khalistan supporters protested in front of the Indian consulate in Canada's Toronto on July 8. #Khalistani #Khalistan #Canada #US #Indianconsulates #toronto

    published: 09 Jul 2023
  • Khalistani Attempts to Kill Punjab Leader Badal at Golden Temple | Vantage with Palki Sharma

    Khalistani Attempts to Kill Punjab Leader Badal at Golden Temple | Vantage with Palki Sharma A Khalistani terror accused attempted to shoot and kill former Punjab deputy chief minister Sukhbir Singh Badal at the Golden Temple. Badal was saved by the quick reflexes of his security detail and the gunman was later arrested by cops. How did such a security breach happen at the Golden Temple? What does it say about the growing menace of the Khalistan movement? Palki Sharma tells you. --- Khalistan | Sukhbir Singh Badal | Golden Temple | Shooting | Punjab | India | Firstpost | World News | News Live | Vantage | Palki Sharma | News #khalistan #sukhbirbadal #goldentemple #shooting #punjab #india #firstpost #vantageonfirstpost #palkisharma #worldnews Vantage is a ground-breaking news, opinion...

    published: 04 Dec 2024
  • A deeper look at the Khalistan movement

    Some Sikhs have historically been seeking an independent Sikh homeland in northern India called Khalistan. Academic experts say the history of the movement is complex, emotional and evolving. Connect with CBC Vancouver online: Website: https://www.cbc.ca/bc TikTok: https://www.tiktok.com/@cbcvancouver Instagram: https://www.instagram.com/cbcvancouver Facebook: https://www.facebook.com/CBCVancouver Twitter: https://twitter.com/cbcnewsbc #CBCVancouver #CBCNews #BritishColumbia #khalistan #india #sikh #sikhism #punjabi #punjab #history #airindia #nijjar

    published: 09 Sep 2023
  • Daniel Bordman confronts Khalistani Extremists outside Hindu Temple #khalistan #canada

    Listen to the podcasts on: SoundCloud: https://soundcloud.com/kushal-mehra-99891819 Spotify: https://open.spotify.com/show/1rVcDV3upgVurMVW1wwoBp Apple Podcasts: https://podcasts.apple.com/us/podcast/the-c%C4%81rv%C4%81ka-podcast/id1445348369 Stitcher: https://www.stitcher.com/show/the-carvaka-podcast ------------------------------------------------------------ Support The Cārvāka Podcast: Become a Member on YouTube: https://www.youtube.com/channel/UCKPxuul6zSLAfKSsm123Vww/join Become a Member on Patreon: https://www.patreon.com/carvaka Become a Member on fanmo: https://fanmo.in/the_carvaka_podcast UPI: kushalmehra@icici To buy The Carvaka Podcast Exclusive Merch please visit: http://kushalmehra.com/shop ------------------------------------------------------------ Follow Kushal: Twitter: ...

    published: 03 Dec 2024
  • The Khalistan Movement & Why Its Seeing A Revival In Canada | Akash Banerjee & Adwaith

    It's an issue that evokes strong passions - yet Khalistan was a topic that was almost relegated to the history books ... but over the last few years the demand for Khalistan has gained traction - especially in the diaspora. Why is the pull for Khalistan so strong in many? Can India be subjected to the same level of violence that we saw in the 1980's? How has this movement spread to Canada and where does the Govt of India go from here? In special Deshbhakt Deep-dive tracks the history - the spread - near death and the resurrection of this movement in a foreign land.... 🇮🇳 SUBSCRIBE FOR MORE VIDEOS 🇮🇳 - https://www.youtube.com/thedeshbhakt ▶️ ⛔️ BECOME AN ANNUAL DESHBHAKT MEMBER - https://www.patreon.com/thedeshbhakt ⛔️ Unlock MEMBER ONLY: 1) Chats 2) Discord Server 3) Special Epis...

    published: 04 Nov 2024
  • Why India Fears Khalistan | The Sikh Independence Movement

    Get Nebula using my link for 40% off an annual subscription: https://go.nebula.tv/cogito Watch Modern Conflicts exclusively on Nebula: https://nebula.tv/modernconflicts?ref=cogito DURING DECEMBER: Get a lifetime membership to Nebula for only $300: https://go.nebula.tv/lifetime?ref=cogito Few threats have devastated India like the Khalistan insurgency of the 1980s and 1990s. A dark chapter that left tens of thousands dead, unleashed tanks on one of Earth's holiest places, orchestrated the most chilling terror attack in Canadian history, and silenced India's most formidable Prime Minister this movement appeared extinguished by the mid-90s, only to rise again from the ashes fueled by unresolved tensions and leap into headlines in 2023. So what is Khalistan? Why has it resurfaced? And can fe...

    published: 20 Dec 2023
  • After Pannun’s China Threat, Pro-Khalistan Group’s Lawyer Warns Of India Split In Canada Parliament

    In a shocking turn of events, Prabjot Singh, legal counsel for the Sikh Coalition, has made headlines with alarming statements in the Canadian Parliament, echoing sentiments of Khalistani movement. Singh's remarks have raised serious questions about the Trudeau government's handling of foreign interference, particularly in relation to India. He accused the government of prioritising trade deals over national security by allegedly shielding Indian foreign interference to maintain diplomatic ties. Watch the video for details. INTERNATIONAL NEWS #KhalistaniMovement #IndianCanadaRow #JustinTrudeau #NarendraModi #CanadianGovernment #CanadianParliamentHearing #PrabjotSingh #SikhCoalition #CanadianParliament #TrudeauGovernment #IndiaCanadaRelations #NationalSecurity #Geopolitics #SikhRights #C...

    published: 30 Nov 2024
Gravitas Plus: What is the Khalistan movement?
9:58

Gravitas Plus: What is the Khalistan movement?

  • Order:
  • Duration: 9:58
  • Uploaded Date: 13 Feb 2021
  • views: 2652266
Gravitas Plus: The Khalistan movement is now history, but globally the Khalistan bogey has reemerged. How did a protest in India become a debate about Khalistan? What is the role of “foreign forces?” Palki Sharma explores how history is being used to hijack the present. #GravitasPlus #Khalistan #PalkiSharmaLive About Channel: WION -The World is One News, examines global issues with in-depth analysis. We provide much more than the news of the day. Our aim to empower people to explore their world. With our Global headquarters in New Delhi, we bring you news on the hour, by the hour. We deliver information that is not biased. We are journalists who are neutral to the core and non-partisan when it comes to the politics of the world. People are tired of biased reportage and we stand for a globalised united world. So for us the World is truly One. Please keep discussions on this channel clean and respectful and refrain from using racist or sexist slurs as well as personal insults. Subscribe to our channel at https://goo.gl/JfY3NI Check out our website: http://www.wionews.com Connect with us on our social media handles: Facebook: https://www.facebook.com/WIONews Twitter: https://twitter.com/WIONews Follow us on Google News for latest updates Zee News:- https://bit.ly/2Ac5G60 Zee Bussiness:- https://bit.ly/36vI2xa DNA India:- https://bit.ly/2ZDuLRY WION: https://bit.ly/3gnDb5J Zee News Apps : https://bit.ly/ZeeNewsApps
https://wn.com/Gravitas_Plus_What_Is_The_Khalistan_Movement
Canada is highly radicalised, India should not take this threat lightly, says author Kushal Mehra
44:47

Canada is highly radicalised, India should not take this threat lightly, says author Kushal Mehra

  • Order:
  • Duration: 44:47
  • Uploaded Date: 07 Dec 2024
  • views: 14435
As a 68-year-old man allegedly associated with Babar Khalsa attacked SAD Chief Sukhvinder Singh Badal, author Kushal Mehra tells ThePrint’s Ananya Bhardwaj that Canada is highly radicalised and the effects of growing threat of Sikh separatism there are now being seen on the ground in Punjab.The gradual takeover of Canadian Gurdwaras by Khalistani elements has created an active base for funding and radicalism, he says.
https://wn.com/Canada_Is_Highly_Radicalised,_India_Should_Not_Take_This_Threat_Lightly,_Says_Author_Kushal_Mehra
A brief history of Khalistan movement #upsc #shorts
0:39

A brief history of Khalistan movement #upsc #shorts

  • Order:
  • Duration: 0:39
  • Uploaded Date: 29 Mar 2023
  • views: 1946166
For further UPSC Foundation Course 2024 - 25 queries, fill this form. https://forms.gle/RFheB3MUuWYu1N9ZA To Join the course for UPSC 2024 - https://study.pwonlyias.com/batches For Guidance or any course-related query, kindly talk to one of our team members on 9920613613 To Watch our Demo Lecture on CTR model, Click on the link given below: 1. Economy - https://rb.gy/qzfvws 2. History - https://rb.gy/0dgcvv 3. Geography - https://rb.gy/g6hzwo 4. Art and Culture - https://rb.gy/4ubxon #upsc2024 #upsc #civil_service_examination #Khalistani #Khalistan #Khalistanis #prokhalistan #khalistaniseparatists #secessionists #separatists #gandhistatue #statuedefaced #vandalism #violence
https://wn.com/A_Brief_History_Of_Khalistan_Movement_Upsc_Shorts
Canada: Khalistan Supporters Protest Outside Indian Consulate In Toronto
0:53

Canada: Khalistan Supporters Protest Outside Indian Consulate In Toronto

  • Order:
  • Duration: 0:53
  • Uploaded Date: 09 Jul 2023
  • views: 311949
Pro-Khalistan supporters protested in front of the Indian consulate in Canada's Toronto on July 8. #Khalistani #Khalistan #Canada #US #Indianconsulates #toronto
https://wn.com/Canada_Khalistan_Supporters_Protest_Outside_Indian_Consulate_In_Toronto
Khalistani Attempts to Kill Punjab Leader Badal at Golden Temple | Vantage with Palki Sharma
4:36

Khalistani Attempts to Kill Punjab Leader Badal at Golden Temple | Vantage with Palki Sharma

  • Order:
  • Duration: 4:36
  • Uploaded Date: 04 Dec 2024
  • views: 240895
Khalistani Attempts to Kill Punjab Leader Badal at Golden Temple | Vantage with Palki Sharma A Khalistani terror accused attempted to shoot and kill former Punjab deputy chief minister Sukhbir Singh Badal at the Golden Temple. Badal was saved by the quick reflexes of his security detail and the gunman was later arrested by cops. How did such a security breach happen at the Golden Temple? What does it say about the growing menace of the Khalistan movement? Palki Sharma tells you. --- Khalistan | Sukhbir Singh Badal | Golden Temple | Shooting | Punjab | India | Firstpost | World News | News Live | Vantage | Palki Sharma | News #khalistan #sukhbirbadal #goldentemple #shooting #punjab #india #firstpost #vantageonfirstpost #palkisharma #worldnews Vantage is a ground-breaking news, opinions, and current affairs show from Firstpost. Catering to a global audience, Vantage covers the biggest news stories from a 360-degree perspective, giving viewers a chance to assess the impact of world events through a uniquely Indian lens. The show is anchored by Palki Sharma, Managing Editor, Firstpost. By breaking stereotypes, Vantage aims to challenge conventional wisdom and present an alternative view on global affairs, defying the norm and opening the door to new perspectives. The show goes beyond the headlines to uncover the hidden stories – making Vantage a destination for thought-provoking ideas. Vantage airs Monday to Friday at 9 PM IST on Firstpost across all leading platforms. Subscribe to Firstpost channel and press the bell icon to get notified when we go live. https://www.youtube.com/@Firstpost Follow Firstpost on Instagram: https://www.instagram.com/firstpost/ Follow Firstpost on Facebook: https://www.facebook.com/firstpostin/ Follow Firstpost on Twitter: https://twitter.com/firstpost Follow Firstpost on WhatsApp: https://www.whatsapp.com/channel/0029Va6zOIrEQIamseyg762V
https://wn.com/Khalistani_Attempts_To_Kill_Punjab_Leader_Badal_At_Golden_Temple_|_Vantage_With_Palki_Sharma
A deeper look at the Khalistan movement
13:38

A deeper look at the Khalistan movement

  • Order:
  • Duration: 13:38
  • Uploaded Date: 09 Sep 2023
  • views: 223477
Some Sikhs have historically been seeking an independent Sikh homeland in northern India called Khalistan. Academic experts say the history of the movement is complex, emotional and evolving. Connect with CBC Vancouver online: Website: https://www.cbc.ca/bc TikTok: https://www.tiktok.com/@cbcvancouver Instagram: https://www.instagram.com/cbcvancouver Facebook: https://www.facebook.com/CBCVancouver Twitter: https://twitter.com/cbcnewsbc #CBCVancouver #CBCNews #BritishColumbia #khalistan #india #sikh #sikhism #punjabi #punjab #history #airindia #nijjar
https://wn.com/A_Deeper_Look_At_The_Khalistan_Movement
Daniel Bordman confronts Khalistani Extremists outside Hindu Temple #khalistan #canada
1:00

Daniel Bordman confronts Khalistani Extremists outside Hindu Temple #khalistan #canada

  • Order:
  • Duration: 1:00
  • Uploaded Date: 03 Dec 2024
  • views: 25886
Listen to the podcasts on: SoundCloud: https://soundcloud.com/kushal-mehra-99891819 Spotify: https://open.spotify.com/show/1rVcDV3upgVurMVW1wwoBp Apple Podcasts: https://podcasts.apple.com/us/podcast/the-c%C4%81rv%C4%81ka-podcast/id1445348369 Stitcher: https://www.stitcher.com/show/the-carvaka-podcast ------------------------------------------------------------ Support The Cārvāka Podcast: Become a Member on YouTube: https://www.youtube.com/channel/UCKPxuul6zSLAfKSsm123Vww/join Become a Member on Patreon: https://www.patreon.com/carvaka Become a Member on fanmo: https://fanmo.in/the_carvaka_podcast UPI: kushalmehra@icici To buy The Carvaka Podcast Exclusive Merch please visit: http://kushalmehra.com/shop ------------------------------------------------------------ Follow Kushal: Twitter: https://twitter.com/kushal_mehra?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor Facebook: https://www.facebook.com/KushalMehraOfficial/? Instagram: https://www.instagram.com/thecarvakapodcast/?hl=en Koo: https://www.kooapp.com/profile/kushal_mehra Inquiries: https://kushalmehra.com/ Feedback: kushalmehra81@gmail.com
https://wn.com/Daniel_Bordman_Confronts_Khalistani_Extremists_Outside_Hindu_Temple_Khalistan_Canada
The Khalistan Movement & Why Its Seeing A Revival In Canada | Akash Banerjee & Adwaith
25:40

The Khalistan Movement & Why Its Seeing A Revival In Canada | Akash Banerjee & Adwaith

  • Order:
  • Duration: 25:40
  • Uploaded Date: 04 Nov 2024
  • views: 1228410
It's an issue that evokes strong passions - yet Khalistan was a topic that was almost relegated to the history books ... but over the last few years the demand for Khalistan has gained traction - especially in the diaspora. Why is the pull for Khalistan so strong in many? Can India be subjected to the same level of violence that we saw in the 1980's? How has this movement spread to Canada and where does the Govt of India go from here? In special Deshbhakt Deep-dive tracks the history - the spread - near death and the resurrection of this movement in a foreign land.... 🇮🇳 SUBSCRIBE FOR MORE VIDEOS 🇮🇳 - https://www.youtube.com/thedeshbhakt ▶️ ⛔️ BECOME AN ANNUAL DESHBHAKT MEMBER - https://www.patreon.com/thedeshbhakt ⛔️ Unlock MEMBER ONLY: 1) Chats 2) Discord Server 3) Special Episodes OR Join this channel on You Tube to get access to perks: https://www.youtube.com/channel/UCmTM_hPCeckqN3cPWtYZZcg/join 👕 DESHBHAKT MERCH - India's First Line of Socially & Politically aware tees 👕 https://kadakmerch.com/collections/thedeshbhakt 📧 BUSINESS ENQUIRIES - contact (at) thedeshbhakt (dot) in 📧 *** SUBSCRIBE / FOLLOW US *** YouTube: - https://youtube.com/thedeshbhakt Twitter :- https://twitter.com/thedeshbhakt Instagram :- https://instagram.com/akashbanerjee.in Facebook :- https://www.facebook.com/akashbanerjee.in Credits : Writer: Adwaith Thumbnail : Ritam Editor : Ritam, Mehul Producer : Akshit #khalistan #khalistanincanada #indiacanada
https://wn.com/The_Khalistan_Movement_Why_Its_Seeing_A_Revival_In_Canada_|_Akash_Banerjee_Adwaith
Why India Fears Khalistan | The Sikh Independence Movement
1:03:24

Why India Fears Khalistan | The Sikh Independence Movement

  • Order:
  • Duration: 1:03:24
  • Uploaded Date: 20 Dec 2023
  • views: 684351
Get Nebula using my link for 40% off an annual subscription: https://go.nebula.tv/cogito Watch Modern Conflicts exclusively on Nebula: https://nebula.tv/modernconflicts?ref=cogito DURING DECEMBER: Get a lifetime membership to Nebula for only $300: https://go.nebula.tv/lifetime?ref=cogito Few threats have devastated India like the Khalistan insurgency of the 1980s and 1990s. A dark chapter that left tens of thousands dead, unleashed tanks on one of Earth's holiest places, orchestrated the most chilling terror attack in Canadian history, and silenced India's most formidable Prime Minister this movement appeared extinguished by the mid-90s, only to rise again from the ashes fueled by unresolved tensions and leap into headlines in 2023. So what is Khalistan? Why has it resurfaced? And can fertiliser be blamed for it all? Well, let’s find out! The illustrations were created by our illustrator https://twitter.com/ChicoDLHistoria https://www.patreon.com/CogitoEdu Follow me on twitter https://twitter.com/CogitoEdu Or Reddit r/cogitoedu Or Facebook @CogitoYT MERCHANDISE teespring.com/stores/cogito-store SOURCES: Anandpur Sahib Resolution J. S. Grewal - The Sikhs of the Punjab TERRORISM IN PUNJAB Understanding Grassroots Reality Deol, S. S. Militancy and Counter-Militancy Operations: Changing Patterns and Dynamics of Violence in Punjab, 1978 to 1993. Singh, K. Sikh Ethnonationalism and Its Contested Articulation During Militancy in Punjab. Sekhon, J. S., & Singh, N. Rise, Dynamics, and Decline of Violence in Punjab: A Critical Reassessment of Existing Explanations. Singh, G. Sikh Nationalism From a Dominant Minority to an Ethno-Religious Diaspora. Bakke, K. M. Decentralization and Intrastate Struggles: Chechnya, Punjab, and Québec. Tatla, D. S. The Sikh Diaspora: The Search for Statehood. Wolpert, S. SHAMEFUL FLIGHT: The Last Years of the British Empire in India. Axel, B. K. Beyond the Land of Five Rivers: Social Inequality and Class Consciousness in the Canadian Sikh Diaspora. Juergensmeyer, M. When God Stops Fighting: How Religious Violence Ends. Jetly, R. THE KHALISTAN MOVEMENT IN INDIA: The Interplay of Politics and State Power. Shani, G. Sikh Nationalism and Identity in a Global Age. Sidhu, G. B. S. The Khalistan Conspiracy. Chima, J. S. The Shiromani Akali Dal and Emerging Ideological Cleavages in Contemporary Sikh Politics in Punjab: Integrative Regionalism versus Exclusivist Ethnonationalism. Hultquist, P. Countering Khalistan: Understanding India’s Counter-Rebellion Strategies during the Punjab Crisis. Webb, M. J. Khalistan & Kashmir: A Tale of Two Conflicts. Music by Epidemic Sound: https://epidemicsound.com/creator Video/Images provided by Getty Images and Archive.org Maps provided by maptiler/Geolayers
https://wn.com/Why_India_Fears_Khalistan_|_The_Sikh_Independence_Movement
After Pannun’s China Threat, Pro-Khalistan Group’s Lawyer Warns Of India Split In Canada Parliament
4:25

After Pannun’s China Threat, Pro-Khalistan Group’s Lawyer Warns Of India Split In Canada Parliament

  • Order:
  • Duration: 4:25
  • Uploaded Date: 30 Nov 2024
  • views: 23637
In a shocking turn of events, Prabjot Singh, legal counsel for the Sikh Coalition, has made headlines with alarming statements in the Canadian Parliament, echoing sentiments of Khalistani movement. Singh's remarks have raised serious questions about the Trudeau government's handling of foreign interference, particularly in relation to India. He accused the government of prioritising trade deals over national security by allegedly shielding Indian foreign interference to maintain diplomatic ties. Watch the video for details. INTERNATIONAL NEWS #KhalistaniMovement #IndianCanadaRow #JustinTrudeau #NarendraModi #CanadianGovernment #CanadianParliamentHearing #PrabjotSingh #SikhCoalition #CanadianParliament #TrudeauGovernment #IndiaCanadaRelations #NationalSecurity #Geopolitics #SikhRights #Canada #India #DiplomaticTies #GurpatwantSinghPannun #SFJ #SikhForJustice Hindustan Times Videos brings all the News for the Global Indian under one umbrella. We break down news from across the globe from the unique lens of a Rising India. Tune in for Explainers, Opinions, Analysis and a 360 degree view of big events in India and the World which impact your present and future. Follow the Hindustan Times Channel on WhatsApp for News Alerts, Top Stories and Editor picks. Join Us Today - https://www.bit.ly/3PQ4kSv Subscribe to the Hindustan Times YT channel and press the bell icon to get notified when we go live. Visit our website https://www.hindustantimes.com/ Follow us on Twitter https://twitter.com/htTweets Follow us on Facebook https://www.facebook.com/hindustantimes
https://wn.com/After_Pannun’S_China_Threat,_Pro_Khalistan_Group’S_Lawyer_Warns_Of_India_Split_In_Canada_Parliament
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Gravitas Plus: What is the Khalistan movement?
    9:58
    Gravitas Plus: What is the Khalistan movement?remove from playlist
  • Canada is highly radicalised, India should not take this threat lightly, says author Kushal Mehra
    44:47
    Canada is highly radicalised, India should not take this threat lightly, says author Kushal Mehraremove from playlist
  • A brief history of Khalistan movement #upsc #shorts
    0:39
    A brief history of Khalistan movement #upsc #shortsremove from playlist
  • Canada: Khalistan Supporters Protest Outside Indian Consulate In Toronto
    0:53
    Canada: Khalistan Supporters Protest Outside Indian Consulate In Torontoremove from playlist
  • Khalistani Attempts to Kill Punjab Leader Badal at Golden Temple | Vantage with Palki Sharma
    4:36
    Khalistani Attempts to Kill Punjab Leader Badal at Golden Temple | Vantage with Palki Sharmaremove from playlist
  • A deeper look at the Khalistan movement
    13:38
    A deeper look at the Khalistan movementremove from playlist
  • Daniel Bordman confronts Khalistani Extremists outside Hindu Temple #khalistan #canada
    1:00
    Daniel Bordman confronts Khalistani Extremists outside Hindu Temple #khalistan #canadaremove from playlist
  • The Khalistan Movement & Why Its Seeing A Revival In Canada | Akash Banerjee & Adwaith
    25:40
    The Khalistan Movement & Why Its Seeing A Revival In Canada | Akash Banerjee & Adwaithremove from playlist
  • Why India Fears Khalistan | The Sikh Independence Movement
    1:03:24
    Why India Fears Khalistan | The Sikh Independence Movementremove from playlist
  • After Pannun’s China Threat, Pro-Khalistan Group’s Lawyer Warns Of India Split In Canada Parliament
    4:25
    After Pannun’s China Threat, Pro-Khalistan Group’s Lawyer Warns Of India Split In Canada Parliamentremove from playlist
PLAYLIST TIME: 0:00 / 2:49:00

Gravitas Plus: What is the Khalistan movement?

Gravitas Plus: The Khalistan movement is now history, but globally the Khalistan bogey has reemerged. How did a protest in India become a debate about Khalistan? What is the role of “foreign forces?” Palki Sharma explores how history is being used to hijack the present. #GravitasPlus #Khalistan #PalkiSharmaLive About Channel: WION -The World is One News, examines global issues with in-depth analysis. We provide much more than the news of the day. Our aim to empower people to explore their world. With our Global headquarters in New Delhi, we bring you news on the hour, by the hour. We deliver information that is not biased. We are journalists who are neutral to the core and non-partisan when it comes to the politics of the world. People are tired of biased reportage and we stand for a globalised united world. So for us the World is truly One. Please keep discussions on this channel clean and respectful and refrain from using racist or sexist slurs as well as personal insults. Subscribe to our channel at https://goo.gl/JfY3NI Check out our website: http://www.wionews.com Connect with us on our social media handles: Facebook: https://www.facebook.com/WIONews Twitter: https://twitter.com/WIONews Follow us on Google News for latest updates Zee News:- https://bit.ly/2Ac5G60 Zee Bussiness:- https://bit.ly/36vI2xa DNA India:- https://bit.ly/2ZDuLRY WION: https://bit.ly/3gnDb5J Zee News Apps : https://bit.ly/ZeeNewsApps
9:58
Gravitas Plus: What is the Khalistan movement?
Gravitas Plus: The Khalistan movement is now history, but globally the Khalistan bogey has...
published: 13 Feb 2021
Play in Full Screen
44:47
Canada is highly radicalised, India should not take this threat lightly, says author Kushal Mehra
As a 68-year-old man allegedly associated with Babar Khalsa attacked SAD Chief Sukhvinder ...
published: 07 Dec 2024
Play in Full Screen
0:39
A brief history of Khalistan movement #upsc #shorts
For further UPSC Foundation Course 2024 - 25 queries, fill this form. https://forms.gle/RF...
published: 29 Mar 2023
Play in Full Screen
0:53
Canada: Khalistan Supporters Protest Outside Indian Consulate In Toronto
Pro-Khalistan supporters protested in front of the Indian consulate in Canada's Toronto on...
published: 09 Jul 2023
Play in Full Screen
4:36
Khalistani Attempts to Kill Punjab Leader Badal at Golden Temple | Vantage with Palki Sharma
Khalistani Attempts to Kill Punjab Leader Badal at Golden Temple | Vantage with Palki Shar...
published: 04 Dec 2024
Play in Full Screen
13:38
A deeper look at the Khalistan movement
Some Sikhs have historically been seeking an independent Sikh homeland in northern India c...
published: 09 Sep 2023
Play in Full Screen
1:00
Daniel Bordman confronts Khalistani Extremists outside Hindu Temple #khalistan #canada
Listen to the podcasts on: SoundCloud: https://soundcloud.com/kushal-mehra-99891819 Spotif...
published: 03 Dec 2024
Play in Full Screen
25:40
The Khalistan Movement & Why Its Seeing A Revival In Canada | Akash Banerjee & Adwaith
It's an issue that evokes strong passions - yet Khalistan was a topic that was almost rele...
published: 04 Nov 2024
Play in Full Screen
1:03:24
Why India Fears Khalistan | The Sikh Independence Movement
Get Nebula using my link for 40% off an annual subscription: https://go.nebula.tv/cogito W...
published: 20 Dec 2023
Play in Full Screen
4:25
After Pannun’s China Threat, Pro-Khalistan Group’s Lawyer Warns Of India Split In Canada Parliament
In a shocking turn of events, Prabjot Singh, legal counsel for the Sikh Coalition, has mad...
published: 30 Nov 2024
Play in Full Screen

Khalistan movement

The Khalistan movement is a nationalist political liberation movement, which seeks to create a separate country called Khalistān (Punjabi: ਖਾਲਿਸਤਾਨ, "The Land of the Pure") in the Punjab region of South Asia. The territorial definition of the proposed country ranges from the Punjab state of India to the greater Punjab region, including the neighbouring Indian states.

The Punjab region has been the traditional homeland for the Sikhs. Before its conquest by the British it had been ruled by the Sikhs for 82 years; the Sikh Misls ruled over the entire Punjab from 1767 to 1799, till their confederacy was unified into the Sikh Empire by Maharajah Ranjit Singh. However, the region also has a substantial number of Hindus and Muslims, and before 1947, the Sikhs formed the largest religious group only in the Ludhiana district of the British province. When the Muslim League demanded a separate country for Muslims via the Lahore Resolution of 1940, a section of Sikh leaders grew concerned that their community would be left without any homeland following the partition of India between the Hindus and the Muslims. They put forward the idea of Khalistan, envisaging it as a theocratic state covering a small part of the greater Punjab region.

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

Latest News for: khalistan

Edit

Leave Canada: Outrage over threat from pro-Khalistan elements

Hindustan Times 06 May 2025
The Khalsa Day parade featured floats with pro-Khalistan propaganda, pro-Pakistan banners and imagery targeting Indian leaders ... That reference was to the killing of the pro-Khalistan figure in Surrey, British Columbia on June 18, 2023.
Edit

Pro-Khalistan Mob Holds Anti-Hindu Rally In Canada, Demands Deportation Of Hindus

India Today 05 May 2025
Pro-Khalistan Mob Holds Anti-Hindu Rally In Canada, Demands Deportation Of Hindus ... .
Edit

Khalistan backers hold anti-Hindu parade in Toronto with PM Modi, Amit Shah effigies; India conveys concerns

Live Mint 05 May 2025
The parade comes on the back of incidents of vandalism at a Hindu temple. The walls of the temple building were reportedly defaced with pro-Khalistan graffiti ....
Edit

‘Leave Canada’: Indo-Canadians outraged over threat from pro-Khalistan supporter

Hindustan Times 05 May 2025
Pro-Khalistan supporters protest in Toronto, Canada ... The speech was made in the backdrop of floats featuring pro-Khalistan propaganda, including pro-Pakistan and anti-India banners ... Indo-Canadians outraged over threat from pro-Khalistan supporter.
Edit

Opinion | Jagmeet Singh’s Defeat In Canada Crushes Khalistan’s Voice: India’s Diplomatic Triumph

News18 04 May 2025
His electoral rout, coupled with the Liberal Party’s majority win under Prime Minister Mark Carney, offers India a strategic opportunity to recalibrate its relationship with Canada ... .
Edit

Indian diaspora in London counters pro-Khalistan, Pakistan protest outside high commission

The Times of India 01 May 2025
Innocent people are being killed. I don't know why Khalistani people are supporting them ... .
Edit

How Canadian voters defeated Khalistan backer Jagmeet Singh

The Times of India 30 Apr 2025
In what can be viewed as a major victory for India, Canadian voters have handed a crushing defeat to the pro-Khalistan New Democratic Party (NDP) and its chief Jagmeet Singh in parliamentary ...
Edit

Video: Pro-Khalistan Jagmeet Singh Breaks Down After Crushing Canada Defeat

NDTV 29 Apr 2025
Jagmeet Singh, leader of Canada's New Democratic Party (NDP) and a known pro-Khalistan figure in Canadian politics, conceded the loss of his seat in Burnaby Central and announced he will step down... .
×