about summary refs log tree commit diff
path: root/cgit.c (follow)
Commit message (Expand)AuthorAge
...
* | | | Merge branch 'master' of http://op-co.de/cgitLars Hjemli2009-12-08
|\ \ \ \
| * | | | "max-blob-size" config var to limit generated HTML sizeGeorg Lukas2009-11-28
| | |/ / | |/| |
* | | | Merge branch 'stable'Lars Hjemli2009-12-08
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | Don't crash when a repo-specific readme file is usedSami Kyöstilä2009-12-08
| |/
* / Skip leading "/" in url querystring valueStefan Bühler2009-10-06
|/
* Merge branch 'lh/repo-scan'Lars Hjemli2009-09-13
|\
| * cgit.c: respect repo-local 'snapshots' option for --scan-pathLars Hjemli2009-08-24
| * cgit.c: only print first line of repo.desc in print_repo()Lars Hjemli2009-08-24
| * Add and use cgit_find_stats_periodname() in print_repo()Lars Hjemli2009-08-24
| * cgit.c: generate repo.snapshots in print_repo()Lars Hjemli2009-08-24
| * cgit.c: add missing options to print_repo()Lars Hjemli2009-08-24
| * Add config option 'enable-filter-overrides'Lars Hjemli2009-08-24
| * ui-repolist: handle empty sections similar to NULL sectionsLars Hjemli2009-08-24
| * Add support for repo-local cgitrc fileLars Hjemli2009-08-24
| * cgit.c: refactor repo_config() from config_cb()Lars Hjemli2009-08-24
| * Add config option 'repo.section'Lars Hjemli2009-08-24
| * Introduce 'section' as canonical spelling for 'repo.group'Lars Hjemli2009-08-24
| * Add support for --scan-path command line optionLars Hjemli2009-08-24
| * Rename 'repo.scan' to 'scan-path'Lars Hjemli2009-08-24
| * cgit.c: add support for caching autodetected repositoriesLars Hjemli2009-08-24
| * cgit.c: make print_repolist() and print_repo() reusable for cachingLars Hjemli2009-08-24
| * cgit.c: add support for cgitrc option 'repo.scan'Lars Hjemli2009-08-24
* | Rename "linenumbers" to "enable-tree-linenumbers", change default to "1"Lars Hjemli2009-08-21
* | Add 'linenumbers' config optionFlorian Pritz2009-08-21
|/
* cgit.c: fix caching keyed on PATH_INFO with no QUERY_STRINGLars Hjemli2009-08-20
* Merge branch 'stable'Lars Hjemli2009-08-17
|\
| * cgit.c: do not segfault on unexpected query-string formatLars Hjemli2009-08-17
* | Merge branch 'lh/embedded'Lars Hjemli2009-08-11
|\ \
| * | ui-shared: add support for NO_HTTP=1/--nohttpLars Hjemli2009-08-10
| * | Cleanup handling of environment variablesLars Hjemli2009-08-10
* | | cgit.c: make '/cgit.png' the default value for 'logo' optionLars Hjemli2009-08-10
|/ /
* | Merge branch 'lh/about'Lars Hjemli2009-08-09
|\ \
| * | Add 'about-filter' and 'repo.about-filter' optionsLars Hjemli2009-08-09
* | | Merge branch 'lh/plugins'Lars Hjemli2009-08-09
|\| |
| * | cgit.c: allow repo.*-filter options to unset the current defaultLars Hjemli2009-08-09
| * | Add support for repo.commit-filter and repo.source-filterLars Hjemli2009-08-09
| * | ui-commit: add support for 'commit-filter' optionLars Hjemli2009-07-31
| * | ui-tree: add support for source-filter optionLars Hjemli2009-07-31
| * | Add generic filter/plugin infrastructureLars Hjemli2009-07-31
* | | Merge branch 'lh/mimetypes'Lars Hjemli2009-08-09
|\ \ \
| * | | Add support for mime type registration and lookupLars Hjemli2009-07-25
| |/ /
* / / Introduce noplainemail option to hide email adresses from spambotsMartin Szulecki2009-08-08
|/ /
* | Merge branch 'lh/embedded'Lars Hjemli2009-07-25
|\ \
| * | Add support for 'noheader' optionLars Hjemli2009-07-25
| * | Add support for an 'embedded' option in cgitrcLars Hjemli2009-02-02
| |/
* | Merge branch 'ml/head-include'Lars Hjemli2009-07-25
|\ \
| * | Add head-include configuration option.Mark Lodato2009-06-07
| |/
* | Merge branch 'plain-etag'Lars Hjemli2009-07-25
|\ \
| * | Add support for HEAD requestsLars Hjemli2009-02-19
| * | Add support for ETag in 'plain' viewLars Hjemli2009-02-19
| |/
3' class='logmsg'> It's a bit tedious to have to do this here too. If we encounter other issues with $HOME down the line, I'll look into adding some nice utility functions to handle this, or perhaps giving up on the hope that we could keep $HOME defined for scripts. This commit additionally adds a test case, should the issue surface again. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2013-04-27t0001: validate Git -rcN version numbers correctlyJohn Keeping When creating the GIT-VERSION-FILE that we use to test that the version of Git in git/ is the same as in the CGit Makefile, Git applies the transform "s/-/./g" to the version string. This doesn't affect released versions but does change RC version numbers such as 1.8.3-rc0. While CGit should only refer to a released Git version in general, it is useful to developers who want to test upcoming Git releases if the tests do work with RCs, so change t0001 to apply the same transform to our Makefile version before comparing it to the contents of GIT-VERSION-FILE. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-27git: update to 1.8.2.2John Keeping No changes required, just bump the submodule and Makefile version. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-17scan-tree: fix regression in section-from-path=-1John Keeping Commit fb3655d (use struct strbuf instead of static buffers - 2013-04-06) introduced a regression in the "section-from-path" handling when the configured value is negative. By changing the "rel" variable so that it includes a trailing slash, counting slashes from the end of the string no longer gives the same answer as it did before. Fix this by ensuring that "rel" does not have a trailing slash. Reported-by: Julius Plenz <plenz@cis.fu-berlin.de> Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-15t0001: ignore ".dirty" suffix on Git versionJohn Keeping When testing modifications in Git that affect CGit, it is annoying to have t0001 failing simply because the Git version has a ".dirty" suffix when the version of Git there does indeed match that specified in the CGit makefile. Stop this by stripping the ".dirty" suffix from the GIT_VERSION variable. Note that this brings the "Git version" behaviour in line with the "submodule version" case which does not check if the working tree in git/ is modified. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-15tests: set TEST_OUTPUT_DIRECTORY to the CGit test directoryJohn Keeping By default, Git's test suite puts the trash directories and test-results directory into its own directory, not that containing the tests being run. This is less convenient for inspecting test failures, so set the output directory to CGit's tests/ directory instead. Note that there is currently a bug in Git whereby it will create the trash directories in our tests/ directory regardless of the value of TEST_OUTPUT_DIRECTORY, and then fail to remove them once the tests are done. This change does currently affect the location of the test-results/ directory though. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-15t0109: test more URLsJohn Keeping In order to ensure that we don't access $HOME at some point after initial startup when rendering a specific view, run the strace test on a range of different pages. This ensures that we don't end up reading a configuration later for some specific view. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgitrc.5.txt: Specify when scan-path must be defined before.Jason A. Donenfeld Several options must be specified prior to scan-path. This is consistant source of user confusion. Document these facts. Suggested-by: Lukas Fleischer <cgit@cryptocrack.de> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2013-04-10ui-snapshot.c: Prepend "V" when guessing ref namesLukas Fleischer In cgit_print_snapshot_links() we strip leading "v" and "V", while we currently only prepend a lower case "v" when parsing a snapshot file name. This results in broken snapshot links for tags that start with an upper case "V". Avoid this by prepending a "V" as a fallback. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10t0107: Skip ZIP tests if unzip(1) isn't availableLukas Fleischer Note that we cannot use skip_all here since some tests have already been executed when ZIP tests are reached. Use test prerequisites to skip everything using unzip(1) if the binary is not available instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10tests/: Do not use `sed -i`Lukas Fleischer "-i" isn't part of the POSIX standard and doesn't work on several platforms such as OpenBSD. Use a temporary file instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10Add branch-sort and repo.branch-sort options.Jason A. Donenfeld When set to "name", branches are sorted by name, which is the current default. When set to "age", branches are sorted by the age of the repository. This feature was requested by Konstantin Ryabitsev for use on kernel.org. Proposed-by: Konstantin Ryabitsev <mricon@kernel.org> 2013-04-10t0109: chain operations with &&John Keeping Without '&&' between operations, we will not detect if strace or cgit exit with an error status, which would cause a false positive test status in this case. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgit.c: Do not restore unset environment variablesLukas Fleischer getenv() returns a NULL pointer if the specified variable name cannot be found in the environment. However, some setenv() implementations crash if a NULL pointer is passed as second argument. Only restore variables that are not NULL. See commit d96d2c98ebc4c2d3765f5b35c4142e0e828a421b for a related patch. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-09t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer