aboutsummaryrefslogtreecommitdiffstats
path: root/README
Commit message (Collapse)AuthorAgeLines
* makefile: use LUA_PKGCONFIG to set Lua implementationGravatar Natanael Copa2014-01-22-7/+4
| | | | | | | | This breaks compat with the previous LUA_IMPLEMENTATION but gives more flexibility in that user can specify the pkg-config package name directly. Signed-off-by: Natanael Copa <ncopa@alpinelinux.org>
* README: document pkg-config for luajitGravatar Jason A. Donenfeld2014-01-19-1/+1
| | | | Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* README: document lua makefile flagsGravatar Jason A. Donenfeld2014-01-14-0/+16
| | | | Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* filter: add lua supportGravatar Jason A. Donenfeld2014-01-14-0/+1
| | | | Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* README: Fix dependenciesGravatar Lukas Fleischer2014-01-10-4/+3
| | | | | | | | | * 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>
* README: Spelling and formatting fixesGravatar Lukas Fleischer2014-01-09-41/+41
| | | | | | | | | * 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>
* README: add trailing slash to homepageGravatar Jason A. Donenfeld2013-05-28-1/+1
| | | | Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* New mailing list.Gravatar Jason A. Donenfeld2013-05-13-2/+3
|
* README: times, they are a-changinGravatar Jason A. Donenfeld2012-10-09-1/+1
|
* README: update some stale information/add some newGravatar Lars Hjemli2011-06-13-16/+6
| | | | Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* Update READMEGravatar Lars Hjemli2011-03-05-8/+1
|
* Fix a typo in README, s/ExecCGI/+ExecCGIGravatar Kamil Kaminski2010-11-09-1/+1
| | | | Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* Update READMEGravatar Lars Hjemli2007-09-04-18/+39
| | | | | | | Add new build instructions, extend the "Missing features" section and add a note about patches/email address of the author. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* Update README with submodule build infoGravatar Lars Hjemli2007-05-11-13/+39
| | | | Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* Add support for prefix and gitsrc arguments to 'make'Gravatar Lars Hjemli2007-02-05-9/+25
| | | | | | | | 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>
* Update README with install/config informationGravatar Lars Hjemli2007-01-28-24/+28
| | | | Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* Remove implementation details from READMEGravatar Lars Hjemli2006-12-13-53/+34
| | | | | | Let README describe the "bigger picture" instead. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* Add caching infrastructureGravatar Lars Hjemli2006-12-11-0/+54
This enables internal caching of page output. Page requests are split into four groups: 1) repo listing (front page) 2) repo summary 3) repo pages w/symbolic references in query string 4) repo pages w/constant sha1's in query string Each group has a TTL specified in minutes. When a page is requested, a cached filename is stat(2)'ed and st_mtime is compared to time(2). If TTL has expired (or the file didn't exist), the cached file is regenerated. When generating a cached file, locking is used to avoid parallell processing of the request. If multiple processes tries to aquire the same lock, the ones who fail to get the lock serves the (expired) cached file. If the cached file don't exist, the process instead calls sched_yield(2) before restarting the request processing. Signed-off-by: Lars Hjemli <hjemli@gmail.com>