summary refs log tree commit diff
path: root/bin/dehtml.l (unfollow)
Commit message (Collapse)Author
2024-01-12Add static index for git.causal.agencyJune McEnroe
2024-01-01Bump template copyright years to 2024June McEnroe
2023-12-23Add Starling HouseJune McEnroe
Not totally satisfied with the ending, I suppose.
2023-11-28Replace catsit with kitdJune McEnroe
2023-11-28Link to lands quiz and alphabet rankingJune McEnroe
2023-11-28Remove levelerJune McEnroe
2023-11-14Declare for loop variablesJune McEnroe
2023-11-13Add Magic Lands QuizJune McEnroe
2023-10-10Highlight ksh scripts as shJune McEnroe
2023-09-22Add A Mirror MendedJune McEnroe
2023-09-17Set AddKeysToAgentJune McEnroe
2023-09-11Revert "Add git-import"June McEnroe
This reverts commit 90fefcaa0b70af49061d648ae3566d65abfc2ab0. Moved to jorts.
2023-09-11Add git-importJune McEnroe
2023-08-19Add A Spindle SplinteredJune McEnroe
Really good!!
2023-07-27Update style.css for new mandoc head/foot outputJune McEnroe
2023-07-27Add git forgive aliasJune McEnroe
2023-07-26Add first draft of a MTG game formatJune McEnroe
2023-07-20Replace monday with tuesdayJune McEnroe
2023-07-20Add The Sisters of Dorley ch. 1-15June McEnroe
2023-04-16Update copyright years in templatesJune McEnroe
2023-03-28Add NoorJune McEnroe
2023-02-04Add Remote ControlJune McEnroe
Didn't really go anywhere.
2023-01-13Add A Prayer for the Crown-ShyJune McEnroe
2022-12-21Publish "albums 2022"June McEnroe
2022-12-18Add LINGUA IGNOTA at SATJune McEnroe
2022-11-14Publish "Sound Memory"June McEnroe
2022-10-18Fix email filter once moreJune McEnroe
2022-10-18Reread Small Angry PlanetJune McEnroe
I didn't even have access to all my emotions the first time I read it...
2022-10-17Fix 3- and 4-byte UTF-8 sequence matchingJune McEnroe
lex(1) has weird regex precedence rules!
2022-10-05Fix same month, different day diffsJune McEnroe
This fixes it expressing a 355d difference, for example, as 1y -1m 20d. Just switching to <= would make it express 365d as 12m rather than 1y.
2022-09-30Update "Care" with more on electrolysisJune McEnroe
Also dunno why I was being coy about piercings this is my own blog and I talk about them all the damn time everywhere else.
2022-09-30Add alphabet ranking pageJune McEnroe
Did I need to spend even the small amount of time I spent on this? No.
2022-09-26Set wallpaper to a random colour escher knotJune McEnroe
2022-09-21Add Take Me ThereJune McEnroe
Best collection of short stories I've read by far. Good variety, most are quite short, and there are no bummers. The writing is also better than usual which is doubly surprising for erotic fiction, I think. Anyway the stories are super fun.
2022-09-19Add when - to print all named datesJune McEnroe
2022-09-19Publish ApologiesJune McEnroe
2022-09-19Do more "email" filteringJune McEnroe
2022-09-18Add gdbinit, hushlogin, inputrcJune McEnroe
:)
2022-09-18Remove some filesJune McEnroe
2022-09-18Remove doc/pdfJune McEnroe
Linkrot.
2022-09-11Reread A Closed and Common OrbitJune McEnroe
Book make me cry like a little baby. All time favourite.
2022-09-09Add I've Got a Time BombJune McEnroe
What a relief after 3 unbearably straight and awful books in a row. A wonderful mess.
2022-09-02Update "Care" with initial electrolysis reportJune McEnroe
2022-08-17Add The Book of Form and EmptinessJune McEnroe
There are some nice things in here that I would really like in any other book, but not this one.
2022-08-15Load dates from ~/.config/when/datesJune McEnroe
2022-08-15Allow names with prefixes of months and daysJune McEnroe
2022-08-15Add named dates to whenJune McEnroe
2022-08-14Remove tweets text fileJune McEnroe
Such link rot.
2022-08-04Add Conversations With FriendsJune McEnroe
The better of the two, but largely the same. I feel like these books are a bit too autobiographical, but I don't know if I'm allowed to accuse an author of that. My real problem is that I read these books as largely uncritical of their characters. They behave in nonsense ways, are mostly uncritical of their own behaviour, and don't really have arcs of growth or change. I suppose this book had a bit of one, but only in the last two chapters.
2022-07-30Add Normal PeopleJune McEnroe
Unbearably straight. Eyerolls and sighs per page off the charts. Shout out to Joanna, I guess. I kinda like the lack of quotation marks though to be honest. After half of the Ruth Ozeki novel and now this, I need to get back to some genre fiction.
way as "git log --follow", when given a suitable instruction by the user. The default behaviour remains to show the log without following renames, but the follow behaviour can be activated by following a link in the page header. Follow 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