summary refs log tree commit diff
Commit message (Expand)AuthorAge
...
* Switch back to gruvbox iTerm themeJune McEnroe2015-02-14
* Switch back to gruvbox vim themeJune McEnroe2015-02-14
* Prevent red first promptJune McEnroe2015-02-14
* New minimal zshrcJune McEnroe2015-02-14
* Use Hybrid colours in iTerm2June McEnroe2015-02-13
* New minimal vimrcJune McEnroe2015-02-13
* Add more bytes to randpasswd and use URL base64June McEnroe2015-01-16
* Add vim-signature pluginJune McEnroe2015-01-16
* Ignore .DS_StoreJune McEnroe2015-01-06
* Add Karabiner configurationJune McEnroe2015-01-06
* Add git rebase aliasesJune McEnroe2015-01-06
* Add vman alias for vim-supermanJune McEnroe2015-01-06
* Add vim-supermanJune McEnroe2015-01-06
* Add LimeLight to GoyoJune McEnroe2015-01-06
* Swap 0 and ^ in VimJune McEnroe2015-01-06
* Highlight columns 80, 100, 120June McEnroe2015-01-06
* Add iTerm2 to effuse exlcudeJune McEnroe2014-11-29
* Update README listJune McEnroe2014-11-29
* Remove unused configsJune McEnroe2014-11-29
* Add iTerm 2 configurationJune McEnroe2014-11-25
* Keep working directory in terminal titleJune McEnroe2014-11-25
* Add .pultrc to global gitignoreJune McEnroe2014-11-25
* Use gruvbox colorschemeJune McEnroe2014-11-25
* Remove multiple cursors pluginJune McEnroe2014-11-25
* Simplify C-n relative number toggleJune McEnroe2014-11-25
* Add Goyo.vimJune McEnroe2014-11-25
* Use ProFont 11 in VimJune McEnroe2014-11-25
* Add ~/.bin to the pathJune McEnroe2014-10-14
* Remove binJune McEnroe2014-10-14
* Remove backup option from vimrcJune McEnroe2014-10-12
* Update tunnel function for new domainJune McEnroe2014-10-12
* On error rollback in interactive psqlJune McEnroe2014-09-29
* Never mind thatJune McEnroe2014-09-23
* Add FETCH_COUNT and expanded auto to psqlrcJune McEnroe2014-09-23
* Silence psqlrc output and turn timing onJune McEnroe2014-09-23
* Add psqlrcJune McEnroe2014-09-19
* Wildcard ignore DS_StoreJune McEnroe2014-09-19
* Add randpasswd aliasJune McEnroe2014-08-11
* Add vim-exchangeJune McEnroe2014-07-15
* Add gf and gbl git aliasesJune McEnroe2014-07-14
* Add CSS Color pluginJune McEnroe2014-06-30
* Add Eunuch pluginJune McEnroe2014-06-30
* Switch to Hybrid colorschemeJune McEnroe2014-06-30
* Plugin cleanupJune McEnroe2014-06-30
* Add speeddatingJune McEnroe2014-06-30
* Add nrformats settingJune McEnroe2014-06-29
* Add multiple cursorsJune McEnroe2014-06-28
* Add indent guidesJune McEnroe2014-06-28
* Add delimitMateJune McEnroe2014-06-10
* Use ~ for home directory in gitconfigJune McEnroe2014-05-28
llow is not the default because outputting merges in follow mode is tricky ("git log --follow" will not show merges). We also disable the graph in follow mode because the commit graph is not simplified so we end up with frequent gaps in the graph and many lines that do not connect with any commits we're actually showing. We also teach the "diff" and "commit" UIs to respect the follow flag on URLs, causing the single-file version of these UIs to detect renames. This feature is needed only for commits that rename the path we're interested in. For commits before the file has been renamed (i.e. that appear later in the log list) we change the file path in the links from the log to point to the old name; this means that links to commits always limit by the path known to that commit. If we didn't do this we would need to walk down the log diff'ing every commit whenever we want to show a commit. The drawback is that the "Log" link in the top bar of such a page links to the log limited by the old name, so it will only show pre-rename commits. I consider this a reasonable trade-off since the "Back" button still works and the log matches the path displayed in the top bar. Since following renames requires running diff on every commit we consider, I've added a knob to the configuration file to globally enable/disable this feature. Note that we may consider a large number of commits the revision walking machinery no longer performs any path limitation so we have to examine every commit until we find a page full of commits that affect the target path or something related to it. Suggested-by: René Neumann <necoro@necoro.eu> Signed-off-by: John Keeping <john@keeping.me.uk> 2015-08-12shared: make cgit_diff_tree_cb publicJohn Keeping This will allow us to use this nice wrapper function elsewhere, avoiding dealing with the diff queue when we only need to inspect a filepair. Signed-off-by: John Keeping <john@keeping.me.uk> 2015-08-12t0110: Chain together using &&Jason A. Donenfeld 2015-08-12about: always ensure page has a trailing slashJason A. Donenfeld Otherwise we can't easily embed links to other /about/ pages. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2015-08-12filters: apply HTML escapingLazaros Koromilas http://www.w3.org/International/questions/qa-escapes#use 2015-08-12git: update to v2.5.0Christian Hesse Update to git version v2.5.0. * Upstream commit 5455ee0573a22bb793a7083d593ae1ace909cd4c (Merge branch 'bc/object-id') changed API: for_each_ref() callback functions were taught to name the objects not with "unsigned char sha1[20]" but with "struct object_id". * Upstream commit dcf692625ac569fefbe52269061230f4fde10e47 (path.c: make get_pathname() call sites return const char *) Signed-off-by: Christian Hesse <mail@eworm.de> 2015-08-12Fix processing of repo.hide and repo.ignoreDaniel Reichelt