-
Notifications
You must be signed in to change notification settings - Fork 10
/
howm-mkmenu.el
73 lines (67 loc) · 2.81 KB
/
howm-mkmenu.el
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
;;; howm-mkmenu.el --- Wiki-like note-taking tool
;;; Copyright (C) 2005-2024
;;; HIRAOKA Kazuyuki <kakkokakko@gmail.com>
;;;
;;; This program is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 1, or (at your option)
;;; any later version.
;;;
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; The GNU General Public License is available by anonymouse ftp from
;;; prep.ai.mit.edu in pub/gnu/COPYING. Alternately, you can write to
;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
;;; USA.
;;--------------------------------------------------------------------
;; emacs -q --no-site-file -batch -l <this file>
(defvar howm-mkmenu-rules
'(
;; (<var> <src> [<src-coding> <dest-coding>]) ==> <var>.el
(howm-menu-en "en/0000-00-00-000000.txt")
(howm-menu-fr "fr/0000-00-00-000000.txt" utf-8-unix utf-8-unix)
(howm-menu-ja "ja/0000-00-00-000000.txt" utf-8-unix utf-8-unix)
))
(defmacro howm-mkmenu-insert (&rest clauses)
(declare (indent 0))
(let ((commands (mapcar (lambda (c)
(let ((format (car c))
(parameters (cdr c)))
`(insert (format ,(concat format "\n")
,@parameters))))
clauses)))
`(progn ,@commands)))
(defun howm-mkmenu (rule)
(let ((var (car rule))
(src (cadr rule))
(opt (cddr rule)))
(let ((dest (concat (symbol-name var) ".el"))
(src-coding (and opt (car opt)))
(dest-coding (and opt (cadr opt))))
;; read src
(when (and src-coding (featurep 'mule))
(prefer-coding-system src-coding))
(with-temp-buffer
(insert-file-contents src)
(let ((str (buffer-substring-no-properties (point-min) (point-max))))
;; write to dest
(find-file dest)
(delete-region (point-min) (point-max))
(when dest-coding
(set-buffer-file-coding-system dest-coding)
(howm-mkmenu-insert
(";;; -*- Coding: %s -*-" dest-coding)))
(howm-mkmenu-insert
(";;; automatically generated from %s" src)
(";;; by %s.\n" (file-name-nondirectory load-file-name))
("(require 'howm-vars)\n")
("(howm-defconst-risky %s %S)\n" var str)
("(provide '%s)" var))
(let ((make-backup-files nil))
(basic-save-buffer))
t)))))
(mapcar #'howm-mkmenu howm-mkmenu-rules)
;;; howm-mkmenu.el ends here