about summary refs log tree commit diff
Commit message (Expand)AuthorAge
...
| * 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 cache.hLars Hjemli2008-03-27
| * Remove global and obsolete cgit_cmdLars Hjemli2008-03-25
| * Makefile: copy the QUIET constructs from the Makefile in git.gitLars Hjemli2008-03-25
| * Move cgit_version from shared.c to cgit.cLars Hjemli2008-03-24
| * Makefile: autobuild dependency rulesLars Hjemli2008-03-24
| * Initial Makefile cleanupLars Hjemli2008-03-24
| * Move non-generic functions from shared.c to cgit.cLars Hjemli2008-03-24
| * Add ui-shared.hLars Hjemli2008-03-24
| * Add separate header-files for each page/viewLars Hjemli2008-03-24
| * Refactor snapshot supportLars Hjemli2008-03-24
| * Add command dispatcherLars Hjemli2008-03-24
| * Remove obsolete cacheitem parameter to ui-functionsLars Hjemli2008-03-24
| * Add struct cgit_page to cgit_contextLars Hjemli2008-03-24
| * Introduce html.hLars Hjemli2008-03-18
| * Improve initialization of git directoryLars Hjemli2008-02-16
| * Move cgit_repo into cgit_contextLars Hjemli2008-02-16
| * Add all config variables into struct cgit_contextLars Hjemli2008-02-16
| * Introduce struct cgit_contextLars Hjemli2008-02-16
* | Use GIT-1.5.5-rc2Lars Hjemli2008-04-01
* | Use GIT-1.5.5.rc1Lars Hjemli2008-03-23
* | Fix segfault in patch view for root commitLars Hjemli2008-03-17
* | Use GIT-1.5.4.4Lars Hjemli2008-03-17
* | tests/setup.sh: cleanup test script output and loggingLars Hjemli2008-02-24
* | t0010-validate.sh: return on cgit errorsLars Hjemli2008-02-24
* | Make output from `make test` more readableLars Hjemli2008-02-24
* | Brown paper bag: don't use `grep -v`Lars Hjemli2008-02-24
* | Add regression-test for description-less reposLars Hjemli2008-02-24
* | Merge branch 'stable'Lars Hjemli2008-02-23
|\ \ | |/ |/|
| * Fix segfaultHiroki Hattori2008-02-23
* | Use GIT-1.5.4.1Lars Hjemli2008-02-16
* | Use GIT-1.5.4Lars Hjemli2008-02-02
* | Use GIT-1.5.4.rc5Lars Hjemli2008-01-28
* | Use GIT-1.5.4.rc4Lars Hjemli2008-01-21
* | Merge branch 'stable'Lars Hjemli2008-01-13
|\|
| * CGIT 0.7.2Lars Hjemli2008-01-10
| * Use GIT-1.5.3.8Lars Hjemli2008-01-10
| * Compare string lengths when parsing the snapshot maskLars Hjemli2007-12-03
| * Default repo description to "[no description]"Evan Martin2007-12-03
* | Check for NULL-subject in patch viewLars Hjemli2008-01-10
* | Handle missing default branch and error out on invalid branch namesLars Hjemli2008-01-04
* | Add plain patch viewLars Hjemli2007-12-11
* | Add support for automatic and custom clone urlsLars Hjemli2007-12-03
* | Merge branch 'stable'Lars Hjemli2007-12-02
|\|
| * Handle missing timestamp in commit/tag objectsLars Hjemli2007-12-02
| * Set commit date on snapshot contentsLars Hjemli2007-11-11
* | Add cell-spacing in htmlLars Hjemli2007-11-16
* | Use tables for page layoutLars Hjemli2007-11-16
* | Gimp my logoLars Hjemli2007-11-16
: split filter functions into their own fileJason A. Donenfeld A first step for more interesting things. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2014-01-10filter: make exit status localJason A. Donenfeld It's only used in one place, and not useful to have around since close_filter will die() if exit_status isn't what it expects, anyway. So this is best as just a local variable instead of as part of the struct. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2014-01-10parsing: fix header typoJason A. Donenfeld 2014-01-10cgit.c: Fix comment on bit mask hackLukas Fleischer * Formatting and spelling fixes. * A bit mask with the size of one byte only allows for storing 8 (not 255!) different flags. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10cgit.c: Use "else" for mutually exclusive branchesLukas Fleischer When parsing command line arguments, no pair of command line options can ever match simultaneously. Use "else if" blocks to reflect this. This change improves both readability and speed. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10ui-snapshot.c: Do not reinvent suffixcmp()Lukas Fleischer Use suffixcmp() from Git instead of reimplementing it. This is a preparation for moving to ends_with() in Git 1.8.6. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10Refactor cgit_parse_snapshots_mask()Lukas Fleischer Use Git string lists instead of str{spn,cspn,ncmp}() magic. This significantly improves readability. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10Disallow use of undocumented snapshot delimitersLukas Fleischer Since the introduction of selective snapshot format configuration in dc3c9b5 (allow selective enabling of snapshots, 2007-07-21), we allowed seven different delimiters for snapshot formats, while the documentation has always been clear about spaces being the only valid delimiter: The value is a space-separated list of zero or more of the values "tar", "tar.gz", "tar.bz2", "tar.xz" and "zip". Supporting the undocumented delimiters makes the code unnecessarily complex. Remove them. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10Replace most uses of strncmp() with prefixcmp()Lukas Fleischer This is a preparation for replacing all prefix checks with either strip_prefix() or starts_with() when Git 1.8.6 is released. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-09README: Fix dependenciesLukas Fleischer * Remove the dependency on Git (which can be obtained automatically when building, using either the Git submodule or `make get-git`). * Use proper upstream names of dependencies. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-08README: Spelling and formatting fixesLukas Fleischer * Several small spelling and capitalization fixes. * Use consistent and better-looking formatting that is compatible with AsciiDoc (and partly compatible with RST). Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-08Fix UTF-8 with syntax-highlighting.pyPřemysl Janouch Previously the script tried to encode output from Pygments with the ASCII codec, which failed. Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Add a suggestion to the manpagePřemysl Janouch So that people wishing to use "enable-http-clone" don't have to find out the correct settings on their own. Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Fix the example configurationPřemysl Janouch "enable-git-clone" doesn't exist, replaced with "enable-http-clone". Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Fix about-formatting.shPřemysl Janouch dash failed to parse the script. Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Fix some spelling errorsPřemysl Janouch Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08filters: highlight.sh: add css comments for highlight 2.6 and 3.8Ferry Huberts