پرش به محتوا

تست: تفاوت میان نسخه‌ها

از دانشنامه کتاب مقدس
بدون خلاصۀ ویرایش
بدون خلاصۀ ویرایش
خط ۱: خط ۱:
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<html lang="fa" dir="rtl">
<head>
<head>
خط ۲۲۹: خط ۲۳۰:
                     <label for="categorySelect">دسته‌بندی:</label>
                     <label for="categorySelect">دسته‌بندی:</label>
                     <select id="categorySelect">
                     <select id="categorySelect">
                        <option value="all">همه</option>
                         <option value="کتاب">کتاب</option>
                         <option value="کتاب">کتاب</option>
                         <option value="مقاله">مقاله</option>
                         <option value="مقاله">مقاله</option>
خط ۲۳۹: خط ۲۳۹:
                     <div class="custom-select-container">
                     <div class="custom-select-container">
                         <select id="bookSelect" class="custom-select">
                         <select id="bookSelect" class="custom-select">
                             <option value="">-- لطفاً یک مورد انتخاب کنید --</option>
                             <option value="">لطفاً یک مورد انتخاب کنید</option>
                             <!-- کتاب‌ها -->
                             <!-- کتاب‌ها -->
                             <option value="عیسی" data-category="کتاب">عیسی</option>
                             <option value="عیسی" data-category="کتاب">عیسی</option>
                             <option value="انجیل_متی" data-category="کتاب">انجیل متی</option>
                             <option value="انجیل_متی" data-category="کتاب">انجیل متی</option>
                            <option value="مزامیر" data-category="کتاب">مزامیر</option>
                            <option value="پیدایش" data-category="کتاب">پیدایش</option>
                            <option value="خروج" data-category="کتاب">خروج</option>
                            <option value="مکاشفه" data-category="کتاب">مکاشفه</option>
                             <!-- مقالات -->
                             <!-- مقالات -->
                             <option value="مسیح" data-category="مقاله">مسیح</option>
                             <option value="مسیح" data-category="مقاله">مسیح</option>
                             <option value="تثلیث" data-category="مقاله">تثلیث</option>
                             <option value="تثلیث" data-category="مقاله">تثلیث</option>
                            <option value="نجات" data-category="مقاله">نجات</option>
                            <option value="تعمید" data-category="مقاله">تعمید</option>
                            <option value="شام_ربانی" data-category="مقاله">شام ربانی</option>
                            <option value="روح_القدس" data-category="مقاله">روح القدس</option>
                         </select>
                         </select>
                          
                          
خط ۲۷۲: خط ۲۶۴:
             <div id="iframeContainer">
             <div id="iframeContainer">
                 <div class="iframe-placeholder" id="iframePlaceholder">
                 <div class="iframe-placeholder" id="iframePlaceholder">
                     📖 لطفاً یک کتاب یا مقاله از لیست انتخاب کنید
                     لطفاً یک کتاب یا مقاله از لیست انتخاب کنید
                 </div>
                 </div>
                 <iframe id="contentFrame" class="clean-frame" src="about:blank" style="display: none;"></iframe>
                 <iframe id="contentFrame" class="clean-frame" src="about:blank" style="display: none;"></iframe>
خط ۲۷۸: خط ۲۷۰:
             <div class="action-buttons">
             <div class="action-buttons">
                 <a href="https://www.pediabible.com" class="home-link" target="_blank">
                 <a href="https://www.pediabible.com" class="home-link" target="_blank">
                     🏠 مشاهده صفحه اصلی پدیا بایبل
                     مشاهده صفحه اصلی پدیا بایبل
                 </a>
                 </a>
                 <a id="wikiLink" href="#" class="wiki-link" target="_blank" style="display: none;">
                 <a id="wikiLink" href="#" class="wiki-link" target="_blank" style="display: none;">
                     📖 مشاهده صفحه کامل در ویکی
                     مشاهده صفحه کامل در ویکی
                 </a>
                 </a>
             </div>
             </div>
