aboutsummaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Replace Makefile with configure scriptXavier Del Campo Romero2026-02-131-73/+0
| | | | | | | Since libweb depends on dynstr, this dependency can be already available on the system, and therefore the CFLAGS and LDFLAGS should be updated according to pkg-config(1), rather than hardcoding them to the source tree.
* Implement form interfaceXavier Del Campo Romero2025-10-021-0/+1
| | | | | This new interface allows library users to parse application/x-www-form-urlencoded data conveniently.
* examples: Add distclean targetXavier Del Campo Romero2025-10-021-0/+4
|
* Makefile: Replace -Og with -O1v0.1.0-rc6v0.1.0Xavier Del Campo Romero2023-10-251-1/+1
| | | | | Only the latter is defined by POSIX.1-2008. Even if there are still some non-portable flags defined by CFLAGS, it is a good idea to reduce them.
* Adhere to GNU Make directory variablesXavier Del Campo Romero2023-10-251-16/+24
|
* Makefile: Build libweb also as a shared libraryXavier Del Campo Romero2023-10-251-6/+20
|
* Rename project from slweb to libwebv0.1.0-rc3Xavier Del Campo Romero2023-10-111-5/+5
| | | | | | | | | | | | It was found out there was another project of the same name around (https://git.sr.ht/~strahinja/slweb/), also related to website generation. In order to avoid confusion, a new name has been chosen for this project. Surprisingly, libweb was not in use by any distributions (according to https://repology.org and AUR index), and it should reflect well the intention behind this project i.e., being a library to build web-related stuff.
* Install man pagesv0.1.0-rc1Xavier Del Campo Romero2023-09-271-0/+1
|
* Add slweb.pcXavier Del Campo Romero2023-09-271-1/+7
|
* Makefile, CMakeLists.txt: Add installation targetsXavier Del Campo Romero2023-09-271-0/+10
|
* Add hello world exampleXavier Del Campo Romero2023-08-091-0/+6
|
* Makefile: Adapt to slwebXavier Del Campo Romero2023-07-211-19/+5
| | | | | | This project was forked off slcl, a "suckless" cloud solution, so that its HTTP/1.1 server implementation could be reused by other applications.
* Makefile: Allow users to define LDFLAGSXavier Del Campo Romero2023-07-201-2/+1
| | | | | This should allow for easier packaging if extra linker flags are required.
* Allow admins to define their own stylesheetXavier Del Campo Romero2023-07-201-0/+1
| | | | | | | | | | | | slcl used to provide a hardcoded stylesheet. However, it would be desirable for some admins to provide a custom stylesheet without having to rebuild the application. Now, slcl creates a default stylesheet, namely style.css, into the target directory, that can be later modified by admins. While this might contradict the suckless philosophy a bit, hopefully some admins might find this new feature useful.
* Split wildcard_cmp into its own componentXavier Del Campo Romero2023-07-201-1/+2
| | | | Future commits will make use of this function outside handler.c.
* Makefile: Use dynstr's own MakefileXavier Del Campo Romero2023-07-201-4/+8
| | | | | dynstr has been recently modified so as to allow building also from make(1).
* Makefile: remove .SUFFIXESXavier Del Campo Romero2023-07-201-1/+0
| | | | | According to POSIX.1-2008, .c and .o are already included by the default .SUFFIX rule, among other suffixes.
* Makefile: make -MF write to .d file instead of stdoutXavier Del Campo Romero2023-07-201-4/+1
| | | | | This way, the default rule for .c.o can be used, simplifying the Makefile a bit more.
* Define _POSIX_C_SOURCEXavier Del Campo Romero2023-07-201-1/+0
| | | | | This allows using the default compiler defined by make(1) (i.e., c99(1)), thus improving POSIX compatibility.
* Move decode_hex into its own fileXavier Del Campo Romero2023-07-201-0/+1
| | | | | | | - Error detection against strotul(3) has been improved, as done in other places. - New function encode_hex has been implemented, which will be used by future commits.
* Implement user quotaXavier Del Campo Romero2023-07-201-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This feature allows admins to set a specific quota for each user, in MiB. This feature is particularly useful for shared instances, where unlimited user storage might be unfeasible or even dangerous for the server. Also, a nice HTML5 <progress> element has been added to the site that shows how much of the quota has been consumed. If no quota is set, slcl falls back to the default behaviour i.e., assume unlimited storage. Limitations: - While HTTP does specify a Content-Length, which determines the length of the whole request, it does not specify how many files are involved or their individual sizes. - Because of this, if multiple files are uploaded simultaneously, the whole request would be dropped if user quota is exceeded, even if not all files exceeded it. - Also, Content-Length adds the length of some HTTP boilerplate (e.g.: boundaries), but slcl must rely on this before accepting the whole request. In other words, this means some requests might be rejected by slcl because of the extra bytes caused by such boilerplate. - When the quota is exceeded, slcl must close the connection so that the rest of the transfer is cancelled. Unfortunately, this means no HTML can be sent back to the customer to inform about the situation.
* Add cftwXavier Del Campo Romero2023-07-201-0/+1
| | | | | | | | | | | POSIX functions ftw(3) and nftw(3) do not allow passing an opaque pointer to the callback they call, so it forces the use of statically allocated data. ctfw (from "custom ftw") is a custom implementation that solves this, while also removing unneeded stuff. This function will be used by future commits.
* Add MakefileXavier Del Campo Romero2023-07-201-0/+34