[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[arfnet2-search PATCH 00/16] Pre-release deployment
[Thread Prev] | [Thread Next]
- Subject: [arfnet2-search PATCH 00/16] Pre-release deployment
- From: arf20 <arf20@xxxxxxxxx>
- Reply-to: development@xxxxxxxxx
- Date: Tue, 9 Dec 2025 00:00:04 +0100
- To: development@xxxxxxxxx
- Cc: arf20 <aruizfernandez05@xxxxxxxxx>
MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: arf20 <aruizfernandez05@xxxxxxxxx> Here is published the development of the currently running search at dark.arf20.com/search/ This is not a release. This software needs to improve before that in the upcoming weeks. Thank you, arf20 arf20 (16): wrong README title add licence header to source files file indexing, stat, hash map tree insert add index lookup wip querying search actually working :D generating results dont commit binaries sorting and filtering working sort headers bolding and arrow direction periodic reindexing fixes app subdir content-type header baseurl app subdir fixed types of queries .gitignore | 2 + Makefile | 4 +- README.md | 23 ++- config.c | 76 +++++++++- config.h | 25 +++- index.c | 361 +++++++++++++++++++++++++++++++++++++++++++++ index.h | 73 +++++++++ index.htm.tmpl | 122 +++++++++++++-- main.c | 330 +++++++++++++++++++++++++++++++++++++++-- search | Bin 29760 -> 0 bytes search.cfg | 9 -- search.cfg.example | 14 ++ 12 files changed, 989 insertions(+), 50 deletions(-) create mode 100644 .gitignore create mode 100644 index.c create mode 100644 index.h delete mode 100755 search delete mode 100644 search.cfg -- 2.47.3
| [PATCH 01/16] wrong README title | arf20 <arf20@xxxxxxxxx> |
| [PATCH 02/16] add licence header to source files | arf20 <arf20@xxxxxxxxx> |
| [PATCH 03/16] file indexing, stat, hash map tree insert | arf20 <arf20@xxxxxxxxx> |
| [PATCH 04/16] add index lookup | arf20 <arf20@xxxxxxxxx> |
| [PATCH 05/16] wip querying | arf20 <arf20@xxxxxxxxx> |
| [PATCH 06/16] search actually working :D | arf20 <arf20@xxxxxxxxx> |
| [PATCH 07/16] generating results | arf20 <arf20@xxxxxxxxx> |
| [PATCH 08/16] dont commit binaries | arf20 <arf20@xxxxxxxxx> |
| [PATCH 09/16] sorting and filtering working | arf20 <arf20@xxxxxxxxx> |
| [PATCH 10/16] sort headers bolding and arrow direction | arf20 <arf20@xxxxxxxxx> |
| [PATCH 11/16] periodic reindexing | arf20 <arf20@xxxxxxxxx> |
| [PATCH 12/16] fixes | arf20 <arf20@xxxxxxxxx> |
| [PATCH 13/16] app subdir | arf20 <arf20@xxxxxxxxx> |
| [PATCH 14/16] content-type header | arf20 <arf20@xxxxxxxxx> |
| [PATCH 15/16] baseurl app subdir | arf20 <arf20@xxxxxxxxx> |
| [PATCH 16/16] fixed types of queries | arf20 <arf20@xxxxxxxxx> |