about summary refs log tree commit diff
path: root/parsing.c (follow)
Commit message (Expand)AuthorAge
* parsing: add timezone to ident structuresJohn Keeping2016-02-08
* git: update to v2.7.0Christian Hesse2016-01-13
* Drop return value from parse_user()Lukas Fleischer2015-03-05
* Remove leading newline characters from tag messagesLukas Fleischer2015-03-05
* Simplify commit and tag parsingLukas Fleischer2015-03-03
* Use split_ident_line() in parse_user()Lukas Fleischer2014-12-24
* git: update to v2.0.3John Keeping2014-07-28
* parsing.c: make commit buffer constJohn Keeping2014-07-28
* git: update for git 2.0Christian Hesse2014-06-28
* Fix cgit_parse_url when a repo url is contained in another repo urlJulian Maurice2014-04-05
* parsing.c: Remove leading space from committerLukas Fleischer2014-01-16
* parsing: fix header typoJason A. Donenfeld2014-01-10
* Replace most uses of strncmp() with prefixcmp()Lukas Fleischer2014-01-10
* Update copyright informationLukas Fleischer2014-01-08
* Mark several functions/variables staticLukas Fleischer2013-03-04
* White space around control verbs.Jason A. Donenfeld2013-03-04
* do not write outside heap bufferJim Meyering2012-10-02
* Remove dead initialization in cgit_parse_commit()Lukas Fleischer2011-07-22
* Avoid null pointer dereference in reencode().Lukas Fleischer2011-05-23
* fix two encoding bugsJulius Plenz2011-03-26
* Reencode author and committerRémi Lagacé2010-07-13
* parsing.c: enable builds with NO_ICONV definedLars Hjemli2008-12-05
* parsing.c: be prepared for unexpected content in commit/tag objectsLars Hjemli2008-09-15
* Move cgit_parse_query() from parsing.c to html.c as http_parse_querystring()Lars Hjemli2008-04-08
* Move function for configfile parsing into configfile.[ch]Lars Hjemli2008-03-28
* Add command dispatcherLars Hjemli2008-03-24
* Move cgit_repo into cgit_contextLars Hjemli2008-02-16
* Introduce struct cgit_contextLars Hjemli2008-02-16
* Merge branch 'stable'Lars Hjemli2007-12-02
|\
| * Handle missing timestamp in commit/tag objectsLars Hjemli2007-12-02
* | Use utf8::reencode_string from gitLars Hjemli2007-11-05
* | Convert subject and message with iconv_msg.Jonathan Bastien-Filiatrault2007-11-05
* | Add iconv_msg function.Jonathan Bastien-Filiatrault2007-11-05
* | Set msg_encoding according to the header.Jonathan Bastien-Filiatrault2007-11-05
* | Add commit->msg_encoding, allocate msg dynamicly.Jonathan Bastien-Filiatrault2007-11-05
|/
* cgit_parse_commit(): Add missing call to xstrdup()Lars Hjemli2007-10-27
* Skip unknown header fields when parsing tags and commitsLars Hjemli2007-10-27
* Add trim_end() and use it to remove trailing slashes from repo pathsLars Hjemli2007-06-26
* Check for NULL commit buffer in cgit_parse_commit()Ondrej Jirman2007-05-31
* Handle single-line and empty commit subjectsOndrej Jirman2007-05-31
* Don't be fooled by trailing '/' in url-parameterLars Hjemli2007-05-18
* Enable url=value querystring parameterLars Hjemli2007-05-18
* Restrict deep nesting of configfilesLars Hjemli2007-05-15
* Add include-parameter to config filesLars Hjemli2007-05-14
* Update to libgit 1.5.2-rc2Lars Hjemli2007-05-08
* Do not die if tag has no messageLars Hjemli2007-02-04
* Add function cgit_parse_tag()Lars Hjemli2007-01-17
* Handle empty/malformed commit messagesLars Hjemli2007-01-16
* Handle %xx encoding in querystringLars Hjemli2007-01-04
* Handle '+' in querystringLars Hjemli2006-12-28
for prefix and gitsrc arguments to 'make'Lars Hjemli This should improve the installation a little, especially since the new options are mentioned in the README. Also, add a make-rule to build the git binaries if necessary + a dependency between cgit and libgit.a. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-04Update cgitrc templateLars Hjemli Make the descriptions more helpfull. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-04Add support for lightweight tagsLars Hjemli There is nothing bad about a tag that has no tag-object, but the old code didn't handle such tags correctly. Fix it. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-04Read repo-info from /etc/cgitrcLars Hjemli 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 Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-03Fix search for non-virtual urlsLars Hjemli 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 Hjemli