about summary refs log tree commit diff
path: root/cgit.css (follow)
Commit message (Expand)AuthorAge
...
* Replace sidebar/logoLars Hjemli2008-04-12
* Use tables for page layoutLars Hjemli2007-11-16
* Fix html error detected by test-suiteLars Hjemli2007-11-11
* Minor css tweaksLars Hjemli2007-11-09
* Do not require javascript-enabled clientsLars Hjemli2007-11-03
* Fix typo in cssShunichi Fuji2007-11-03
* Change the cgit layoutLars Hjemli2007-10-30
* Teach log search about --grep, --author and --committerLars Hjemli2007-10-28
* Merge branch 'stable'Lars Hjemli2007-10-05
|\
| * correct typo in CSSMichael Krelin2007-10-05
* | cgit.css: make diff headers more visibleLars Hjemli2007-10-01
* | css: remove the annoying tr:hover rule for diffstatLars Hjemli2007-10-01
|/
* Add support for line number in url fragmentLars Hjemli2007-07-23
* css: adjust vertical-align of commit info th cellsMichael Krelin2007-07-18
* Change S/L/T to summary/log/treeLars Hjemli2007-06-18
* Add more menuitems on repo pagesLars Hjemli2007-06-18
* ui-tree: html/css cleanupLars Hjemli2007-06-17
* ui-tree: unify with ui-view, use path to select tree/blobLars Hjemli2007-06-16
* cgit.css: make it validateLars Hjemli2007-06-07
* Add repo.readme parameterLars Hjemli2007-05-23
* Add cgit_print_age() functionLars Hjemli2007-05-22
* css: make column headings boldLars Hjemli2007-05-21
* Make frontpage friendlierLars Hjemli2007-05-21
* Adjust apperance of repogroup headersLars Hjemli2007-05-20
* Teach cgit how to group repositories by categoryLars Hjemli2007-05-18
* Do not wrap filemode column in diffstat tableLars Hjemli2007-05-16
* Add link to commitdiff below diffstatLars Hjemli2007-05-16
* Use tables and css to create the diffstat graph, fix scalingLars Hjemli2007-05-15
* cgit.css: try to make diffs look a little bit nicerLars Hjemli2007-05-14
* cgit.css: try do make diffstat a little bit nicerLars Hjemli2007-05-14
* Add log filtering by path and link to it from tree viewLars Hjemli2007-05-14
* Add commitdiff between commit and each of it's parentLars Hjemli2007-05-13
* Add graphical diffstat to commit viewLars Hjemli2007-05-13
* css: fix bad rendering in Internet ExplorerLars Hjemli2007-05-12
* Add links to enable downloading of tagged blobsLars Hjemli2007-05-11
* Add submodule links in tree listingLars Hjemli2007-05-11
* Layout updateLars Hjemli2007-02-21
* Set explicit font sizeLars Hjemli2007-01-28
* Change global document layoutLars Hjemli2007-01-28
* Cleanup table listingsLars Hjemli2007-01-28
* Extend repo summary with tag listLars Hjemli2007-01-17
* Add generic support for search box in page headerLars Hjemli2006-12-28
* Minor style fixesLars Hjemli2006-12-22
* Only show first 80 characters of commit subject in log and summaryLars Hjemli2006-12-22
* Add basic diff viewLars Hjemli2006-12-20
* Use html_filemode in ui-tree.cLars Hjemli2006-12-17
* Show list of modified files in ui-commit.cLars Hjemli2006-12-17
* gitweb ripoff: set tr:hover to highligt current rowLars Hjemli2006-12-16
* Make repo header a link to summary pageLars Hjemli2006-12-16
* Add ui-commit.c + misc ui cleanupsLars Hjemli2006-12-16
='/cgit-pink/commit/parsing.c?id=d01a6eec4355af5266b114760c7264a2e6bf73fc&follow=1'>parsing: fix header typoJason A. Donenfeld 2014-01-10cgit.c: Fix comment on bit mask hackLukas Fleischer * Formatting and spelling fixes. * A bit mask with the size of one byte only allows for storing 8 (not 255!) different flags. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10cgit.c: Use "else" for mutually exclusive branchesLukas Fleischer When parsing command line arguments, no pair of command line options can ever match simultaneously. Use "else if" blocks to reflect this. This change improves both readability and speed. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10ui-snapshot.c: Do not reinvent suffixcmp()Lukas Fleischer Use suffixcmp() from Git instead of reimplementing it. This is a preparation for moving to ends_with() in Git 1.8.6. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10Refactor cgit_parse_snapshots_mask()Lukas Fleischer Use Git string lists instead of str{spn,cspn,ncmp}() magic. This significantly improves readability. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10Disallow use of undocumented snapshot delimitersLukas Fleischer Since the introduction of selective snapshot format configuration in dc3c9b5 (allow selective enabling of snapshots, 2007-07-21), we allowed seven different delimiters for snapshot formats, while the documentation has always been clear about spaces being the only valid delimiter: The value is a space-separated list of zero or more of the values "tar", "tar.gz", "tar.bz2", "tar.xz" and "zip". Supporting the undocumented delimiters makes the code unnecessarily complex. Remove them. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10Replace most uses of strncmp() with prefixcmp()Lukas Fleischer This is a preparation for replacing all prefix checks with either strip_prefix() or starts_with() when Git 1.8.6 is released. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-09README: Fix dependenciesLukas Fleischer * 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> 2014-01-08README: Spelling and formatting fixesLukas Fleischer * 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> 2014-01-08Fix UTF-8 with syntax-highlighting.pyPřemysl Janouch Previously the script tried to encode output from Pygments with the ASCII codec, which failed. Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Add a suggestion to the manpagePřemysl Janouch So that people wishing to use "enable-http-clone" don't have to find out the correct settings on their own. Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Fix the example configurationPřemysl Janouch "enable-git-clone" doesn't exist, replaced with "enable-http-clone". Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Fix about-formatting.shPřemysl Janouch dash failed to parse the script. Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Fix some spelling errorsPřemysl Janouch Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08filters: highlight.sh: add css comments for highlight 2.6 and 3.8Ferry Huberts