ADVERTISEMENT

Myanmar's neighbors urge accountability for Rakhine violence

Published Oct 2, 2018 05:51 pm
By Reuters SINGAPORE (Reuters) - Southeast Asian foreign ministers have urged Myanmar to give a full mandate to an inquiry commission to hold accountable those responsible for the violence in Rakhine state, Singapore said on Tuesday. FILE PHOTO: Rohingya refugees are reflected in rain water along an embankment next to paddy fields after fleeing from Myanmar into Palang Khali, near Cox's Bazar, Bangladesh November 2, 2017. REUTERS/Hannah McKay/File Photo/ MANILA BULLETIN FILE PHOTO: Rohingya refugees are reflected in rain water along an embankment next to paddy fields after fleeing from Myanmar into Palang Khali, near Cox's Bazar, Bangladesh November 2, 2017. REUTERS/Hannah McKay/File Photo/ MANILA BULLETIN The ministers, who met informally on the sidelines of the U.N. General Assembly last week, expressed grave concern over the violence, Singapore Foreign Minister Vivian Balakrishnan told parliament, calling it a “man-made humanitarian disaster”. Over the last year, more than 700,000 Rohingya Muslims have fled Buddhist-majority Myanmar to neighboring Bangladesh, according to U.N. agencies, following a military response to attacks on security posts by Rohingya insurgents. A recent U.N. report accused Myanmar’s military of gang rapes and mass killings with “genocidal intent” in Rakhine and called for its commander-in-chief and five generals to be prosecuted under international law. Myanmar has denied most of the allegations in the report, blaming Rohingya “terrorists” for most accounts of atrocities. “We expressed our grave concern with these alleged acts of violence... This is a man-made humanitarian disaster and something which should not be happening in this day and age,” Balakrishnan said, referring to the meeting of the 10-member Association of Southeast Asian Nations, which includes Myanmar. “The foreign ministers urged the Myanmar government that...an independent commission of inquiry...should be given a full mandate to investigate and to hold all those responsible fully accountable.” Singapore chairs ASEAN this year and regional leaders will meet next month in the city-state. Myanmar’s government spokesman, Zaw Htay, did not answer telephone calls on Tuesday. Last month, he said he would no longer speak to the media over the phone but only at a biweekly conference. In July, Myanmar established a commission of inquiry to probe allegations of human rights abuses in Rakhine, which includes two local and two international members from Japan and the Philippines. ASEAN, formed more than half a century ago, has historically struggled with challenges facing the region because it works only by consensus and is reluctant to get involved in any matter deemed to be internal to any of its members. The group’s recent statements on Rakhine have focused on the importance of the repatriation of displaced persons to Myanmar and reconciliation among communities. But amid the international condemnation, it appears to be taking a firmer stance. Balakrishnan said that if left to “fester”, the situation in Rakhine could lead to the spread of terrorism which would threaten “Southeast Asia and beyond”. “They (the Myanmar government) do need to do the right thing...for all the vulnerable, defenseless and innocent victims,” said Balakrishnan. In a recent interview, Malaysia’s Prime Minister Mahathir Mohamad criticized Myanmar’s de facto leader Aung San Suu Kyi over her handling of the Rohingya crisis, saying, “We don’t really support her anymore.”
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.