mirror of
https://github.com/zigzap/zap.git
synced 2025-10-20 15:14:08 +00:00
mustache example cleanup
This commit is contained in:
parent
4992c3677f
commit
7c03a16245
1 changed files with 4 additions and 15 deletions
|
@ -1,14 +1,7 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const zap = @import("zap");
|
const zap = @import("zap");
|
||||||
|
|
||||||
fn on_request_verbose(r: zap.SimpleRequest) void {
|
fn on_request(r: zap.SimpleRequest) void {
|
||||||
if (r.path) |the_path| {
|
|
||||||
std.debug.print("PATH: {s}\n", .{the_path});
|
|
||||||
}
|
|
||||||
|
|
||||||
if (r.query) |the_query| {
|
|
||||||
std.debug.print("QUERY: {s}\n", .{the_query});
|
|
||||||
}
|
|
||||||
const template = "{{=<< >>=}}* Users:\r\n<<#users>><<id>>. <<& name>> (<<name>>)\r\n<</users>>\r\nNested: <<& nested.item >>.";
|
const template = "{{=<< >>=}}* Users:\r\n<<#users>><<id>>. <<& name>> (<<name>>)\r\n<</users>>\r\nNested: <<& nested.item >>.";
|
||||||
const p = zap.MustacheNew(template) catch return;
|
const p = zap.MustacheNew(template) catch return;
|
||||||
defer zap.MustacheFree(p);
|
defer zap.MustacheFree(p);
|
||||||
|
@ -33,20 +26,16 @@ fn on_request_verbose(r: zap.SimpleRequest) void {
|
||||||
});
|
});
|
||||||
defer ret.deinit();
|
defer ret.deinit();
|
||||||
if (ret.str()) |s| {
|
if (ret.str()) |s| {
|
||||||
std.debug.print("{s}\n", .{s});
|
|
||||||
_ = r.sendBody(s);
|
_ = r.sendBody(s);
|
||||||
|
} else {
|
||||||
|
_ = r.sendBody("<html><body><h1>MustacheBuild() failed!</h1></body></html>");
|
||||||
}
|
}
|
||||||
_ = r.sendBody("<html><body><h1>MustacheBuild() failed!</h1></body></html>");
|
|
||||||
}
|
|
||||||
|
|
||||||
fn on_request_minimal(r: zap.SimpleRequest) void {
|
|
||||||
_ = r.sendBody("<html><body><h1>Hello from ZAP!!!</h1></body></html>");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn main() !void {
|
pub fn main() !void {
|
||||||
var listener = zap.SimpleHttpListener.init(.{
|
var listener = zap.SimpleHttpListener.init(.{
|
||||||
.port = 3000,
|
.port = 3000,
|
||||||
.on_request = on_request_verbose,
|
.on_request = on_request,
|
||||||
.log = true,
|
.log = true,
|
||||||
.max_clients = 100000,
|
.max_clients = 100000,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue