summaryrefslogtreecommitdiffhomepage
path: root/dev
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-08-27 12:41:09 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-08-27 12:41:09 +0200
commitc4f4155f6f5a30641180050a1a5ea8967f6392fa (patch)
treef08c8bff002eecbdceba297e72a8842487a6b686 /dev
parentb4f35dbe44e07b597c3e7bb6d7562757069a7cb4 (diff)
feat: final refactors (SOCL -> OCL)
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev')
-rw-r--r--dev/examples/cgi/cgi.cc4
-rw-r--r--dev/lib/core/includes.hpp2
-rw-r--r--dev/lib/logic/equiv.hpp2
-rw-r--r--dev/lib/tests/gtest.hpp2
-rw-r--r--dev/lib/tests/hpptest.hpp2
-rw-r--r--dev/lib/utility/cgi_writer.hpp2
-rw-r--r--dev/lib/utility/chunk_string.hpp2
7 files changed, 8 insertions, 8 deletions
diff --git a/dev/examples/cgi/cgi.cc b/dev/examples/cgi/cgi.cc
index e594c4b..692f90c 100644
--- a/dev/examples/cgi/cgi.cc
+++ b/dev/examples/cgi/cgi.cc
@@ -11,7 +11,7 @@ static ocl::basic_chunk_string<char> text_sample = R"(
<html>
<head>
<meta charset="UTF-8">
- <title>Error | SOCL</title>
+ <title>Error | OCL</title>
<style>
body {
font-family: monospace;
@@ -59,7 +59,7 @@ static ocl::basic_chunk_string<char> text_sample = R"(
<tr><td colspan="3"><hr></td></tr>
</table>
- <address>SOCL's Common Gateway Server.</address>
+ <address>OCL's Common Gateway Server.</address>
</body>
</html>
)";
diff --git a/dev/lib/core/includes.hpp b/dev/lib/core/includes.hpp
index 9feff2a..f988fc1 100644
--- a/dev/lib/core/includes.hpp
+++ b/dev/lib/core/includes.hpp
@@ -1,6 +1,6 @@
/*
* File: core/includes.hpp
- * Purpose: Core includes for the SOCL library.
+ * Purpose: Core includes for the OCL library.
* Author: Amlal El Mahrouss (amlal@nekernel.org)
* Copyright 2025, Amlal El Mahrouss
*/
diff --git a/dev/lib/logic/equiv.hpp b/dev/lib/logic/equiv.hpp
index c2d12dd..5b022f8 100644
--- a/dev/lib/logic/equiv.hpp
+++ b/dev/lib/logic/equiv.hpp
@@ -7,7 +7,7 @@
#pragma once
-/// @brief SOCL equivalence namespace.
+/// @brief OCL equivalence namespace.
namespace ocl::equiv
{
template <typename T>
diff --git a/dev/lib/tests/gtest.hpp b/dev/lib/tests/gtest.hpp
index 126ce90..deb2ddf 100644
--- a/dev/lib/tests/gtest.hpp
+++ b/dev/lib/tests/gtest.hpp
@@ -1,6 +1,6 @@
/*
* File: tests/gtest.hpp
- * Purpose: Google Test wrapper for the SOCL library.
+ * Purpose: Google Test wrapper for the OCL library.
* Author: Amlal El Mahrouss (amlal@nekernel.org)
* Copyright 2025, Amlal El Mahrouss
*/
diff --git a/dev/lib/tests/hpptest.hpp b/dev/lib/tests/hpptest.hpp
index 085275f..f520339 100644
--- a/dev/lib/tests/hpptest.hpp
+++ b/dev/lib/tests/hpptest.hpp
@@ -1,6 +1,6 @@
/*
* File: tests/hpptest.hpp
- * Purpose: HPP Test wrapper for the SOCL library.
+ * Purpose: HPP Test wrapper for the OCL library.
* Author: Amlal El Mahrouss (amlal@nekernel.org)
* Copyright 2025, Amlal El Mahrouss
*/
diff --git a/dev/lib/utility/cgi_writer.hpp b/dev/lib/utility/cgi_writer.hpp
index 12de9ec..126b299 100644
--- a/dev/lib/utility/cgi_writer.hpp
+++ b/dev/lib/utility/cgi_writer.hpp
@@ -26,7 +26,7 @@ namespace ocl
std::basic_stringstream<char_type> ss_out;
ss_out << std::format("Content-Type: {}\r\n", mime.str());
- ss_out << std::format("Server: {}\r\n", "SOCL-CGI/1.0");
+ ss_out << std::format("Server: {}\r\n", "OCL-CGI/1.0");
ss_out << std::format("Content-Length: {}\r\n\r\n", ss.str().size());
ss_out << ss.str();
diff --git a/dev/lib/utility/chunk_string.hpp b/dev/lib/utility/chunk_string.hpp
index 79a3881..e04166c 100644
--- a/dev/lib/utility/chunk_string.hpp
+++ b/dev/lib/utility/chunk_string.hpp
@@ -1,6 +1,6 @@
/*
* File: core/chunk_string.hpp
- * Purpose: String implementation for the SOCL C++ library.
+ * Purpose: String implementation for the OCL C++ library.
* Author: Amlal El Mahrouss (amlal@nekernel.org)
* Copyright 2025, Amlal El Mahrouss
*/