summaryrefslogtreecommitdiff
path: root/ui-refs.h (unfollow)
Commit message (Expand)AuthorFilesLines
2008-03-25Makefile: copy the QUIET constructs from the Makefile in git.gitLars Hjemli1-5/+31
2008-03-24Move cgit_version from shared.c to cgit.cLars Hjemli3-3/+5
2008-03-24Makefile: autobuild dependency rulesLars Hjemli2-1/+11
2008-03-24Initial Makefile cleanupLars Hjemli1-7/+22
2008-03-24Move non-generic functions from shared.c to cgit.cLars Hjemli3-157/+155
2008-03-24Add ui-shared.hLars Hjemli13-32/+47
2008-03-24Add separate header-files for each page/viewLars Hjemli15-189/+257
2008-03-24Refactor snapshot supportLars Hjemli4-86/+90
2008-03-24Add command dispatcherLars Hjemli7-110/+169
2008-03-24Remove obsolete cacheitem parameter to ui-functionsLars Hjemli6-17/+16
2008-03-24Add struct cgit_page to cgit_contextLars Hjemli8-88/+113
2008-03-18Introduce html.hLars Hjemli17-46/+71
2008-02-16Improve initialization of git directoryLars Hjemli2-10/+9
2008-02-16Move cgit_repo into cgit_contextLars Hjemli11-103/+101
2008-02-16Add all config variables into struct cgit_contextLars Hjemli7-175/+166
2008-02-16Introduce struct cgit_contextLars Hjemli13-164/+156
2008-02-16Use GIT-1.5.4.1Lars Hjemli2-1/+1
2008-02-02Use GIT-1.5.4Lars Hjemli2-1/+1
2008-01-28Use GIT-1.5.4.rc5Lars Hjemli2-1/+1
2008-01-21Use GIT-1.5.4.rc4Lars Hjemli3-2/+2
2008-01-10CGIT 0.7.2v0.7.2Lars Hjemli1-1/+1
2008-01-10Use GIT-1.5.3.8Lars Hjemli2-1/+1
2008-01-10Check for NULL-subject in patch viewLars Hjemli1-1/+6
2008-01-04Handle missing default branch and error out on invalid branch namesLars Hjemli1-4/+58
2007-12-11Add plain patch viewLars Hjemli6-2/+122
2007-12-03Add support for automatic and custom clone urlsLars Hjemli4-0/+31
2007-12-03Compare string lengths when parsing the snapshot maskLars Hjemli1-3/+4
2007-12-03Default repo description to "[no description]"Evan Martin1-1/+1
2007-12-02Handle missing timestamp in commit/tag objectsLars Hjemli2-3/+7
2007-11-16Add cell-spacing in htmlLars Hjemli1-1/+1
2007-11-16Use tables for page layoutLars Hjemli2-30/+41
2007-11-16Gimp my logoLars Hjemli1-0/+0
2007-11-11Add support for "robots" meta-tagLars Hjemli4-0/+11
2007-11-11Generate valid html for "downloads" menu headerLars Hjemli1-1/+1
2007-11-11Set commit date on snapshot contentsLars Hjemli1-0/+1
2007-11-11Set commit date on snapshot contentsLars Hjemli1-0/+1
2007-11-11Fix html error detected by test-suiteLars Hjemli11-27/+37
2007-11-11Create initial testsuiteLars Hjemli12-1/+299
2007-11-09CGIT 0.7.1v0.7.1Lars Hjemli1-1/+1
2007-11-09Makefile install: include cgit.png, do not empty cacheLars Hjemli1-3/+6
2007-11-09Minor css tweaksLars Hjemli1-10/+1
2007-11-08Support "/" as virtual-rootLars Hjemli1-2/+4
2007-11-06Makefile: link with libiconv if NEEDS_LIBICONV is definedLars Hjemli1-0/+5
2007-11-06Show lines changed as -n/+m in shortlogsLars Hjemli1-7/+14
2007-11-05Use utf8::reencode_string from gitLars Hjemli2-60/+5
2007-11-05Convert subject and message with iconv_msg.Jonathan Bastien-Filiatrault1-0/+14
2007-11-05Add iconv_msg function.Jonathan Bastien-Filiatrault1-0/+58
2007-11-05Set msg_encoding according to the header.Jonathan Bastien-Filiatrault1-0/+8
2007-11-05Add commit->msg_encoding, allocate msg dynamicly.Jonathan Bastien-Filiatrault4-1/+10
2007-11-03Don't show the the branch selector button if javascript is enabledLars Hjemli1-1/+1
/others/cgit.git/commit/ui-repolist.c?h=v0.8.2.1&id=ce1c7336e5b3e3ebe8f8c9029c405aedec98c208&follow=1'>Read repo-info from /etc/cgitrcLars Hjemli5-55/+120 This makes cgit read all repo-info from the configfile, instead of scanning for possible git-dirs below a common root path. This is primarily done to get better security (separate physical path from logical repo-name). In /etc/cgitrc each repo is registered with the following keys: repo.url repo.name repo.path repo.desc repo.owner Note: *Required keys are repo.url and repo.path, all others are optional *Each occurrence of repo.url starts a new repository registration *Default value for repo.name is taken from repo.url *The value of repo.url cannot contain characters with special meaning for urls (i.e. one of /?%&), while repo.name can contain anything. Example: repo.url=cgit-pub repo.name=cgit/public repo.path=/pub/git/cgit repo.desc=My public cgit repo repo.owner=Lars Hjemli repo.url=cgit-priv repo.name=cgit/private repo.path=/home/larsh/src/cgit/.git repo.desc=My private cgit repo repo.owner=Lars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-04Do not die if tag has no messageLars Hjemli1-2/+2 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-03Fix search for non-virtual urlsLars Hjemli1-0/+6 When cgit don't use virtual urls, the current repo and page url parameters must be included in the search form as hidden input fields. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-01-28Update README with install/config informationLars Hjemli1-24/+28 Signed-off-by: Lars Hjemli <hjemli@gmail.com>