mirror of
https://git.zx2c4.com/cgit/
synced 2024-11-10 07:10:33 +00:00
Rename config.c to parsing.c + move cgit_parse_query from cgit.c to parsing.c
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
318d106300
commit
51ada4fda2
5
Makefile
5
Makefile
@ -5,7 +5,7 @@ INSTALL_CSS = /var/www/htdocs/cgit.css
|
|||||||
CACHE_ROOT = /var/cache/cgit
|
CACHE_ROOT = /var/cache/cgit
|
||||||
|
|
||||||
EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto
|
EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto
|
||||||
OBJECTS = config.o html.o cache.o
|
OBJECTS = parsing.o html.o cache.o
|
||||||
|
|
||||||
CFLAGS += -Wall
|
CFLAGS += -Wall
|
||||||
|
|
||||||
@ -17,7 +17,8 @@ install: all
|
|||||||
rm -rf $(CACHE_ROOT)/*
|
rm -rf $(CACHE_ROOT)/*
|
||||||
|
|
||||||
cgit: cgit.c cgit.h git.h $(OBJECTS)
|
cgit: cgit.c cgit.h git.h $(OBJECTS)
|
||||||
$(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit $(OBJECTS) $(EXTLIBS)
|
$(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \
|
||||||
|
$(OBJECTS) $(EXTLIBS)
|
||||||
|
|
||||||
$(OBJECTS): cgit.h git.h
|
$(OBJECTS): cgit.h git.h
|
||||||
|
|
||||||
|
26
cgit.c
26
cgit.c
@ -53,32 +53,6 @@ char *cgit_query_sha1 = NULL;
|
|||||||
|
|
||||||
struct cacheitem cacheitem;
|
struct cacheitem cacheitem;
|
||||||
|
|
||||||
int cgit_parse_query(char *txt, configfn fn)
|
|
||||||
{
|
|
||||||
char *t, *value = NULL, c;
|
|
||||||
|
|
||||||
if (!txt)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
t = txt = xstrdup(txt);
|
|
||||||
|
|
||||||
while((c=*t) != '\0') {
|
|
||||||
if (c=='=') {
|
|
||||||
*t = '\0';
|
|
||||||
value = t+1;
|
|
||||||
} else if (c=='&') {
|
|
||||||
*t = '\0';
|
|
||||||
(*fn)(txt, value);
|
|
||||||
txt = t+1;
|
|
||||||
value = NULL;
|
|
||||||
}
|
|
||||||
t++;
|
|
||||||
}
|
|
||||||
if (t!=txt)
|
|
||||||
(*fn)(txt, value);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void cgit_global_config_cb(const char *name, const char *value)
|
void cgit_global_config_cb(const char *name, const char *value)
|
||||||
{
|
{
|
||||||
if (!strcmp(name, "root"))
|
if (!strcmp(name, "root"))
|
||||||
|
1
cgit.h
1
cgit.h
@ -56,6 +56,7 @@ extern void html_link_close(void);
|
|||||||
|
|
||||||
|
|
||||||
extern int cgit_read_config(const char *filename, configfn fn);
|
extern int cgit_read_config(const char *filename, configfn fn);
|
||||||
|
extern int cgit_parse_query(char *txt, configfn fn);
|
||||||
|
|
||||||
extern void cache_prepare(struct cacheitem *item);
|
extern void cache_prepare(struct cacheitem *item);
|
||||||
extern int cache_lock(struct cacheitem *item);
|
extern int cache_lock(struct cacheitem *item);
|
||||||
|
@ -79,3 +79,28 @@ int cgit_read_config(const char *filename, configfn fn)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int cgit_parse_query(char *txt, configfn fn)
|
||||||
|
{
|
||||||
|
char *t, *value = NULL, c;
|
||||||
|
|
||||||
|
if (!txt)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
t = txt = xstrdup(txt);
|
||||||
|
|
||||||
|
while((c=*t) != '\0') {
|
||||||
|
if (c=='=') {
|
||||||
|
*t = '\0';
|
||||||
|
value = t+1;
|
||||||
|
} else if (c=='&') {
|
||||||
|
*t = '\0';
|
||||||
|
(*fn)(txt, value);
|
||||||
|
txt = t+1;
|
||||||
|
value = NULL;
|
||||||
|
}
|
||||||
|
t++;
|
||||||
|
}
|
||||||
|
if (t!=txt)
|
||||||
|
(*fn)(txt, value);
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user