-;;; elpher.el --- Full-featured gopher client.
+;;; elpher.el --- a friendly gopher client.
;; Copyright (C) 2019 Tim Vaughan
;;; Commentary:
-;; Elpher aims to provide a full-featured gopher client for GNU Emacs.
+;; Elpher aims to provide a practical gopher client for GNU Emacs.
;; It supports:
;; - intuitive keyboard and mouse-driven interface,
;; - pleasant and configurable colouring of Gopher directories,
;; - direct visualisation of image files,
;; - (m)enu key support, similar to Emacs' info browser,
-;; - clickable web and gopher links in plain text.
+;; - clickable web and gopher links in plain text,
+;; - a simple bookmark management system.
;; Visited pages are stored as a hierarchy rather than a linear history,
;; meaning that navigation between these pages is quick and easy.
(other ;; Unknown
(elpher-insert-margin (concat (char-to-string type) "?"))
(insert (propertize display-string
- 'face 'elpher-unknown-face)))))
+ 'face 'elpher-unknown)))))
(insert "\n")))
(defun elpher-click-link (button)
"Retrieve selector specified by ADDRESS, then execute AFTER.
The result is stored as a string in the variable ‘elpher-selector-string’."
(setq elpher-selector-string "")
- (make-network-process
- :name "elpher-process"
- :host (elpher-address-host address)
- :service (elpher-address-port address)
- :filter (lambda (proc string)
- (setq elpher-selector-string (concat elpher-selector-string string)))
- :sentinel after)
- (process-send-string "elpher-process"
- (concat (elpher-address-selector address) "\n")))
+ (condition-case nil
+ (progn
+ (make-network-process :name "elpher-process"
+ :host (elpher-address-host address)
+ :service (elpher-address-port address)
+ :filter (lambda (proc string)
+ (setq elpher-selector-string
+ (concat elpher-selector-string string)))
+ :sentinel after)
+ (process-send-string "elpher-process"
+ (concat (elpher-address-selector address) "\n")))
+ (error
+ (elpher-with-clean-buffer
+ (insert (propertize "\n---- ERROR -----\n\n" 'face 'error)
+ "Failed to connect to " (elpher-get-address-url address) ".\n"
+ (propertize "\n----------------\n\n" 'face 'error)
+ "Press 'u' to return to the previous page.")))))
;; Index retrieval
(insert content)
(elpher-restore-pos)))
(elpher-with-clean-buffer
- (insert "LOADING DIRECTORY..."))
+ (insert "LOADING DIRECTORY... (use 'u' to cancel)"))
(elpher-get-selector address
(lambda (proc event)
(unless (string-prefix-p "deleted" event)
(elpher-restore-pos)))
(progn
(elpher-with-clean-buffer
- (insert "LOADING TEXT..."))
+ (insert "LOADING TEXT... (use 'u' to cancel)"))
(elpher-get-selector address
(lambda (proc event)
(unless (string-prefix-p "deleted" event)
(if (display-images-p)
(progn
(elpher-with-clean-buffer
- (insert "LOADING IMAGE..."))
+ (insert "LOADING IMAGE... (use 'u' to cancel)"))
(elpher-get-selector address
(lambda (proc event)
(unless (string-prefix-p "deleted" event)
(elpher-address-port address))))
(setq aborted nil)
(elpher-with-clean-buffer
- (insert "LOADING RESULTS..."))
+ (insert "LOADING RESULTS... (use 'u' to cancel)"))
(elpher-get-selector search-address
(lambda (proc event)
(unless (string-prefix-p "deleted" event)
"Getter which retrieves the raw server response for the current node."
(let ((address (elpher-node-address elpher-current-node)))
(elpher-with-clean-buffer
- (insert "LOADING RAW SERVER RESPONSE..."))
+ (insert "LOADING RAW SERVER RESPONSE... (use 'u' to cancel)"))
(if address
(elpher-get-selector address
(lambda (proc event)
(elpher-address-port address))))
(insert "No bookmarks found.\n")))
(insert "\n-----------------------\n\n"
- "u: return to previous page.\n"
- "x: delete selected bookmark.\n"
- "a: rename selected bookmark.\n")
+ "- u: return to previous page\n"
+ "- x: delete selected bookmark\n"
+ "- a: rename selected bookmark\n\n"
+ "Bookmarks are stored in the file "
+ (locate-user-emacs-file "elpher-bookmarks"))
(elpher-restore-pos)))
Beware that this completely replaces the existing contents of the file."
(with-temp-file (locate-user-emacs-file "elpher-bookmarks")
(erase-buffer)
+ (insert "; Elpher gopher bookmarks file\n\n"
+ "; Bookmarks are stored as a list of (label (type selector host port))\n"
+ "; s-expressions, where type is stored as a character (i.e. 49 = ?1).\n"
+ "; Feel free to edit by hand, but ensure this structure remains intact.\n\n")
(pp bookmarks (current-buffer))))
(defun elpher-load-bookmarks ()
(defun elpher-bookmarks ()
"Visit bookmarks."
(interactive)
+ (switch-to-buffer "*elpher*")
(elpher-visit-node
(elpher-make-node "Bookmarks"
elpher-current-node