امتحان مادة التاريخ للصف الثامن نهاية الفصل الأول 2015-2016

إنضم
10 يناير 2011
المشاركات
513
مستوى التفاعل
0
النقاط
0
العمر
37
بوووووركم يا رب
 
إنضم
10 فبراير 2012
المشاركات
64
مستوى التفاعل
0
النقاط
6
العمر
35
شكرا جزيلا لكم مع كل امنياتي لكم بالتوفيق:e106:
 
إنضم
21 مايو 2011
المشاركات
185
مستوى التفاعل
0
النقاط
0
العمر
37
مشكوررررررررررررررررررررررررررررررررررررررررررررررررر
 
إنضم
4 يونيو 2012
المشاركات
141
مستوى التفاعل
0
النقاط
0
العمر
50
thanks for the exam:e417::e417:
:e418::e418:
 
إنضم
20 ديسمبر 2014
المشاركات
118
مستوى التفاعل
0
النقاط
0
العمر
51
الله يعطيكم العافية على جهودكم​
:e414:
 
إنضم
4 يونيو 2012
المشاركات
141
مستوى التفاعل
0
النقاط
0
العمر
50
الله يعطيكم العافية:e057::e057::e057:
 
إنضم
5 أكتوبر 2015
المشاركات
80
مستوى التفاعل
0
النقاط
0
شكرا لكم على كل مجهودكم
 
إنضم
9 سبتمبر 2011
المشاركات
184
مستوى التفاعل
0
النقاط
0
مشكوووووووووووووووووور
 
إنضم
9 سبتمبر 2015
المشاركات
43
مستوى التفاعل
0
النقاط
0
العمر
46
شكراااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااا
 
إنضم
30 ديسمبر 2015
المشاركات
13
مستوى التفاعل
0
النقاط
0
العمر
24
بارك الله فيك وجزاك الله خير الجزاء​
 
إنضم
26 مايو 2013
المشاركات
80
مستوى التفاعل
0
النقاط
0
العمر
50
شكرا جزيلا
 
إنضم
6 أكتوبر 2015
المشاركات
34
مستوى التفاعل
0
النقاط
0
العمر
71
شكرا لكم على حسن اهتمامكم
 
إنضم
8 فبراير 2010
المشاركات
17
مستوى التفاعل
0
النقاط
0
العمر
48
رائئئئئئئئئئئئئئئئئئئئئئئئئئئئئئئئئئئئئع
 
إنضم
28 نوفمبر 2018
المشاركات
14
مستوى التفاعل
0
النقاط
0
السلط

شـكــ وبارك الله فيك ـــرا لك ... لك مني أجمل تحية .
 
const config = { siteUrl: 'https://www.jnob-jo.com', whitelist: [ 'youtube.com', 'youtu.be', 'facebook.com', 'twitter.com', 'iinkor.com', 'forum.iinkor.com', 'instagram.com', 'up.jnob-jo.com', 'drive.google.com', 'docs.google.com', 'apps.moe.gov.jo', 'nccd.gov.jo''instagram.com' ] }; function isWhitelisted(url) { return config.whitelist.some(domain => url.includes(domain)); } function isExternalLink(url) { try { const urlObj = new URL(url); const siteUrlObj = new URL(config.siteUrl); return urlObj.hostname !== siteUrlObj.hostname; } catch (e) { return false; } } function convertExternalLink(url, replaceWithStars = false) { if (!url) return url; // تجاهل الروابط الداخلية والمستثناة if (!isExternalLink(url) || isWhitelisted(url)) { return url; } if (replaceWithStars) { return '****'; } return config.siteUrl; } function processBBCodeLinks() { const textNodes = document.evaluate( "//text()[contains(., '[URL')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null ); for (let i = 0; i < textNodes.snapshotLength; i++) { const node = textNodes.snapshotItem(i); let text = node.textContent; text = text.replace( /\[URL[^\]]*\](https?:\/\/[^\[]+)\[\/URL\]/g, (match, url) => { const isUrlAlone = text.trim() === match; const newUrl = convertExternalLink(url.trim(), isUrlAlone); return `[URL]${newUrl}[/URL]`; } ); if (text !== node.textContent) { node.textContent = text; } } } function processPlainTextLinks() { const textNodes = document.evaluate( "//text()[contains(., 'http://') or contains(., 'https://')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null ); for (let i = 0; i < textNodes.snapshotLength; i++) { const node = textNodes.snapshotItem(i); let text = node.textContent; text = text.replace( /(https?:\/\/[^\s\[\]<>"']+)/g, (match) => { // تحقق مما إذا كان الرابط وحده في النص const isUrlAlone = text.trim() === match; return convertExternalLink(match, isUrlAlone); } ); if (text !== node.textContent) { node.textContent = text; } } } function processPageLinks() { const links = document.querySelectorAll('.message-body a, .p-body-pageContent a'); links.forEach(link => { const href = link.getAttribute('href'); if (href) { const isUrlAlone = link.textContent.trim() === href; const newHref = convertExternalLink(href, isUrlAlone); if (newHref !== href) { link.setAttribute('href', newHref); if (isUrlAlone) { link.textContent = '****'; } link.classList.add('external-redirect'); } } }); processBBCodeLinks(); processPlainTextLinks(); } document.addEventListener('DOMContentLoaded', processPageLinks); document.addEventListener('XFContentLoaded', processPageLinks); const observer = new MutationObserver((mutations) => { mutations.forEach((mutation) => { if (mutation.addedNodes && mutation.addedNodes.length > 0) { processPageLinks(); } }); }); observer.observe(document.body, { childList: true, subtree: true });