From 8dbf24a4ae052d0b5a7a200141bbbc40f06a84e2 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sat, 29 Mar 2025 22:27:11 +0000 Subject: Inhibit file name handlers when serving static files. * ennum.el (ennum-server-start)[httpd/]: Inhibit file name handlers when serving static files. --- ennum.el | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'ennum.el') diff --git a/ennum.el b/ennum.el index 530cae3..106aa9a 100644 --- a/ennum.el +++ b/ennum.el @@ -862,7 +862,13 @@ as keys. Keys are compared using `equal'." (httpd-error proc 404)) ;; If the requested file was found, serve it. ((= (httpd-status file-path) 200) - (httpd-serve-root proc httpd-root uri-path request)) + ;; Opening the file for serving can trigger file name + ;; handlers. Inhibit that. + (let ((inhibit-file-name-operation 'insert-file-contents) + (inhibit-file-name-handlers + (append ennum-inhibit-file-name-handlers + inhibit-file-name-handlers))) + (httpd-serve-root proc httpd-root uri-path request))) ;; Perhaps, this is a post or other HTML file that is being ;; requested. Try serving a file with a .html extension ;; appended. -- cgit v1.2.3