]> git.cameronkatri.com Git - cgit.git/log
cgit.git
18 years agoAdd license file and copyright notices
Lars Hjemli [Sun, 10 Dec 2006 21:41:14 +0000 (22:41 +0100)]
Add license file and copyright notices

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
18 years agoAdd caching infrastructure
Lars Hjemli [Sun, 10 Dec 2006 21:31:36 +0000 (22:31 +0100)]
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>
18 years agoAdd .gitignore
Lars Hjemli [Sat, 9 Dec 2006 21:21:43 +0000 (22:21 +0100)]
Add .gitignore

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
18 years agoReplace useless make rules with generic $(OBJECTS) dependency
Lars Hjemli [Sat, 9 Dec 2006 14:29:05 +0000 (15:29 +0100)]
Replace useless make rules with generic $(OBJECTS) dependency

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
18 years agoImport cgit prototype from git tree
Lars Hjemli [Sat, 9 Dec 2006 14:18:17 +0000 (15:18 +0100)]
Import cgit prototype from git tree

This enables basic cgit functionality, using libgit.a and xdiff/lib.a from
git + a custom "git.h" + openssl for sha1 routines.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>