srctree

Gregory Mullen parent fd9642c6 eaf7961d
update for zig v0.14.0-dev

src/bleach.zig added: 19, removed: 20, total 0
@@ -138,7 +138,7 @@ fn bleachPath(in: u8, out: ?[]u8) Error!usize {
'\n', '\t', '\\' => "",
else => "",
};
if (comptime out) |o| {
if (out) |o| {
if (replace.len > o.len) return error.NoSpaceLeft;
@memcpy(o[0..replace.len], replace);
}
@@ -151,7 +151,7 @@ fn bleachFilename(in: u8, out: ?[]u8) Error!usize {
'/' => "-",
else => return bleachPath(in, out),
};
if (comptime out) |o| {
if (out) |o| {
if (replace.len > o.len) return error.NoSpaceLeft;
@memcpy(o[0..replace.len], replace);
}
 
src/endpoints/commit-flex.zig added: 19, removed: 20, total 0
@@ -7,7 +7,7 @@ const Journal = struct {
 
pub const JRepo = struct {
name: []const u8,
sha: Git.Sha,
sha: Git.SHA,
};
 
pub fn init(a: Allocator, email: []const u8) !*Journal {
 
src/gitweb.zig added: 19, removed: 20, total 0
@@ -56,7 +56,7 @@ fn gitUploadPack(ctx: *Verse.Frame) Error!void {
try map.put("REQUEST_METHOD", "POST");
}
try map.put("REMOTE_USER", "");
try map.put("REMOTE_ADDR", "");
try map.put("REMOTE_ADDR", ctx.request.remote_addr);
try map.put("CONTENT_TYPE", "application/x-git-upload-pack-request");
try map.put("GIT_PROTOCOL", "version=2");
try map.put("GIT_HTTP_EXPORT_ALL", "true");
 
src/ini.zig added: 19, removed: 20, total 0
@@ -97,12 +97,12 @@ pub fn Config(Base: anytype) type {
fn buildStruct(self: Self, T: type, name: []const u8) !?T {
var namespace: T = undefined;
const ns = self.get(name) orelse return null;
inline for (@typeInfo(T).Struct.fields) |s| {
inline for (@typeInfo(T).@"struct".fields) |s| {
switch (s.type) {
bool => {
@field(namespace, s.name) = ns.getBool(s.name) orelse brk: {
if (s.default_value) |dv| {
break :brk @as(*const s.type, @ptrCast(@alignCast(dv))).*;
if (s.defaultValue()) |dv| {
break :brk dv;
} else return error.SettingMissing;
};
},
@@ -123,14 +123,14 @@ pub fn Config(Base: anytype) type {
 
pub fn config(self: Self) !Base {
var base: Base = undefined;
inline for (@typeInfo(Base).Struct.fields) |f| {
inline for (@typeInfo(Base).@"struct".fields) |f| {
if (f.type == []const u8) continue; // Root variable not yet supported
switch (@typeInfo(f.type)) {
.Struct => {
.@"struct" => {
@field(base, f.name) = try self.buildStruct(f.type, f.name) orelse return error.NamespaceMissing;
},
.Optional => {
@field(base, f.name) = self.buildStruct(@typeInfo(f.type).Optional.child, f.name) catch null;
.optional => {
@field(base, f.name) = self.buildStruct(@typeInfo(f.type).optional.child, f.name) catch null;
},
else => @compileError("not implemented"),
}
 
src/main.zig added: 19, removed: 20, total 0
@@ -7,7 +7,6 @@ const Server = verse.Server;
const log = std.log;
 
const Database = @import("database.zig");
const Route = verse.Router;
const Repos = @import("repos.zig");
const Types = @import("types.zig");
 
@@ -21,7 +20,7 @@ test "main" {
std.testing.refAllDecls(@import("git.zig"));
}
 
pub const std_options = .{
pub const std_options: std.Options = .{
.log_level = .info,
};
 
 
src/patch.zig added: 19, removed: 20, total 0
@@ -258,7 +258,7 @@ pub const Diff = struct {
pub fn blocksAlloc(self: *Diff, a: Allocator) ![]const []const u8 {
var acount = count(u8, self.changes.?, "\n@@");
if (startsWith(u8, self.changes.?, "@@")) acount += 1 else acount += 0;
self.blocks = try a.alloc([]u8, acount);
self.blocks = try a.alloc([]const u8, acount);
var i: usize = 0;
var pos: usize = indexOf(u8, self.changes.?, "@@") orelse return self.blocks.?;
while (indexOf(u8, self.changes.?[pos + 1 ..], "\n@@")) |end| {