diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2007-06-29 20:32:08 +0200 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2007-06-29 20:32:08 +0200 | 
| commit | 16a3d2779ccd56bf7954d98da547247d8796544b (patch) | |
| tree | 86d2ed41adc3de842c7518d614ea49ca0200e4d2 /cgit.h | |
| parent | Add version info from git-describe (diff) | |
| parent | Add ofs argument to cgit_log_link and use it in ui-log.c (diff) | |
| download | cgit-16a3d2779ccd56bf7954d98da547247d8796544b.tar.gz cgit-16a3d2779ccd56bf7954d98da547247d8796544b.tar.bz2 cgit-16a3d2779ccd56bf7954d98da547247d8796544b.zip | |
Merge branch 'lh/menu'
* lh/menu:
  Add ofs argument to cgit_log_link and use it in ui-log.c
  Add trim_end() and use it to remove trailing slashes from repo paths
  Do not include current path in the "tree" menu link
  Add setting to enable/disable extra links on index page
  Change S/L/T to summary/log/tree
  Change "files" to "tree"
  Include querystring as part of cached filename for repo summary page
  Add more menuitems on repo pages
Diffstat (limited to '')
| -rw-r--r-- | cgit.h | 4 | 
1 files changed, 3 insertions, 1 deletions
| @@ -118,6 +118,7 @@ extern char *cgit_repo_group;  extern int cgit_nocache;  extern int cgit_snapshots; +extern int cgit_enable_index_links;  extern int cgit_enable_log_filecount;  extern int cgit_enable_log_linecount;  extern int cgit_max_lock_attempts; @@ -158,6 +159,7 @@ extern int chk_zero(int result, char *msg);  extern int chk_positive(int result, char *msg);  extern int hextoint(char c); +extern char *trim_end(const char *str, char c);  extern void *cgit_free_commitinfo(struct commitinfo *info); @@ -204,7 +206,7 @@ extern char *cgit_pageurl(const char *reponame, const char *pagename,  extern void cgit_tree_link(char *name, char *title, char *class, char *head,  			   char *rev, char *path);  extern void cgit_log_link(char *name, char *title, char *class, char *head, -			  char *rev, char *path); +			  char *rev, char *path, int ofs);  extern void cgit_commit_link(char *name, char *title, char *class, char *head,  			     char *rev);  extern void cgit_diff_link(char *name, char *title, char *class, char *head, | 
