Created
August 15, 2012 07:47
-
-
Save cvmat/3357444 to your computer and use it in GitHub Desktop.
Twittering-mode and org-mode integration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(org-add-link-type "twitter" 'twittering-org:open) | |
(add-hook 'org-store-link-functions 'twittering-org:store-link) | |
(defun twittering-org:open (id-str) | |
(twittering-visit-timeline (concat ":single/" id-str))) | |
(defun twittering-org:store-link () | |
"Store a link to a tweet." | |
(when (and (twittering-buffer-p) (twittering-get-id-at)) | |
(let ((status (twittering-find-status (twittering-get-id-at)))) | |
(apply 'org-store-link-props | |
:type "twitter" | |
:link (concat "twitter:" | |
(or (cdr (assq 'retweeting-id status)) | |
(cdr (assq 'id status)))) | |
:url (twittering-get-status-url-from-alist status) | |
:date | |
(format-time-string (org-time-stamp-format) | |
(cdr (assq 'created-at status))) | |
:date-timestamp | |
(format-time-string (org-time-stamp-format t) | |
(cdr (assq 'created-at status))) | |
(apply 'append | |
(mapcar | |
(lambda (sym) | |
(let ((name (symbol-name sym))) | |
`(,(intern (concat ":" name)) | |
,(or (cdr (assq sym status)) | |
(concat "[no " name "]"))))) | |
'(text | |
id | |
user-id user-name user-screen-name user-description | |
user-url user-loation | |
source source-url | |
retweeting-user-id retweeting-user-name | |
retweeting-user-screen-name | |
retweeting-user-description | |
retweeting-user-url | |
retweeting-user-location | |
retweeting-source retweeting-source-url))))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment