diff options
author | Lars Hjemli <hjemli@gmail.com> | 2007-05-20 14:33:59 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-20 14:33:59 +0200 |
commit | 977a0b173df6fe1a4d362fe4c70f9badff1fd46c (patch) | |
tree | 8bd383fff396bb1790c03ab5b461d899af997568 /cgit.h | |
parent | Use git-1.5.2 (diff) | |
parent | Teach cgit howto include an external file on index page. (diff) | |
download | cgit-pink-977a0b173df6fe1a4d362fe4c70f9badff1fd46c.tar.gz cgit-pink-977a0b173df6fe1a4d362fe4c70f9badff1fd46c.zip |
Merge branch 'index-header'
* index-header: Teach cgit howto include an external file on index page. Add html_include()
Diffstat (limited to '')
-rw-r--r-- | cgit.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h index f3d783e..3ee11bb 100644 --- a/cgit.h +++ b/cgit.h @@ -75,6 +75,7 @@ extern struct repoinfo *cgit_repo; extern char *cgit_root_title; extern char *cgit_css; extern char *cgit_logo; +extern char *cgit_index_header; extern char *cgit_logo_link; extern char *cgit_module_link; extern char *cgit_virtual_root; @@ -144,6 +145,7 @@ extern void html_hidden(char *name, char *value); extern void html_link_open(char *url, char *title, char *class); extern void html_link_close(void); extern void html_filemode(unsigned short mode); +extern int html_include(const char *filename); extern int cgit_read_config(const char *filename, configfn fn); extern int cgit_parse_query(char *txt, configfn fn); |