summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-04-22improve documentationHiltjo Posthuma
- add example to README to extract gitweb.owner from a git config. this is used in gitweb and some cgit configurations. - fix (new) mandoc warnings (new sentence on each line). - improve some texts in the man pages, sort / structure some list items.
2017-04-17align line numbers to 8 spacesHiltjo Posthuma
... now it is done.
2017-04-17writeblobhtml: minor style fixHiltjo Posthuma
using len instead of the loop 'i' is slightly more clear
2017-04-17stagit: fix rendering of first TAB in fileHiltjo Posthuma
else TABs wont render properly (interpreted as part of HTML whitespace) at the first TAB of the line.
2017-04-17stagit-index: also dont assume someones <html lang> :)Hiltjo Posthuma
2017-04-17stagit-index: remove Content-Language: enHiltjo Posthuma
forgot to remove this from stagit-index aswell, see also: commit 9e96062b620088a42c7b345e07cc8c12e2b59ed2
2017-04-16writeblobhtml: fix possible uninitialized variable n when len == 0Hiltjo Posthuma
... whoops
2017-04-16writeblobhtml: improve file view for text-browsersHiltjo Posthuma
browsers such as lynx and w3m have some quirks displaying tables and pre elements. links is a bit better with this.
2017-04-16stagit-index: remove empty h1 and add bold markup to table headersHiltjo Posthuma
2017-04-16text-browser improvementsHiltjo Posthuma
for links, lynx, w3m, dil[dl]o etc: - set oldschool align attribute. - apply bold markup to table header.
2017-04-16README: advertise text-browser improvementsHiltjo Posthuma
2017-04-16LICENSE: bump yearHiltjo Posthuma
2017-04-15browser compatibility: use numeric entity for 'Hiltjo Posthuma
&apos; is a XHTML entity, browsers such as links, w3m, lynx and dillo don't support it.
2017-04-01writeblobhtml, make fprintf format string constHiltjo Posthuma
2017-03-25README: add instructions to build static binariesHiltjo Posthuma
2017-03-25Makefile: change () to {} consistentlyHiltjo Posthuma
reported by tarug0, thanks!
2017-03-12fix potential leak, found by clang-analyzerHiltjo Posthuma
2017-03-12fix memory leak of commitinfoHiltjo Posthuma
2017-03-12atom.xml: add newline before EOFHiltjo Posthuma
2017-03-12fix memory leak of commitinfo->parentHiltjo Posthuma
2017-03-12fix memory leak of blob objectHiltjo Posthuma
2017-03-12simplify/shorten pledge stubHiltjo Posthuma
2017-03-12reduce scope of repodir, remove unused branch parameterHiltjo Posthuma
2017-01-05bump version to 0.5Hiltjo Posthuma
2016-11-09also remove language and text direction attribute from <html>Hiltjo Posthuma
2016-11-09remove Content-Language: enHiltjo Posthuma
thanks Aymeric Mansoux!
2016-10-14stagit.1: also document linking to git submodules: .gitmodules fileHiltjo Posthuma
2016-10-13stagit.1: clarify README and LICENSE link creationHiltjo Posthuma
thanks Solene Rapenne for the patch! (slightly modified)
2016-09-15simplify example.sh, thanks emg for the suggestion!Hiltjo Posthuma
2016-07-20update LICENSEHiltjo Posthuma
2016-07-02config.mk: remove -lcHiltjo Posthuma
Thanks quinq! POSIX/quinq says: "In the absence of options that inhibit invocation of the link editor, such as -c or -E, the c99 utility shall cause the equivalent of a -l c option to be passed to the link editor after the last pathname operand or -l option, causing it to be searched after all other object files and libraries are loaded."
2016-05-29treat an empty repo (without a HEAD) as validHiltjo Posthuma
and create the standard files. Disable caching if there is no HEAD.
2016-05-29improve example: strip .git suffixHiltjo Posthuma
stagit-index and stagit strip the .git suffix so also strip it from the directory for the possible www root. Thanks to ng0 for reporting it!
2016-05-21refs_cmp: simplify check, functionally the sameHiltjo Posthuma
2016-05-08check if LICENSE, README and .gitmodules is a file blobHiltjo Posthuma
don't link to directory trees, etc. Thanks 600360 for reporting it!
2016-05-07release 0.4Hiltjo Posthuma
2016-05-07update TODOHiltjo Posthuma
2016-05-07simplify, id is unusedHiltjo Posthuma
2016-05-07simplify, no need for gotoHiltjo Posthuma
2016-05-07improve stagit.1 documentation, reword and explain caching behaviourHiltjo Posthuma
2016-05-07consistency for messages for special-case in diffstatHiltjo Posthuma
2016-05-07fix error in "code cleanup" commit 9328d2690e118127bcaa5cf9f665d8e7711f7a03Hiltjo Posthuma
... the loop was simplified, but forgot to remove p++ (double used) while rebasing the change.
2016-05-06fix and simplify time offsetHiltjo Posthuma
2016-05-06make diffstat files an anchor (jump to delta)Hiltjo Posthuma
2016-05-03fix joinpath(): use of global 'repodir', should be 'path'Hiltjo Posthuma
use joinpath for another case.
2016-05-03fix regression from last commitHiltjo Posthuma
2016-05-03code cleanupHiltjo Posthuma
2016-05-03remove config.h, add options to stagit.cHiltjo Posthuma
2016-05-03add OpenBSD pledge(2) support using -DUSE_PLEDGEHiltjo Posthuma
2016-05-02example.sh: use cache fileHiltjo Posthuma