From f3f2b95f9133b929bce3c7eb7cefba700383ecd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Ali=20=C3=96zdemir?= Date: Wed, 20 Nov 2024 14:32:52 +0300 Subject: [PATCH 1/2] fixed the cmpe322 english content bug --- content/courses/cmpe322.en.md | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/content/courses/cmpe322.en.md b/content/courses/cmpe322.en.md index e70bc96..ac7aded 100644 --- a/content/courses/cmpe322.en.md +++ b/content/courses/cmpe322.en.md @@ -28,27 +28,6 @@ aliases: {{< /table >}} -## Course Information - - -{{< table class="table-hover table-sm" >}} -||| -| :-- | :-- | -| Faculty | Faculty of Engineering | -| Course Code | CMPE322 | -| Course Title | Operating Systems | -| Language of Instruction | English | -| Course Semester | Fall | -| Course Hours | Lecture: 3, PS:0, Labs: 2 | -| Course Credits | 4 | -| ECTS | 6 | -| Grading Mode | Letter Grade | -| Prerequisites | CMPE250 | -| Corequisites | None | - -{{< /table >}} - - ## Catalog Description Evolution of operating systems. Multiprogramming and time sharing concepts. User and program interfaces. Concurrent processes, CPU scheduling, process synchronization, critical section problem. Deadlock prevention, avoidance, detection and recovery. Memory management, swapping, multiple partitions. Paging, segmentation, virtual memory, page replacement algorithms. File system structures, allocation methods, directory implementation. I/O interfaces, secondary storage structure. Protection and Security: Access matrix and rights, capabilities, security issues. LINUX case studies. From 08236ec1975879139a2460aae22991d4ced7484d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Ali=20=C3=96zdemir?= Date: Thu, 21 Nov 2024 18:45:48 +0300 Subject: [PATCH 2/2] Added edit partial --- i18n/en.yaml | 3 +++ i18n/tr.yaml | 2 ++ layouts/_default/single.html | 3 ++- layouts/partials/edit-page-link.html | 7 +++++++ 4 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 layouts/partials/edit-page-link.html diff --git a/i18n/en.yaml b/i18n/en.yaml index 454f033..c01953e 100644 --- a/i18n/en.yaml +++ b/i18n/en.yaml @@ -144,3 +144,6 @@ building-head: under-construction-warning: other: The information on this page is under construction. + +edit-page-link: + other: Click here to edit this page on GitHub. \ No newline at end of file diff --git a/i18n/tr.yaml b/i18n/tr.yaml index 7463c69..df23685 100644 --- a/i18n/tr.yaml +++ b/i18n/tr.yaml @@ -172,3 +172,5 @@ languageSwitcherLabel: toc: other: İçindekiler +edit-page-link: + other: Bu sayfadaki içeriği düzenlemek için buraya tıklayın. \ No newline at end of file diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 1debeee..e97c03e 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,10 +1,11 @@ {{ define "main" -}} {{- $breakpoint := $.Scratch.Get "breakpoint" -}} {{ $toc := .Render "single/panel-toc" }} - +
+ {{ partial "edit-page-link.html" . }} {{ .Render "single/main" }}
diff --git a/layouts/partials/edit-page-link.html b/layouts/partials/edit-page-link.html new file mode 100644 index 0000000..651e658 --- /dev/null +++ b/layouts/partials/edit-page-link.html @@ -0,0 +1,7 @@ + \ No newline at end of file