This website works better with JavaScript.
Explore
Help
Sign In
katolaz
/
cgit-70
Watch
1
Star
0
Fork
You've already forked cgit-70
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
a gopher interface forked from the popular cgit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1228
Commits
3
Branches
43
Tags
1.9 MiB
Tag:
Branch:
Tree:
36b1d78923
gopher
master
upstream
cgit-70_v0.1
cgit-70_v0.1.2.1
v0.1
v0.10
v0.10.1
v0.10.2
v0.11.0
v0.11.1
v0.11.2
v0.12
v0.2
v0.3
v0.4
v0.5
v0.6
v0.6.1
v0.6.2
v0.6.3
v0.7
v0.7.1
v0.7.2
v0.8
v0.8.1
v0.8.1.1
v0.8.2
v0.8.2.1
v0.8.2.2
v0.8.3
v0.8.3.1
v0.8.3.2
v0.8.3.3
v0.8.3.4
v0.8.3.5
v0.9
v0.9.0.1
v0.9.0.2
v0.9.0.3
v0.9.1
v0.9.2
v1.0
v1.1
v1.2
v1.2.1
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '36b1d78923'
${ noResults }
cgit-70
/
ui-plain.h
7 lines
100 B
Raw
Normal View
History
Unescape
Escape
Implement plain view This implements a way to access plain blobs by path (similar to the tree view) instead of by sha1. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
17 years ago
#
ifndef UI_PLAIN_H
#
define UI_PLAIN_H
Switch to exclusively using global ctx Drop the context parameter from the following functions (and all static helpers used by them) and use the global context instead: * cgit_print_http_headers() * cgit_print_docstart() * cgit_print_pageheader() Remove context parameter from all commands Drop the context parameter from the following functions (and all static helpers used by them) and use the global context instead: * cgit_get_cmd() * All cgit command functions. * cgit_clone_info() * cgit_clone_objects() * cgit_clone_head() * cgit_print_plain() * cgit_show_stats() In initialization routines, use the global context variable instead of passing a pointer around locally. Remove callback data parameter for cache slots This is no longer needed since the context is always read from the global context variable. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
11 years ago
extern
void
cgit_print_plain
(
void
)
;
Implement plain view This implements a way to access plain blobs by path (similar to the tree view) instead of by sha1. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
17 years ago
#
endif
/* UI_PLAIN_H */