aboutsummaryrefslogtreecommitdiffstats
path: root/tekuti.el
Commit message (Collapse)AuthorAgeFilesLines
* Show error if STATUS isn't one of the accepted valuesGravatar Tom Willemse2023-12-071-0/+6
|
* Extract data parsing into separate functionGravatar Tom Willemse2023-12-071-9/+12
|
* Make sure that ‘tekuti-host’ doesn't end in a ‘/’Gravatar Tom Willemse2023-12-071-2/+6
| | | | | | | | | Tekuti gets real confused when a request is sent to https://tekuti.example.com//admin/new-post claiming that the host field is missing. From my logs: Throw to key `uri-error' with args `("Expected path not starting with \"//\" (no host): ~a" ("//admin/new-post"))'.
* Display a different message for an update rather than createGravatar Tom Willemse2023-12-071-6/+8
|
* Fix creating new postsGravatar Tom Willemse2023-04-121-1/+1
|
* Store and use the update path for a post once it's been ↵Gravatar Tom Willemse2023-04-121-2/+16
| | | | | | created This way I can keep sending the post to update it in place.
* Fix ‘pcase-exhaustive’ casesGravatar Tom Willemse2023-04-121-2/+2
| | | | | | There's more information in the ‘status’ variable than just what I extract. The ‘. ,_’ matches anything else into a discard pattern so that I'm only getting the data I need.
* Fix setting the comment status open/closedGravatar Tom Willemse2023-04-121-4/+4
|
* Fix reading the date and time publishedGravatar Tom Willemse2023-04-121-2/+1
| | | | | ‘org-timestamp-from-string’ doesn't read dates like “Wed, 12 Apr 2023 07:02:45 GMT”
* Add version headerGravatar Tom Willemse2022-03-231-0/+1
|
* Update metadata in org file after sendingGravatar Tom Willemse2021-06-241-3/+23
|
* Add defaults for the data from the org bufferGravatar Tom Willemse2021-06-241-21/+37
|
* Fix some warningsGravatar Tom Willemse2021-06-241-3/+6
| | | | | | | | - Add dependency on org-mode in case I ever install this as a package. - Require org for `org-collect-keywords', `org-timestamp-to-time', `org-timestamp-from-string', and `org-html-export-as-html'. - Move definition of `tekuti-host' to before it's used. - Rename `args' to `_' to signify it's not used for anything.
* Move date conversion into a functionGravatar Tom Willemse2021-06-241-11/+9
|
* Initial commitGravatar Tom Willemse2021-06-031-0/+93