| Commit message (Expand) | Author | Age | Files | Lines |
| * | Hosted on HTTPS now | Jason A. Donenfeld | 2016-06-07 | 1 | -2/+2 |
| * | remove trailing whitespaces from source files | Christian Hesse | 2014-04-17 | 1 | -1/+1 |
| * | makefile: use LUA_PKGCONFIG to set Lua implementation•••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>
| Natanael Copa | 2014-01-22 | 1 | -7/+4 |
| * | README: document pkg-config for luajit•••Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
| Jason A. Donenfeld | 2014-01-19 | 1 | -1/+1 |
| * | README: document lua makefile flags•••Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
| Jason A. Donenfeld | 2014-01-14 | 1 | -0/+16 |
| * | filter: add lua support•••Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
| Jason A. Donenfeld | 2014-01-14 | 1 | -0/+1 |
| * | README: Fix dependencies•••* 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>
| Lukas Fleischer | 2014-01-09 | 1 | -4/+3 |
| * | README: Spelling and formatting fixes•••* 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>
| Lukas Fleischer | 2014-01-08 | 1 | -41/+41 |
| * | README: add trailing slash to homepage•••Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
| Jason A. Donenfeld | 2013-05-27 | 1 | -1/+1 |
| * | New mailing list. | Jason A. Donenfeld | 2013-05-13 | 1 | -2/+3 |
| * | README: times, they are a-changin | Jason A. Donenfeld | 2012-10-09 | 1 | -1/+1 |
| * | README: update some stale information/add some new•••Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| Lars Hjemli | 2011-06-13 | 1 | -16/+6 |
| * | Update README | Lars Hjemli | 2011-03-05 | 1 | -8/+1 |
| * | Fix a typo in README, s/ExecCGI/+ExecCGI•••Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| Kamil Kaminski | 2010-11-08 | 1 | -1/+1 |
| * | Update README•••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>
| Lars Hjemli | 2007-09-04 | 1 | -18/+39 |
| * | Update README with submodule build info•••Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| Lars Hjemli | 2007-05-11 | 1 | -13/+39 |
| * | Add support for prefix and gitsrc arguments to 'make'•••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>
| Lars Hjemli | 2007-02-05 | 1 | -9/+25 |
| * | Update README with install/config information•••Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| Lars Hjemli | 2007-01-28 | 1 | -24/+28 |
| * | Remove implementation details from README•••Let README describe the "bigger picture" instead.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| Lars Hjemli | 2006-12-13 | 1 | -44/+25 |
| * | Add caching infrastructure•••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>
| Lars Hjemli | 2006-12-10 | 1 | -0/+54 |