summary refs log tree commit diff
Commit message (Expand)AuthorAge
...
* Revert "Set tmux prefix back to E (J in Tarmak 1)"June McEnroe2017-06-16
* Set tmux prefix back to E (J in Tarmak 1)June McEnroe2017-06-16
* Color Search foregroundJune McEnroe2017-06-15
* Enable syntax foldingJune McEnroe2017-06-15
* Set Folded highlight in trivialJune McEnroe2017-06-15
* Fix install scriptJune McEnroe2017-06-12
* Add untested install scriptJune McEnroe2017-06-10
* Add .hushloginJune McEnroe2017-06-10
* Rename install.sh to link.shJune McEnroe2017-06-10
* Clean up READMEJune McEnroe2017-06-10
* Move files to one files directoryJune McEnroe2017-06-10
* Move console.sh to linux directoryJune McEnroe2017-06-10
* Move iTerm configuration into a directoryJune McEnroe2017-06-10
* Remove Karabiner config and move key layoutsJune McEnroe2017-06-10
* Move actual dotfiles into curtis directoryJune McEnroe2017-06-10
* Remove Programming keyboard layoutJune McEnroe2017-06-10
* Add Code Tarmak 1 layoutJune McEnroe2017-06-09
* Remap keys in vim for Tarmak 1 more sensiblyJune McEnroe2017-06-09
* Add iTerm light profile and disable hotkeyJune McEnroe2017-06-07
* Remap C-w {n,e} in vim for Tarmak 1June McEnroe2017-06-07
* Rebind hnel in vim for Tarmak 1June McEnroe2017-06-06
* Use C-space as tmux prefixJune McEnroe2017-06-06
* Add Tarmak layoutsJune McEnroe2017-06-06
* Rename keyboard layout ProgrammingJune McEnroe2017-05-26
* Fix Library install conditionJune McEnroe2017-05-25
* Revert "Remove macOS keyboard layout"June McEnroe2017-05-25
* Fix copy mode bindings for tmux 2.4June McEnroe2017-05-08
* Remove option unnecessary in nvim 0.2June McEnroe2017-05-02
* Reorder lines in psqlrcJune McEnroe2017-05-01
* Clean up Karabiner configurationJune McEnroe2017-05-01
* Fix prune script loopJune McEnroe2017-05-01
* Fix prune scriptJune McEnroe2017-05-01
* Clean up SSH configJune McEnroe2017-05-01
* Rename colorscheme "trivial"June McEnroe2017-05-01
* Update vendored pathogenJune McEnroe2017-05-01
* Clean up git configJune McEnroe2017-05-01
* Clean up style in xxJune McEnroe2017-05-01
* Clean up style in pbdJune McEnroe2017-05-01
* Use EX_OK in pbcopyJune McEnroe2017-05-01
* Clean up clockJune McEnroe2017-04-30
* Clean up error strings in briJune McEnroe2017-04-30
* Add -u option to xxJune McEnroe2017-03-18
* Fix non-string-literal-format-string in briJune McEnroe2017-03-15
* Fix bri compilationJune McEnroe2017-03-15
* Use psvar for title settingJune McEnroe2017-03-15
* Add bri brightness control scriptJune McEnroe2017-03-14
* Add comment to tmux terminal overrideJune McEnroe2017-03-14
* Have tmux set block cursor on linux consoleJune McEnroe2017-03-13
* Use inverse for Visual in colorschemeJune McEnroe2017-03-13
* Add console color palette scriptJune McEnroe2017-03-12
'logsubject'>Add ui-commit.c + misc ui cleanupsLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-15Add a common commit parserLars Hjemli Make a better commit parser, replacing the ugly one in ui-log.c Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-14Add simple pager to log pageLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-13Add separate makefile-rule to clear current cacheLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-13Remove implementation details from READMELars Hjemli Let README describe the "bigger picture" instead. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-13Small layout adjustments to summary and blob viewLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-13Add display of tree content w/ui-tree.cLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-12cache_lock: do xstrdup/free on lockfileLars Hjemli Since fmt() uses 8 alternating static buffers, and cache_lock might call cache_create_dirs() multiple times, which in turn might call fmt() twice, after four iterations lockfile would be overwritten by a cachedirectory path. In worst case, this could cause the cachedirectory to be unlinked and replaced by a cachefile. Fix: use xstrdup() on the result from fmt() before assigning to lockfile, and call free(lockfile) before exit. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Don't truncate valid cachefilesLars Hjemli An embarrassing thinko in cgit_check_cache() would truncate valid cachefiles in the following situation: 1) process A notices a missing/expired cachefile 2) process B gets scheduled, locks, fills and unlocks the cachefile 3) process A gets scheduled, locks the cachefile, notices that the cachefile now exist/is not expired anymore, and continues to overwrite it with an empty lockfile. Thanks to Linus for noticing (again). Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Move global variables + callback functions into shared.cLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Move functions for generic object output into ui-view.cLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Move log-functions into ui-log.cLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Move repo summary functions into ui-summary.cLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Move functions for repolist output into ui-repolist.cLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Move common output-functions into ui-shared.cLars Hjemli While at it, replace the cgit_[lib_]error constants with a proper function Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Rename config.c to parsing.c + move cgit_parse_query from cgit.c to parsing.cLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Avoid infinite loops in caching layerLars Hjemli Add a global variable, cgit_max_lock_attemps, to avoid the possibility of infinite loops when failing to acquire a lockfile. This could happen on broken setups or under crazy server load. Incidentally, this also fixes a lurking bug in cache_lock() where an uninitialized returnvalue was used. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Let 'make install' clear all cachefilesLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Fix cache algorithm loopholeLars Hjemli This closes the door for unneccessary calls to cgit_fill_cache(). Noticed by Linus. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-10Add version identifier in generated filesLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-10Add license file and copyright noticesLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-10Add caching infrastructureLars Hjemli