summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
* Bump version v0.12Jason A. Donenfeld2016-01-141-1/+1
* ui-plain: add enable-html-serving flagJason A. Donenfeld2016-01-145-0/+29
* ui-blob: set CSP just in caseJason A. Donenfeld2016-01-141-0/+3
* ui-blob: always use generic mimetypesJason A. Donenfeld2016-01-141-6/+4
* ui-blob: Do not accept mimetype from userJason A. Donenfeld2016-01-143-4/+0
* ui-shared: prevent malicious filename from injecting headersJason A. Donenfeld2016-01-143-3/+32
* ui-shared: Avoid new line injection into redirect headerJason A. Donenfeld2016-01-141-1/+3
* Fix missing prototype declarationsPeter Colberg2016-01-146-15/+15
* ui-repolist: return HTTP 404 if no repositories foundPeter Colberg2016-01-131-3/+17
* ui-repolist: extract repo visibility criteria to separate functionPeter Colberg2016-01-131-3/+10
* Fix segmentation fault in hc()Lukas Fleischer2016-01-131-0/+3
* git: update to v2.7.0Christian Hesse2016-01-1313-26/+26
* ui-repolist: initialize char *buf to NULLChristian Hesse2016-01-131-1/+1
* filter: avoid integer overflow in authenticate_postJason A. Donenfeld2015-11-241-1/+1
* about-formatting.sh: comment text out of dateJason A. Donenfeld2015-11-121-1/+1
* filters: port syntax-highlighting.py to python 3.xChristian Hesse2015-10-121-10/+9
* md2html: the default of stdin works fineJason A. Donenfeld2015-10-121-2/+1
* filters: misc cleanupsJason A. Donenfeld2015-10-122-2/+1
* md2html: use pure pythonJason A. Donenfeld2015-10-121-6/+9
* cache: fix resource leak: close file handle before returnChristian Hesse2015-10-101-3/+9
* ui-atom: fix resource leak: free allocation from cgit_pageurlChristian Hesse2015-10-101-1/+4
* ui-atom: fix resource leak: free before returnChristian Hesse2015-10-101-1/+2
* ui-atom: fix resource leak: free allocation from cgit_repourlChristian Hesse2015-10-101-1/+3
* ui-blob: fix resource leak: free before returnChristian Hesse2015-10-101-0/+1
* ui-blob: fix resource leak: free before returnChristian Hesse2015-10-101-0/+1
* ui-plain: fix resource leak: free before assigning NULLChristian Hesse2015-10-091-1/+3
* ui-plain: fix resource leak: free before returnChristian Hesse2015-10-091-0/+1
* ui-repolist: fix resource leak: free allocation from cgit_currenturlChristian Hesse2015-10-091-1/+3
* ui-repolist: fix resource leak: free before returnChristian Hesse2015-10-091-1/+3
* filters: Simplify convertersJason A. Donenfeld2015-10-094-1734/+284
* ui-shared: fix resource leak: free allocation from cgit_hosturlChristian Hesse2015-10-091-2/+3
* ui-shared: return value of cgit_hosturl is not constChristian Hesse2015-10-092-4/+4
* cmd: fix resource leak: free allocation from cgit_currenturl and fmtallocChristian Hesse2015-10-091-3/+7
* ui-shared: fix resource leak: free allocation from cgit_currenturlChristian Hesse2015-10-091-3/+8
* ui-shared: return value of cgit_currenturl is not constChristian Hesse2015-10-092-3/+3
* ui-shared: fix resource leak: free allocation from cgit_fileurlChristian Hesse2015-10-091-5/+11
* ui-ssdiff: fix resource leak: free allocation from cgit_fileurlChristian Hesse2015-10-091-2/+6
* ui-tree: fix resource leak: free before returnChristian Hesse2015-10-091-0/+1
* Avoid use of non-reentrant functionsJason A. Donenfeld2015-10-091-3/+3
* Makefile: fix MAKEFLAGS tests with multiple flagsJohn Keeping2015-10-091-1/+1
* ui-refs: remove useless null checkJohn Keeping2015-10-091-1/+1
* ui-blob: remove useless null checkJohn Keeping2015-10-091-1/+1
* scan-tree: remove useless strdup()John Keeping2015-10-091-1/+1
* cgit.c: remove useless null checkJohn Keeping2015-10-091-1/+1
* git: update to v2.6.1Christian Hesse2015-10-062-1/+1
* mime: rewrite detection functionJason A. Donenfeld2015-08-171-36/+26
* ui-summary: send images plain for about pageChristian Hesse2015-08-171-2/+13
* refactor get_mimetype_from_file() to get_mimetype_for_filename()Christian Hesse2015-08-173-47/+40
* move get_mimetype_from_file() to sharedChristian Hesse2015-08-173-40/+42
* cmd: fix command definitionJohn Keeping2015-08-141-1/+1
* cmd: no need for pre function hook nowJason A. Donenfeld2015-08-143-20/+9
* ui-shared: cache errors for "dynamic TTL"John Keeping2015-08-141-0/+1
* cmd: remove "want_layout" fieldJohn Keeping2015-08-143-34/+24
* tree: move layout into page functionJohn Keeping2015-08-142-6/+19
* tag: move layout into page functionJohn Keeping2015-08-142-4/+11
* summary: move layout into page functionJohn Keeping2015-08-142-1/+3
* stats: move layout into page functionJohn Keeping2015-08-142-3/+7
* refs: move layout to page functionJohn Keeping2015-08-142-2/+3
* log: move layout into page functionJohn Keeping2015-08-142-2/+5
* diff: move layout to page functionJohn Keeping2015-08-142-6/+15
* commit: move layout into page functionJohn Keeping2015-08-142-3/+7
* about: move layout into page functionsJohn Keeping2015-08-143-4/+11
* ui-shared: add cgit_print_layout_{start,end}()John Keeping2015-08-142-0/+15
* html: remove html_status()John Keeping2015-08-142-8/+0
* snapshot: don't reimplement cgit_print_error_page()John Keeping2015-08-141-17/+4
* snapshot: use cgit_print_error_page() for HTTP status codesJohn Keeping2015-08-141-2/+4
* patch: use cgit_print_error_page() for HTTP status codesJohn Keeping2015-08-141-8/+8
* blob: use cgit_print_error_page() to add HTTP headersJohn Keeping2015-08-141-4/+8
* snapshot: use cgit_print_error_page() instead of html_status()John Keeping2015-08-141-1/+1
* plain: use cgit_print_error_page() instead of html_status()John Keeping2015-08-141-5/+5
* clone: use cgit_print_error_page() instead of html_status()John Keeping2015-08-141-5/+5
* cgit: use cgit_print_error_page() where appropriateJohn Keeping2015-08-141-20/+7
* ui-shared: add cgit_print_error_page() functionJohn Keeping2015-08-142-0/+16
* ui-patch: make sure to send http headersChristian Hesse2015-08-141-0/+4
* Makefile: make "git/config.mak.uname" inclusion optionalJohn Keeping2015-08-131-1/+1
* ui-shared: show full date in tooltip if longer ago than max_relativeJohn Keeping2015-08-131-0/+4
* ui-shared: use common function in print_rel_date()John Keeping2015-08-131-10/+1
* ui-shared: extract date formatting to a functionJohn Keeping2015-08-131-4/+9
* filter: don't use dlsym unnecessarilyJohn Keeping2015-08-131-36/+42
* ui-tree: use "sane" isgraph()John Keeping2015-08-132-1/+3
* cgit.h: move stdbool.h from ui-shared.hJohn Keeping2015-08-132-2/+2
* cache.c: fix header orderJohn Keeping2015-08-131-3/+3
* configfile.c: don't include system headers directlyJohn Keeping2015-08-131-2/+1
* Remove redundant includesJohn Keeping2015-08-136-16/+0
* Makefile: include Git's config.mak.unameJohn Keeping2015-08-131-0/+1
* tests: allow shell to be overriddenJohn Keeping2015-08-131-1/+5
* redirect: cleanlinessJason A. Donenfeld2015-08-131-2/+1
* redirect: be more careful for different cgi setupsJason A. Donenfeld2015-08-131-1/+4
* ui-log: fix double countingJohn Keeping2015-08-121-2/+2
* log: allow users to follow a fileJohn Keeping2015-08-1210-18/+194
* shared: make cgit_diff_tree_cb publicJohn Keeping2015-08-122-2/+5
* t0110: Chain together using &&Jason A. Donenfeld2015-08-121-8/+8
* about: always ensure page has a trailing slashJason A. Donenfeld2015-08-125-2/+26
* filters: apply HTML escapingLazaros Koromilas2015-08-121-1/+1
* git: update to v2.5.0Christian Hesse2015-08-128-14/+14
* Fix processing of repo.hide and repo.ignoreDaniel Reichelt2015-08-121-4/+4
* contrib/hooks: add sample post-receive hook using agefileJohn Keeping2015-08-121-0/+19
* git: update to v2.4.1Christian Hesse2015-05-142-1/+1
* ui-shared: allow remote refs in branch switcherChristian Hesse2015-03-181-0/+2
* git: update to v2.3.3Christian Hesse2015-03-142-1/+1
* Bump version v0.11.2Jason A. Donenfeld2015-03-131-1/+1
* Remove no-op link from submodule entriesLukas Fleischer2015-03-132-18/+25
* filters: Add sample gentoo scriptJason A. Donenfeld2015-03-131-0/+320
* cgit: remember to set up env vars before empty clone pathJason A. Donenfeld2015-03-091-0/+1
* ui-shared: currenturl should take into account leading slashJason A. Donenfeld2015-03-091-1/+5
* html: avoid using a plain integer as a NULL pointerJohn Keeping2015-03-091-22/+32
* cache: don't use an integer as a NULL pointerJohn Keeping2015-03-091-1/+1
* ui-shared: don't use an integer as a NULL pointerJohn Keeping2015-03-091-1/+1
* ui-shared: avoid initializing static variable to zeroJohn Keeping2015-03-091-1/+1
* ui-stats: make cgit_period definitions 'static const'John Keeping2015-03-092-8/+8
* ui-shared: make cgit_doctype 'static'John Keeping2015-03-091-1/+1
* ui-repolist: make sortcolumn definitions 'static const'John Keeping2015-03-091-2/+2
* ui-log: make some variables 'static'John Keeping2015-03-091-1/+1
* shared: make some variables 'static'John Keeping2015-03-091-2/+2
* scan-tree: make some variables 'static'John Keeping2015-03-091-2/+2
* Avoid signed bitfieldsJohn Keeping2015-03-092-3/+3
* Avoid non-ANSI function declarationsJohn Keeping2015-03-099-25/+25
* Makefile: add a target to run CGit through sparseJohn Keeping2015-03-092-1/+11
* git: update to v2.3.2Christian Hesse2015-03-072-1/+1
* Bump version v0.11.1Jason A. Donenfeld2015-03-051-1/+1
* Drop return value from parse_user()Lukas Fleischer2015-03-051-11/+7
* Remove leading newline characters from tag messagesLukas Fleischer2015-03-051-0/+3
* simple-authentication.lua: tie secure cookies to field namesJason A. Donenfeld2015-03-051-13/+21
* cgit: show clone URLs for empty repoJason A. Donenfeld2015-03-052-1/+17
* cache: use F_SETLK to avoid stale lock filesJohn Keeping2015-03-031-1/+14
* Make root handling sane again.Jason A. Donenfeld2015-03-033-14/+14
* ui-shared: Add current url helper function.Jason A. Donenfeld2015-03-033-4/+12
* ui-shared: keep filter repolist page in paginationJason A. Donenfeld2015-03-031-3/+3
* ui-repolist: use ctx.qry.url instead of rooturl, in case we're filteringJason A. Donenfeld2015-03-032-3/+3
* ui-repolist: use correct owner query linkJason A. Donenfeld2015-03-031-1/+1
* Simplify commit and tag parsingLukas Fleischer2015-03-031-71/+41
* git: update to v2.3.1Christian Hesse2015-03-032-1/+1
* Bump verison v0.11.0Jason A. Donenfeld2015-02-151-1/+1
* shrink cgit.png file sizeChristian Hesse2015-02-151-0/+0
* ui-clone.c: Fix off-by-one error in pack pathJason A. Donenfeld2015-02-091-5/+11
* ui-clone.c: Fix path checkLukas Fleischer2015-02-091-2/+2
* git: update for v2.3.0Christian Hesse2015-02-086-23/+19
* ui-shared.c: Refactor add_clone_urls()Lukas Fleischer2015-02-051-22/+10
* Add repo.hide and repo.ignoreLukas Fleischer2015-01-295-0/+23
* Add Etags for snapshotsJanus2015-01-281-0/+1
* tag: reference with "h" instead of "id"John Keeping2015-01-194-9/+8
* Return proper HTTP response when accessing info/Lukas Fleischer2015-01-151-1/+3
* git: update to v2.2.2Christian Hesse2015-01-132-1/+1
* ui-diff: don't link to single file diff statJohn Keeping2014-12-301-0/+10
* ui-patch: match git-format-patch(1) outputJohn Keeping2014-12-282-3/+4
* t0108: modernize styleJohn Keeping2014-12-281-10/+10
* Revert "git: use xz compressed archive for download"Jason A. Donenfeld2014-12-241-2/+2
* Use split_ident_line() in parse_user()Lukas Fleischer2014-12-241-28/+17
* footer: link back to cgit home pageJason A. Donenfeld2014-12-232-1/+8
* ui-shared: show absolute time in tooltip for relative datesJohn Keeping2014-12-231-12/+23
* git: use xz compressed archive for downloadChristian Hesse2014-12-231-2/+2
* match other common markdown file extensionsChris Burroughs2014-12-231-1/+1
* repolist: add owner-filterChris Burroughs2014-12-237-8/+64
* ui-shared: add rel-vcs microformat links to HTML headerJohn Keeping2014-12-231-0/+11
* ui-summary: add "rel='vcs-git'" to clone URL linksJohn Keeping2014-12-231-2/+4
* Extract clone URL printing to ui-shared.cJohn Keeping2014-12-233-46/+51
* Remove trailing slash after remove-suffixLukas Fleischer2014-12-231-3/+6
* git: update to v2.2.1Christian Hesse2014-12-235-7/+8
* filter: fix libravatar email-filter https issueChristian Hesse2014-12-131-1/+2
* ui-diff: add "stat only" diff typeJohn Keeping2014-12-132-1/+5
* Change "ss" diff flag to an enumJohn Keeping2014-12-134-14/+24
* ui-shared: remove toggle_ssdiff arg to cgit_diff_link()John Keeping2014-12-134-8/+8
* ui-shared: remove toggle_ssdiff arg to cgit_commit_link()John Keeping2014-12-135-13/+11
* git: update to v2.0.4John Keeping2014-08-072-1/+1
* Always check if README exists in choose_readme()Lukas Fleischer2014-08-071-6/+0
* cgitrc.5: we mean a cgi response, not requestJason A. Donenfeld2014-08-011-1/+1
* ui-stats.c: set parent pointer to NULL after freeing itJohn Keeping2014-07-281-0/+1
* git: update to v2.0.3John Keeping2014-07-286-9/+7
* parsing.c: make commit buffer constJohn Keeping2014-07-281-4/+4
* Bump version. v0.10.2Jason A. Donenfeld2014-06-301-1/+1
* remove debug fprinf() calls that sneaked in with commit 79c985Christian Hesse2014-06-291-4/+0
* git: update to 2.0.1Christian Hesse2014-06-282-1/+1
* ui-patch: Flush stdout after outputting dataJohn Keeping2014-06-281-0/+2
* ui-log: ignore unhandled argumentsJohn Keeping2014-06-281-3/+3
* git: update for git 2.0Christian Hesse2014-06-2812-36/+40
* remove trailing whitespaces from source filesChristian Hesse2014-04-176-24/+24
* git: update to 1.9.2Christian Hesse2014-04-122-1/+1
* Fix cgit_parse_url when a repo url is contained in another repo urlJulian Maurice2014-04-051-9/+14
* Makefile: use more reliable git tarball mirrorJason A. Donenfeld2014-03-201-1/+1
* git: update to 1.9.1Christian Hesse2014-03-202-1/+1
* filter: add libravatar email-filter lua scriptChristian Hesse2014-03-131-0/+26
* Bump version. v0.10.1Jason A. Donenfeld2014-02-281-1/+1
* ui-refs: simplify cmp_age logicJason A. Donenfeld2014-02-261-11/+3
* Remove unused parameter from cgit_print_snapshot()Lukas Fleischer2014-02-213-3/+3
* print download link for reference string length == 1Christian Hesse2014-02-211-1/+1
* Clean up cache documentation.Jason A. Donenfeld2014-02-211-22/+25
* Skip cache slot when time-to-live is zeroLukas Fleischer2014-02-212-9/+15
* git: Update to 1.9.0Lukas Fleischer2014-02-212-1/+1
* Makefile: suppress pkg-config errorJason A. Donenfeld2014-02-201-1/+1
* Add a cache-snapshot-ttl configuration variableLukas Fleischer2014-02-203-0/+12
* diffstat: do not rely on uninitialized dataJason A. Donenfeld2014-02-201-0/+1
* gen-version.sh: check if git is available before trying to call itFabien C2014-02-051-1/+1
* simple-authentication: styleJason A. Donenfeld2014-01-231-1/+1
* makefile: use LUA_PKGCONFIG to set Lua implementationNatanael Copa2014-01-222-31/+16
* tests: only do lua tests if lua is compiled-inJason A. Donenfeld2014-01-202-2/+17
* cgit: add --version argument for printing infoJason A. Donenfeld2014-01-201-0/+17
* cache: use sendfile() instead of a pair of read() + write()Sebastian Andrzej Siewior2014-01-193-1/+34
* README: document pkg-config for luajitJason A. Donenfeld2014-01-191-1/+1
* makefile: bump version v0.10Jason A. Donenfeld2014-01-171-1/+1
* mailmap: source before lighttpdJason A. Donenfeld2014-01-171-1/+1
* ui-shared: do not allow negative minutesJason A. Donenfeld2014-01-171-0/+2
* auth: document tweakables in lua scriptJason A. Donenfeld2014-01-171-0/+10
* repolist: make owner clickable to searchJason A. Donenfeld2014-01-171-0/+6
* ui-shared: move about tab all the way to the leftJason A. Donenfeld2014-01-171-4/+4
* filter: don't forget to reap the auth filterJason A. Donenfeld2014-01-171-0/+1
* cgit.c: free tmp variableJason A. Donenfeld2014-01-171-0/+1
* Switch to exclusively using global ctxLukas Fleischer2014-01-1719-441/+436
* auth: have cgit calculate login addressJason A. Donenfeld2014-01-166-10/+16
* auth: lua string comparisons are time invariantJason A. Donenfeld2014-01-161-2/+2
* authentication: use hidden form instead of refererJason A. Donenfeld2014-01-163-94/+131
* auth: add basic authentication filter frameworkJason A. Donenfeld2014-01-166-16/+387
* t0111: Additions and fixesLukas Fleischer2014-01-164-10/+10
* parsing.c: Remove leading space from committerLukas Fleischer2014-01-161-1/+1
* Add .mailmapLukas Fleischer2014-01-151-0/+10
* t0111: Add basic tests for Lua filtersLukas Fleischer2014-01-155-29/+56
* email-gravatar: fix html syntax issuesChristian Hesse2014-01-152-2/+2
* email-gravatar: do not scale icons upJason A. Donenfeld2014-01-142-2/+2
* filter: allow returning exit code from filterJason A. Donenfeld2014-01-143-6/+12
* tests/: Add t0111-filter.shLukas Fleischer2014-01-144-0/+57
* email-gravatar: fix html syntax issuesChristian Hesse2014-01-142-2/+2
* email-gravatar.py: fix UTF-8Christian Hesse2014-01-141-0/+4
* email-gravatar.lua: fix for lua 5.2Christian Hesse2014-01-141-1/+1
* makefile: only display lua message onceJason A. Donenfeld2014-01-141-8/+7
* README: document lua makefile flagsJason A. Donenfeld2014-01-141-0/+16
* cgitrc.5.txt: Fix documentation of the snapshot maskLukas Fleischer2014-01-141-6/+7
* makefile: auto-detect presence of various Lua, bsdJason A. Donenfeld2014-01-141-10/+37
* filter: style tweaksJason A. Donenfeld2014-01-141-11/+11
* filter: add page source to email filterJason A. Donenfeld2014-01-148-15/+21
* filter: add gravatar scriptsJason A. Donenfeld2014-01-142-0/+58
* filter: add support for email filterJason A. Donenfeld2014-01-149-2/+47
* filter: return on null filter from open and closeJason A. Donenfeld2014-01-144-22/+14
* filter: add lua supportJason A. Donenfeld2014-01-144-3/+235
* filter: basic write hooking infrastructureJason A. Donenfeld2014-01-144-23/+67
* filter: allow for cleanup hook for filter typesJason A. Donenfeld2014-01-143-27/+66
* filter: introduce "filter type" prefixJohn Keeping2014-01-142-2/+40
* filter: add interface layerJohn Keeping2014-01-143-22/+63
* filter: add fprintf_filter functionJohn Keeping2014-01-143-3/+9
* authors: specify maintainersJason A. Donenfeld2014-01-141-6/+13
* filters: Improved syntax-highlighting.pyStefan Tatschner2014-01-131-19/+33
* tests: add CGIT_TEST_OPTS variable to MakefileJohn Keeping2014-01-121-1/+1
* ui-repolist: HTML-escape cgit_rooturl() responseJohn Keeping2014-01-121-1/+3
* ui-shared: URL-escape script_nameJohn Keeping2014-01-121-2/+2
* ui-refs: escape HTML chars in author and tagger namesJohn Keeping2014-01-121-2/+2
* filter: pass extra arguments via cgit_open_filterJohn Keeping2014-01-125-30/+38
* ui-snapshot: set unused cgit_filter fields to zeroJohn Keeping2014-01-121-4/+4
* html: remove redundant htmlfd variableJohn Keeping2014-01-121-3/+1
* tests: add Valgrind supportJohn Keeping2014-01-122-1/+48
* cache: don't leave cache_slot fields uninitializedJohn Keeping2014-01-121-1/+1
* filter: split filter functions into their own fileJason A. Donenfeld2014-01-105-71/+90
* filter: make exit status localJason A. Donenfeld2014-01-102-4/+4