Logo

index : blog

---

  • summary
  • about
  • tree
  • log
  • branches
<< path: root/public/blog.git/html/src/search/response.jai blob: a05b865a615770521c13faf69ea9ad148e7f1c24 [raw] [clear marker]

        
0
1
2/** Error response messages */
3SEARCH_RESPONSE_NO_RESULT :: "No Result";
4SEARCH_RESPONSE_ERROR :: "Unexpected Error. Please blame the developer";
5SEARCH_RESPONSE_VALIDATION_EMPTY :: "You cannot provide an empty query";
6SEARCH_RESPONSE_VALIDATION_TOO_LONG :: #run tprint(
7 "Your input exceeded the maximum of % characters",
8 MAX_QUERY_LENGTH
9);
10
11SEARCH_INTERNAL_ERROR :: #string STR_END
12<!DOCTYPE html>
13<html>
14<head>
15 <meta charset="UTF-8">
16 <meta name="viewport" content="width=device-width, initial-scale=1.0">
17 <meta name="color-scheme" content="dark">
18 <title>ptrace 500</title>
19 <style>body { background-color: #010112; color: #FFF; }</style>
20</head>
21<body>
22 <h1>500 INTERNAL ERROR</h2>
23 <p>Please report to <a href="mailto:dev@ptrace.dev">dev@ptrace.dev</a></p>
24</body>
25</html>
26STR_END;
27
28
Copyright 2026  E766CB298A6D1E64 | Git-Thing heavily inspired by cgit