Warmcat homepage andy@warmcat.com
libwebsockets
{"schema":"libjg2-1", "vpath":"/git/", "avatar":"/git/avatar/", "alang":"", "gen_ut":1745907529, "reponame":"cgit", "desc":"CGI gitweb", "owner": { "name": "Andy Green", "email": "andy@warmcat.com", "md5": "c50933ca2aa61e0fe2c43d46bb6b59cb" },"url":"https://warmcat.com/repo/cgit", "f":3, "items": [ {"schema":"libjg2-1", "cid":"4a6c05bb643508bb642e4c953831db57", "commit": {"type":"commit", "time": 1530578607, "time_ofs": 480, "oid_tree": { "oid": "549bbdf67cc7fb88fb270d524c0ccb0d4142fb27", "alias": []}, "oid":{ "oid": "78ba0a0de18e2fceed9ad0217aef2b5515bc2a63", "alias": []}, "msg": "rename README to README.md", "sig_commit": { "git_time": { "time": 1530578607, "offset": 480 }, "name": "Andy Green", "email": "andy@warmcat.com", "md5": "c50933ca2aa61e0fe2c43d46bb6b59cb" }, "sig_author": { "git_time": { "time": 1530499776, "offset": 480 }, "name": "Andy Green", "email": "andy@warmcat.com", "md5": "c50933ca2aa61e0fe2c43d46bb6b59cb" }}, "body": "rename README to README.md\n\nIf it's actually markdown in there, there's no reason to\nhide it under a bushel.\n\nSigned-off-by: Andy Green \u003candy@warmcat.com\u003e" , "diff": "diff --git a/README b/README\ndeleted file mode 100644\nindex 7a6b4a4..0000000\n--- a/README\n+++ /dev/null\n@@ -1,99 +0,0 @@\n-cgit - CGI for Git\n-\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\n-\n-This is an attempt to create a fast web interface for the Git SCM, using a\n-built-in cache to decrease server I/O pressure.\n-\n-Installation\n-------------\n-\n-Building cgit involves building a proper version of Git. How to do this\n-depends on how you obtained the cgit sources:\n-\n-a) If you're working in a cloned cgit repository, you first need to\n-initialize and update the Git submodule:\n-\n- $ git submodule init # register the Git submodule in .git/config\n- $ $EDITOR .git/config # if you want to specify a different url for git\n- $ git submodule update # clone/fetch and checkout correct git version\n-\n-b) If you're building from a cgit tarball, you can download a proper git\n-version like this:\n-\n- $ make get-git\n-\n-When either a) or b) has been performed, you can build and install cgit like\n-this:\n-\n- $ make\n- $ sudo make install\n-\n-This will install `cgit.cgi` and `cgit.css` into `/var/www/htdocs/cgit`. You\n-can configure this location (and a few other things) by providing a `cgit.conf`\n-file (see the Makefile for details).\n-\n-If you'd like to compile without Lua support, you may use:\n-\n- $ make NO_LUA\u003d1\n-\n-And if you'd like to specify a Lua implementation, you may use:\n-\n- $ make LUA_PKGCONFIG\u003dlua5.1\n-\n-If this is not specified, the Lua implementation will be auto-detected,\n-preferring LuaJIT if many are present. Acceptable values are generally \u0022lua\u0022,\n-\u0022luajit\u0022, \u0022lua5.1\u0022, and \u0022lua5.2\u0022.\n-\n-\n-Dependencies\n-------------\n-\n-* libzip\n-* libcrypto (OpenSSL)\n-* libssl (OpenSSL)\n-* optional: luajit or lua, most reliably used when pkg-config is available\n-\n-Apache configuration\n---------------------\n-\n-A new `Directory` section must probably be added for cgit, possibly something\n-like this:\n-\n- \u003cDirectory \u0022/var/www/htdocs/cgit/\u0022\u003e\n- AllowOverride None\n- Options +ExecCGI\n- Order allow,deny\n- Allow from all\n- \u003c/Directory\u003e\n-\n-\n-Runtime configuration\n----------------------\n-\n-The file `/etc/cgitrc` is read by cgit before handling a request. In addition\n-to runtime parameters, this file may also contain a list of repositories\n-displayed by cgit (see `cgitrc.5.txt` for further details).\n-\n-The cache\n----------\n-\n-When cgit is invoked it looks for a cache file matching the request and\n-returns it to the client. If no such cache file exists (or if it has expired),\n-the content for the request is written into the proper cache file before the\n-file is returned.\n-\n-If the cache file has expired but cgit is unable to obtain a lock for it, the\n-stale cache file is returned to the client. This is done to favour page\n-throughput over page freshness.\n-\n-The generated content contains the complete response to the client, including\n-the HTTP headers `Modified` and `Expires`.\n-\n-Online presence\n----------------\n-\n-* The cgit homepage is hosted by cgit at \u003chttps://git.zx2c4.com/cgit/about/\u003e\n-\n-* Patches, bug reports, discussions and support should go to the cgit\n- mailing list: \u003ccgit@lists.zx2c4.com\u003e. To sign up, visit\n- \u003chttps://lists.zx2c4.com/mailman/listinfo/cgit\u003e\ndiff --git a/README.md b/README.md\nnew file mode 100644\nindex 0000000..7a6b4a4\n--- /dev/null\n+++ b/README.md\n@@ -0,0 +1,99 @@\n+cgit - CGI for Git\n+\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\n+\n+This is an attempt to create a fast web interface for the Git SCM, using a\n+built-in cache to decrease server I/O pressure.\n+\n+Installation\n+------------\n+\n+Building cgit involves building a proper version of Git. How to do this\n+depends on how you obtained the cgit sources:\n+\n+a) If you're working in a cloned cgit repository, you first need to\n+initialize and update the Git submodule:\n+\n+ $ git submodule init # register the Git submodule in .git/config\n+ $ $EDITOR .git/config # if you want to specify a different url for git\n+ $ git submodule update # clone/fetch and checkout correct git version\n+\n+b) If you're building from a cgit tarball, you can download a proper git\n+version like this:\n+\n+ $ make get-git\n+\n+When either a) or b) has been performed, you can build and install cgit like\n+this:\n+\n+ $ make\n+ $ sudo make install\n+\n+This will install `cgit.cgi` and `cgit.css` into `/var/www/htdocs/cgit`. You\n+can configure this location (and a few other things) by providing a `cgit.conf`\n+file (see the Makefile for details).\n+\n+If you'd like to compile without Lua support, you may use:\n+\n+ $ make NO_LUA\u003d1\n+\n+And if you'd like to specify a Lua implementation, you may use:\n+\n+ $ make LUA_PKGCONFIG\u003dlua5.1\n+\n+If this is not specified, the Lua implementation will be auto-detected,\n+preferring LuaJIT if many are present. Acceptable values are generally \u0022lua\u0022,\n+\u0022luajit\u0022, \u0022lua5.1\u0022, and \u0022lua5.2\u0022.\n+\n+\n+Dependencies\n+------------\n+\n+* libzip\n+* libcrypto (OpenSSL)\n+* libssl (OpenSSL)\n+* optional: luajit or lua, most reliably used when pkg-config is available\n+\n+Apache configuration\n+--------------------\n+\n+A new `Directory` section must probably be added for cgit, possibly something\n+like this:\n+\n+ \u003cDirectory \u0022/var/www/htdocs/cgit/\u0022\u003e\n+ AllowOverride None\n+ Options +ExecCGI\n+ Order allow,deny\n+ Allow from all\n+ \u003c/Directory\u003e\n+\n+\n+Runtime configuration\n+---------------------\n+\n+The file `/etc/cgitrc` is read by cgit before handling a request. In addition\n+to runtime parameters, this file may also contain a list of repositories\n+displayed by cgit (see `cgitrc.5.txt` for further details).\n+\n+The cache\n+---------\n+\n+When cgit is invoked it looks for a cache file matching the request and\n+returns it to the client. If no such cache file exists (or if it has expired),\n+the content for the request is written into the proper cache file before the\n+file is returned.\n+\n+If the cache file has expired but cgit is unable to obtain a lock for it, the\n+stale cache file is returned to the client. This is done to favour page\n+throughput over page freshness.\n+\n+The generated content contains the complete response to the client, including\n+the HTTP headers `Modified` and `Expires`.\n+\n+Online presence\n+---------------\n+\n+* The cgit homepage is hosted by cgit at \u003chttps://git.zx2c4.com/cgit/about/\u003e\n+\n+* Patches, bug reports, discussions and support should go to the cgit\n+ mailing list: \u003ccgit@lists.zx2c4.com\u003e. To sign up, visit\n+ \u003chttps://lists.zx2c4.com/mailman/listinfo/cgit\u003e\n","s":{"c":1745907529,"u": 1676}} ],"g": 3079,"chitpc": 0,"ehitpc": 0,"indexed":0 , "ab": 0, "si": 0, "db":0, "di":0, "sat":0, "lfc": "0000"}