Overview
Comment: | Fixed non-ASCII encoding issues |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
17bd3b26618a4f168c5bc44ac6e9b1c5 |
User & Date: | zge on 2020-06-05 20:45:31 |
Other Links: | branch diff | manifest | tags |
References
2020-06-05
| ||
21:47 | • New ticket [ed8a04be6b] Error is thrown when rendering some links. artifact: ba47e99903 user: zge | |
Context
2020-06-05
| ||
21:38 | Use Shift-JIS font for text if installed check-in: 5ffdf5dd20 user: zge tags: master, trunk | |
20:45 | Fixed non-ASCII encoding issues check-in: 17bd3b2661 user: zge tags: master, trunk | |
2020-05-31
| ||
15:58 | Extend code face over newlines check-in: 94c577ae4d user: zge tags: master, trunk | |
Changes
Modified sbbs.el from [40f6a50d8a] to [cec4081882].
︙ | ︙ | |||
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 | (dolist (o (overlays-at sbbs--last-spoiler)) (when (overlay-get o 'sbbs-uncover-p) (delete-overlay o))) (setq sbbs--last-spoiler nil)))) ;; URL.EL CALLBACKS (defun sbbs--board-loader (status buf) "Callback function for `url-retrieve' when loading board. Load results into buffer BUF. STATUS is used to check for errors." (when (buffer-live-p buf) (when (plist-get status :error) (error "Error while loading: %s" (cdr (plist-get status :error)))) | > > > > > > > > > > > > > > > > > > > > > > > > > > < > | 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 | (dolist (o (overlays-at sbbs--last-spoiler)) (when (overlay-get o 'sbbs-uncover-p) (delete-overlay o))) (setq sbbs--last-spoiler nil)))) ;; URL.EL CALLBACKS (defun sbbs--fix-encoding () "Convert the raw response after point to utf-8." (save-excursion ;; see http://textboard.org/prog/39/263 (set-buffer-multibyte nil) (while (search-forward-regexp ;; rx generates a multibyte string, that confuses ;; search-forward-regexp, therefore the regexp literal ;; here "[\x80-\xff]\\(\\(?:\\\\[0-7]\\{3\\}\\)+\\)" nil t) (let (new) (goto-char (match-beginning 1)) (while (< (point) (match-end 1)) (push (string-to-number (buffer-substring (+ (point) 1) (+ (point) 4)) 8) new) (forward-char 4)) (replace-match (apply #'string (nreverse new)) nil t nil 1)))) (set-buffer-multibyte t) (decode-coding-region (point) (point-max) 'utf-8)) (defun sbbs--board-loader (status buf) "Callback function for `url-retrieve' when loading board. Load results into buffer BUF. STATUS is used to check for errors." (when (buffer-live-p buf) (when (plist-get status :error) (error "Error while loading: %s" (cdr (plist-get status :error)))) (forward-paragraph) (sbbs--fix-encoding) (let ((list (read (current-buffer)))) (kill-buffer) (with-current-buffer buf (let (ent) (dolist (thread list) (push (list (car thread) (vector (substring (cdr (assq 'date (cdr thread))) |
︙ | ︙ | |||
375 376 377 378 379 380 381 | load. STATUS is used to check for errors." (when (buffer-live-p buf) (when (plist-get status :error) (error "Error while loading: %s" (cdr (plist-get status :error)))) (prog-mode) (forward-paragraph) | | | 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 | load. STATUS is used to check for errors." (when (buffer-live-p buf) (when (plist-get status :error) (error "Error while loading: %s" (cdr (plist-get status :error)))) (prog-mode) (forward-paragraph) (sbbs--fix-encoding) (save-excursion (save-match-data (while (search-forward "#f" nil t) (unless (cadddr (syntax-ppss)) (replace-match "nil"))))) (save-excursion (save-match-data |
︙ | ︙ |