summary refs log tree commit diff
Commit message (Collapse)AuthorAge
* Add photos from September 5June McEnroe2024-09-19
| | | | | Had to prefix the folder number onto these file names manually because they must have come out of a different scanner or something.
* Add some more film stocks to the listJune McEnroe2024-09-15
|
* Add photos from September 2June McEnroe2024-09-13
|
* Add Fomapan 200 to films listJune McEnroe2024-09-13
|
* Add August 29 picnic photosJune McEnroe2024-09-10
|
* Apply some bold to trips renderingJune McEnroe2024-09-08
| | | | | This seems easier to visually scan. The only other thing I'd like is a nicer date rendering but JavaScript is useless for that.
* Render trips hopefully more efficientlyJune McEnroe2024-09-08
|
* Allow removing bodies and lensesJune McEnroe2024-09-08
|
* Limit body width so it looks less silly on desktopJune McEnroe2024-09-08
|
* Handle no film being loadedJune McEnroe2024-09-07
|
* Fancy up the text a littleJune McEnroe2024-09-07
|
* Add trips recorderJune McEnroe2024-09-07
|
* Add the REM station rollJune McEnroe2024-09-05
|
* Add photos from August 23June McEnroe2024-09-01
| | | | Note I renamed these because they were scanned in reverse order!
* Add photos from August 22June McEnroe2024-08-31
|
* Add first roll through Zenit-122June McEnroe2024-08-16
|
* Add ability to specify camera bodyJune McEnroe2024-08-16
|
* Add photos from August 2June McEnroe2024-08-14
|
* Add photos from July 30 (actually 29 evening)June McEnroe2024-08-13
|
* Add photos from July 29June McEnroe2024-08-09
|
* Add photos from July 27June McEnroe2024-08-08
|
* Add photos from July 14June McEnroe2024-07-26
|
* Add photos from July 9June McEnroe2024-07-16
|
* Add photos from July 6June McEnroe2024-07-15
|
* Add the end of the Harman Phoenix rollJune McEnroe2024-07-10
|
* Add photos from July 3, the hikeJune McEnroe2024-07-08
|
* Add photos from July 1June McEnroe2024-07-07
|
* Add photos from June 25-30June McEnroe2024-07-07
|
* Add photos from June 22 (and the few days after that)June McEnroe2024-06-30
|
* Accommodate lower-case .jpg filesJune McEnroe2024-06-30
|
* Add another BACKXWASH showJune McEnroe2024-06-23
| | | | It was good!
* Update bioJune McEnroe2024-06-16
|
* Add photo descriptions from June 12June McEnroe2024-06-15
|
* Add first roll of film from June 8June McEnroe2024-06-10
|
* Cope with not having an EXIF infoJune McEnroe2024-06-10
|
* Resize using target pixel counts for consistencyJune McEnroe2024-06-10
| | | | | This will resize film scans to about the same size as for the digital photos.
* Add The Girl Who Was Convinced...June McEnroe2024-06-10
| | | | Not much there. The illustrations are very nice though.
* Add photos from May 31June McEnroe2024-06-09
|
* Use monospace on photo pagesJune McEnroe2024-06-09
|
* Put lens and (future) film at the tops of photo pagesJune McEnroe2024-06-09
|
* Remove use of sysexits.hJune McEnroe2024-05-22
|
* Add photo descriptions from 05-03 and 05-06June McEnroe2024-05-22
|
* Fix = precedence in whenJune McEnroe2024-05-21
| | | | | Woops, = should have lowest precedence, otherwise expressions like a = b + c don't parse right.
* Add April 30 photoJune McEnroe2024-05-03
|
* Add April 20 photosJune McEnroe2024-05-03
| | | | Woops, forget to git.
* Add street lamp photoJune McEnroe2024-04-19
| | | | New lens!!!
* Add link to photosJune McEnroe2024-04-18
|
* Add 'www/photo.causal.agency/' from commit ↵June McEnroe2024-04-14
|\ | | | | | | | | | | | | | | '3e93e1c8c6c5a41d67ad63c6fd2624df67191d35' git-subtree-dir: www/photo.causal.agency git-subtree-mainline: 439ed525e5c6b979878b52675054643a5898f85e git-subtree-split: 3e93e1c8c6c5a41d67ad63c6fd2624df67191d35
| * Remove redundant headings from feedJune McEnroe2024-04-14
| |
| * Add atom feed generationJune McEnroe2024-04-14
| |
h is still correct, but perhaps the full explanation is interesting! Reported-by: Konstantin Ryabitsev <mricon@kernel.org> 2014-06-28ui-log: ignore unhandled argumentsJohn Keeping If you search for a bogus range string here: http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/log/ Using something like "range" and "qwerty123456", it returns an "Internal Server Error" and the following in the logs: > [Tue Jun 10 17:45:32 2014] [error] [client 172.21.1.6] fatal: > ambiguous argument 'qwerty123456': unknown revision or path not in the > working tree., referer: > http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/ > [Tue Jun 10 17:45:32 2014] [error] [client 172.21.1.6] Use '--' to > separate paths from revisions, like this:, referer: > http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/ > [Tue Jun 10 17:45:32 2014] [error] [client 172.21.1.6] 'git <command> > [<revision>...] -- [<file>...]', referer: > http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/ > [Tue Jun 10 17:45:32 2014] [error] [client 172.21.1.6] Premature end > of script headers: cgit, referer: > http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/ The cache will kick in, so if you search for the same string again, it'll show an empty range, so you have to change the bogus strings each time. This is because we just pass the arguments straight to Git's revision parsing machinery which die()s if it cannot parse an argument, printing the above to stderr and exiting. The patch below makes it a bit friendlier by just ignoring unhandled arguments, but I can't see an easy way to report errors when we can't parse revision arguments without losing the flexibility of supporting all of the revision specifiers supported by Git. Reported-by: Konstantin Ryabitsev <mricon@kernel.org> 2014-06-28git: update for git 2.0Christian Hesse prefixcmp() and suffixcmp() have been remove, functionality is now provided by starts_with() and ends_with(). Retrurn values have been changed, so instead of just renaming we have to fix logic. Everything else looks just fine. 2014-04-17remove trailing whitespaces from source filesChristian Hesse 2014-04-12git: update to 1.9.2Christian Hesse Everything works just bumping the version in Makefile and commit hash in submodule. No code changes required. 2014-04-05Fix cgit_parse_url when a repo url is contained in another repo urlJulian Maurice For example, if I have two repos (remove-suffix is enabled): /foo /foo/bar http://cgit/foo/bar/ is interpreted as "repository 'foo', command 'bar'" instead of "repository 'foo/bar'" 2014-03-20Makefile: use more reliable git tarball mirrorJason A. Donenfeld 2014-03-20git: update to 1.9.1Christian Hesse