خط ۳۳۵: خط ۳۲۷:
                  
                  
                 const filteredBooks = allBooks.filter(book => {
                 const filteredBooks = allBooks.filter(book => {
                     const matchesCategory = category === 'all' || book.getAttribute('data-category') === category;
                     const bookCategory = book.getAttribute('data-category');
                    const matchesCategory = bookCategory === category;
                     const matchesSearch = !searchTerm || book.text.toLowerCase().includes(searchLower);
                     const matchesSearch = !searchTerm || book.text.toLowerCase().includes(searchLower);
                     return matchesCategory && matchesSearch;
                     return matchesCategory && matchesSearch;
خط ۳۸۱: خط ۳۷۴:
             // فیلتر کردن بر اساس دسته‌بندی
             // فیلتر کردن بر اساس دسته‌بندی
             categorySelect.addEventListener('change', function() {
             categorySelect.addEventListener('change', function() {
                 populateDropdownOptions(dropdownSearch.value);
                 bookSelect.value = '';
                if (bookSelect.value) {
                customSelect.textContent = 'لطفاً یک مورد انتخاب کنید';
                    const selectedBook = allBooks.find(book => book.value === bookSelect.value);
                showBook('', '');
                    if (selectedBook) {
                 populateDropdownOptions();
                        const bookCategory = selectedBook.getAttribute('data-category');
                        if (this.value !== 'all' && bookCategory !== this.value) {
                            bookSelect.value = '';
                            customSelect.textContent = '-- لطفاً یک مورد انتخاب کنید --';
                            showBook('', '');
                        }
                    }
                 }
             });
             });
              
              
خط ۴۰۰: خط ۳۸۵:
                     contentFrame.style.display = 'none';
                     contentFrame.style.display = 'none';
                     iframePlaceholder.style.display = 'flex';
                     iframePlaceholder.style.display = 'flex';
                     iframePlaceholder.textContent = '📖 لطفاً یک کتاب یا مقاله از لیست انتخاب کنید';
                     iframePlaceholder.textContent = 'لطفاً یک کتاب یا مقاله از لیست انتخاب کنید';
                     wikiLink.style.display = 'none';
                     wikiLink.style.display = 'none';
                     return;
                     return;
                 }
                 }
                  
                  
                 // استفاده از action=render برای محتوای تمیز
                 // ساخت آدرس صحیح: https://www.pediabible.com/index.php/نام_صفحه
                 const cleanContentUrl = `https://www.pediabible.com/index.php/${bookValue}?action=render`;
                 const cleanContentUrl = `https://www.pediabible.com/index.php/${bookValue}?action=render`;
                 const wikiPageUrl = `https://www.pediabible.com/index.php/${bookValue}`;
                 const wikiPageUrl = `https://www.pediabible.com/index.php/${bookValue}`;
خط ۴۱۴: خط ۳۹۹:
                 contentFrame.style.display = 'none';
                 contentFrame.style.display = 'none';
                 iframePlaceholder.style.display = 'flex';
                 iframePlaceholder.style.display = 'flex';
                 iframePlaceholder.textContent = '📖 در حال بارگذاری محتوا...';
                 iframePlaceholder.textContent = 'در حال بارگذاری محتوا...';
                  
                  
                 // تنظیم iframe
                 // تنظیم iframe
خط ۴۲۹: خط ۴۱۴:
                 contentFrame.onerror = function() {
                 contentFrame.onerror = function() {
                     iframePlaceholder.style.display = 'flex';
                     iframePlaceholder.style.display = 'flex';
                     iframePlaceholder.textContent = 'خطا در بارگذاری محتوا. لطفاً دوباره تلاش کنید.';
                     iframePlaceholder.textContent = 'خطا در بارگذاری محتوا. لطفاً دوباره تلاش کنید.';
                     contentFrame.style.display = 'none';
                     contentFrame.style.display = 'none';
                     console.error('خطا در بارگذاری iframe');
                     console.error('خطا در بارگذاری iframe');
خط ۴۳۶: خط ۴۲۱:
                 // به‌روزرسانی لینک ویکی
                 // به‌روزرسانی لینک ویکی
                 wikiLink.href = wikiPageUrl;
                 wikiLink.href = wikiPageUrl;
                 wikiLink.textContent = `📖 مشاهده صفحه کامل "${bookText}"`;
                 wikiLink.textContent = `مشاهده صفحه کامل "${bookText}"`;
                 wikiLink.style.display = 'inline-block';
                 wikiLink.style.display = 'inline-block';
             }
             }
خط ۴۴۵: خط ۴۳۰:
             // نمایش اولین مورد به صورت پیش‌فرض
             // نمایش اولین مورد به صورت پیش‌فرض
             setTimeout(() => {
             setTimeout(() => {
                 if (allBooks.length > 0) {
                 const firstBook = allBooks.find(book => book.getAttribute('data-category') === 'کتاب');
                    const firstBook = allBooks[0];
                if (firstBook) {
                     bookSelect.value = firstBook.value;
                     bookSelect.value = firstBook.value;
                     customSelect.textContent = firstBook.text;
                     customSelect.textContent = firstBook.text;

نسخهٔ ‏۱۲ اکتبر ۲۰۲۵، ساعت ۱۹:۰۹

<!DOCTYPE html> کتابخانه پدیا بایبل - مطالعه کتاب‌ها و مقالات مسیحی

کتابخانه پدیا بایبل

در این بخش می‌توانید کتاب‌ها و مقالات مختلف را مطالعه کنید. برای شروع، دسته‌بندی و سپس مورد مورد نظر خود را انتخاب نمایید.
لطفاً یک کتاب یا مقاله از لیست انتخاب کنید