about summary refs log tree commit diff homepage
path: root/meta.c
blob: 5e1736e41d823ea0c566794284862c71ce31b3a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* Copyright (C) 2017  Curtis McEnroe <june@causal.agency>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <err.h>
#include <stdio.h>
#include <sysexits.h>

#include "torus.h"

int main() {
	printf("tileX,tileY,createTime,modifyCount,modifyTime,accessCount,accessTime\n");
	for (int i = 0;; ++i) {
		struct Tile tile;
		size_t count = fread(&tile, sizeof(tile), 1, stdin);
		if (ferror(stdin)) err(EX_IOERR, "(stdin)");
		if (!count) return EX_OK;

		struct Meta meta = tileMeta(&tile);
		printf(
			"%d,%d,%jd,%u,%jd,%u,%jd\n",
			i % TileCols,
			i / TileCols,
			meta.createTime,
			meta.modifyCount,
			meta.modifyTime,
			meta.accessCount,
			meta.accessTime
		);
	}
}
e884f3162771880a2a5260713d6b7d1aa25bc6f&follow=1'>ui-shared: use html_url_path() to get properly escaped url in form actionLars Hjemli When a repo uses an url with e.g. '#' or '?' characters this needs to be properly escaped when used as action in a form tag. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-10-05Use GIT-1.6.0.2Lars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-10-05ui-shared: reword the standard page footerLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-10-05ui-shared: do not print repo name on the "summary" tabLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-10-05Replace cgitrc with cgitrc.5.txtLars Hjemli The new file describes all cgitrc options in a more structured manner then the cgitrc example file and it might also work as the source for a cgitrc man page. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-10-05ui-repolist + ui-shared: Use cgit_summary_link()Lars Hjemli This makes is possible to use cgit with repository urls containing special url characters like '#' and '?'. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-10-05ui-shared.c: add cgit_summary_link()Lars Hjemli This function can be used to generate a link to the summary page for the currently active repo. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-10-05ui-shared.c: use html_url_path() in repolink()Lars Hjemli This makes sure that reponames and paths are properly escaped when used as urls. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-10-05html.c: add html_url_pathLars Hjemli This function can be used to generate properly escaped path-components for links. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-10-05ui-snapshot.c: specify archiver_args.baselenLars Hjemli The struct member was introduces in git commit d53fe8187c38, but the cgit testsuite failed to detect that cgit always generated archives without prefixes, i.e. the result from cgit_repobasename was ignored. This fixes the bug and the testsuite. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-10-05ui-shared.c: use html_url_arg()Lars Hjemli The link-generating functions are updated to use the new html_url_arg function, thereby fixing links to strange repos, branches and files. Also, the test-suite is updated to verify some cases of strange urls. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-10-05html.c: add html_url_argLars Hjemli This function can be used to properly escape querystring parameter values. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-09-23ui-diff: make diffstat header a link to the full diffLars Hjemli When printing a path-filtered diff it wasn't obvious how to get back to the full diff (clicking the 'diff' tab would do this). Making the diffstat heading into a link seems to improve the usability. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-09-23ui-diff: fix links from diffstatLars Hjemli The links in the diffstat is supposed to work as a filter for the diff, but this only worked when a single rev was supplied, i.e. the filtered diff was always against the parent of the specified rev. With this patch it is now possible to use the diffstat as a 'filter menu' for urls like http://hjemli.net/git/cgit/diff/?id=v0.7.2&id2=v0.7.1 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-09-20Add LDFLAGS to makefile.Harley Laue This will allow for creating static builds which is useful for chrooted environments. Signed-off-by: Harley Laue <losinggeneration@gmail.com> Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-09-15ui-repolist: enable filtering of repos by pathLars Hjemli If a repo url is specified but no exact match is found in the list of repos the url will now be used as a prefix-filter. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-09-15Add support for --scan-tree=<path> option to cgitLars Hjemli This option makes cgit scan a directory tree looking for git repositories, generating suitable definitions for a cgitrc file on stdout. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-09-15Teach cgit how to use PATH_INFOLars Hjemli This commit makes cgit use the cgi variables SCRIPT_NAME and PATH_INFO when virtual-root is unspecified in cgitrc and no url-parameter is specified on the querystring. This has two nice effects: * Virtual urls works out of the box, no more need for rewrite-rules in httpd. * Virtual urls with special querystring characters are handled correctly. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-09-15ui-tag: show the taggers emailLars Hjemli If it's specified there's no point in hiding it. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-09-15parsing.c: be prepared for unexpected content in commit/tag objectsLars Hjemli When parsing commits and tags cgit made too many assumptions about the formatting of said objects. This patch tries to make the code be more prepared to handle 'malformed' objects. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-09-03Update Makefile to use GIT-1.6.0.1Lars Hjemli When updating the git submodule to 1.6.0.1 (and 1.6.0), the Makefile was left behind. This fixes it. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-09-02use Host: header to generate cgit_hosturlEric Wong I run an instance of lighttpd for cgit behind nginx (nginx doesn't execute CGI). So the port (SERVER_PORT=33333) that lighttpd runs on sends to cgit is different from the standard port 80 that public clients connect to (via nginx). This was causing the Atom feed URL to show the private port number that lighttpd was running on. Since the HTTP/1.1 "Host" header includes the port number if running on a non-standard port, it allows non-client-facing HTTP servers to transparently generate public URLs that clients can see. So use the "Host" header if it is available and fall back to SERVER_NAME/SERVER_PORT for some clients that don't set HTTP_HOST. Signed-off-by: Eric Wong <normalperson@yhbt.net> 2008-09-02Use GIT-1.6.0.1Lars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2008-09-02ui-plain: handle subdirectories