Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add some notes about edit/delete functionality, etc |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9e80d1ff8a15704928273813b1257efb |
User & Date: | atomicules@lavabit.com 2012-12-20 12:14:20 |
Context
2012-12-28
| ||
12:35 | Use .netrc for storing API token check-in: bb5603e612 user: atomicules@lavabit.com tags: master, trunk | |
2012-12-20
| ||
12:14 | Add some notes about edit/delete functionality, etc check-in: 9e80d1ff8a user: atomicules@lavabit.com tags: master, trunk | |
00:09 | Remove done item from todo check-in: 7a09c1b2d3 user: atomicules@lavabit.com tags: master, trunk | |
Changes
Changes to README.markdown.
1 2 3 4 5 6 | # Pinboard Lua Script for ELinks Adds the following functionality to ELinks: - "ALT+p" Adds current page to Pinboard, with dialog box for description and tags - "ALT+l" Adds current page to Pinboard and marks as "Read Later" | | > > > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Pinboard Lua Script for ELinks Adds the following functionality to ELinks: - "ALT+p" Adds current page to Pinboard, with dialog box for description and tags - "ALT+l" Adds current page to Pinboard and marks as "Read Later" - Reformats the mobile site to be better for ELinks (Adds working edit/delete links) Javascript support in ELinks is a bit lacking (it's never worked well for me anyway) so it's not possible to use the Pinboard bookmarklets. Lua support in ELinks is much better, so this script does what the bookmarklets would do, but via lua. Since CSS support in ELinks is also a bit lacking - there's a lot of cruft on the Pinboard mobile sight in ELinks (stuff that's set as `display: none`, etc) - this script also cleans that up. The Pinboard edit and delete links won't work in ELinks because of javascript again, so this script generates replacement ones: Editing is done by "saving" the bookmark again, since the add page works fine; Deleting is done via the AP, since it is immediately destructive the delete link is only visible on the individual bookmark page, not when browsing through a list of bookmarks. ##Installation Source from your `~/.elinks/hooks.lua` file with `dofile("pinboard.lua")` If you want to be able to delete bookmarks on Pinboard then you need to add in your auth\_token to the `pinboard.lua` file ##Notes Developed and tested with ELinks 0.12pre5 and Lua 5.0 (both of which are well out of date, but if it works there it should work with if you are building from the repository master and using Lua 5.1, etc; and if it doesn't since you are clever enough to build yourself I'm sure you can adapt the scripts as necessary). ##Extras Rather than use Lua to hijack the goto\_url box, just add the following to `~/.elinks/elinks.conf` to search your Pinboard bookmarks using a `p` prefix: set protocol.rewrite.smart.p = "https://m.pinboard.in/search/?mine=1&query=%s" ##Todo - Considered always redirecting to mobile site, but conflicted with saving the actual bookmark, so not doing for now. - Tab sets would be cool, but don't think there is anyway to get list of open tabs via Lua interface? Perhaps read session snapshot from bookmarks file? Hmmm... but then still think I'd need a Pinboard API method to actually save them. |