Update copyright years
[muse-el.git] / lisp / muse-wiki.el
blobc551fbb48644ec31462ba1cce57aa739bcdc5294
1 ;;; muse-wiki.el --- wiki features for Muse
3 ;; Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
5 ;; Author: Yann Hodique <Yann.Hodique@lifl.fr>
6 ;; Keywords:
8 ;; This file is part of Emacs Muse. It is not part of GNU Emacs.
10 ;; Emacs Muse is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published
12 ;; by the Free Software Foundation; either version 2, or (at your
13 ;; option) any later version.
15 ;; Emacs Muse is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ;; General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with Emacs Muse; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
25 ;;; Commentary:
27 ;;; Contributors:
29 ;; Per B. Sederberg (per AT med DOT upenn DOT edu) made it so that all
30 ;; files in a Muse project can become implicit links.
32 ;;; Code:
34 (require 'muse-regexps)
35 (require 'muse-mode)
37 (eval-when-compile
38 (require 'muse-colors))
40 (defgroup muse-wiki nil
41 "Options controlling the behavior of Emacs Muse Wiki features."
42 :group 'muse-mode)
44 (defcustom muse-wiki-use-wikiword t
45 "Whether to use color and publish bare WikiNames."
46 :type 'boolean
47 :group 'muse-wiki)
49 (defcustom muse-wiki-allow-nonexistent-wikiword nil
50 "Whether to color bare WikiNames that don't have an existing file."
51 :type 'boolean
52 :group 'muse-wiki)
54 (defcustom muse-wiki-match-all-project-files nil
55 "If non-nil, Muse will color and publish implicit links to any
56 file in your project, regardless of whether its name is a WikiWord."
57 :type 'boolean
58 :group 'muse-wiki)
60 (defcustom muse-wiki-ignore-implicit-links-to-current-page nil
61 "If non-nil, Muse will not recognize implicit links to the current
62 page, both when formatting and publishing."
63 :type 'boolean
64 :group 'muse-wiki)
66 (defvar muse-wiki-project-file-regexp nil
67 "Regexp used to match the files in the current project.
69 This is set by `muse-wiki-update-project-file-regexp' automatically
70 when `muse-wiki-martch-all-project-files' is non-nil.")
71 (make-variable-buffer-local 'muse-wiki-project-file-regexp)
73 (defun muse-wiki-update-project-file-regexp ()
74 "Update a local copy of `muse-wiki-project-file-regexp' to include
75 all the files in the project."
76 ;; see if the user wants to match project files
77 (when muse-wiki-match-all-project-files
78 (let ((files (mapcar #'car (muse-project-file-alist (muse-project)))))
79 (setq muse-wiki-project-file-regexp
80 (when files
81 (concat "\\("
82 ;; include all files from the project
83 (regexp-opt files 'words)
84 "\\)"))))
85 ;; update coloring setup
86 (when (featurep 'muse-colors)
87 (muse-configure-highlighting
88 'muse-colors-markup muse-colors-markup))))
90 (add-hook 'muse-update-values-hook
91 'muse-wiki-update-project-file-regexp)
92 (add-hook 'muse-project-file-alist-hook
93 'muse-wiki-update-project-file-regexp)
95 (defcustom muse-wiki-wikiword-regexp
96 (concat "\\<\\(\\(?:[" muse-regexp-upper
97 "]+[" muse-regexp-lower "]+\\)\\(?:["
98 muse-regexp-upper "]+[" muse-regexp-lower "]+\\)+\\)")
99 "Regexp used to match WikiWords."
100 :set (function
101 (lambda (sym value)
102 (set sym value)
103 (when (featurep 'muse-colors)
104 (muse-configure-highlighting
105 'muse-colors-markup muse-colors-markup))))
106 :type 'regexp
107 :group 'muse-wiki)
109 (defcustom muse-wiki-ignore-bare-project-names nil
110 "Determine whether project names without a page specifer are links.
112 If non-nil, project names without a page specifier will not be
113 considered links.
115 When nil, project names without a specifier are highlighted and
116 they link to the default page of the project that they name."
117 :type 'boolean
118 :group 'muse-wiki)
120 (defvar muse-wiki-interwiki-regexp ""
121 "Regexp that matches all interwiki links.
123 This is automatically generated by setting `muse-wiki-interwiki-alist'.
124 It can also be set by calling `muse-wiki-update-interwiki-regexp'.")
126 (defcustom muse-wiki-interwiki-delimiter "#\\|::"
127 "Delimiter regexp used for InterWiki links.
129 If you use groups, use only shy groups."
130 :type 'regexp
131 :group 'muse-wiki)
133 (defcustom muse-wiki-interwiki-replacement ": "
134 "Regexp used for replacing `muse-wiki-interwiki-delimiter' in
135 InterWiki link descriptions.
137 If you want this replacement to happen, you must add
138 `muse-wiki-publish-pretty-interwiki' to
139 `muse-publish-desc-transforms'."
140 :type 'regexp
141 :group 'muse-wiki)
143 (eval-when-compile
144 (defvar muse-wiki-interwiki-alist))
146 (defun muse-wiki-project-files-with-spaces (&optional project)
147 "Return a list of files in PROJECT that have spaces."
148 (setq project (muse-project project))
149 (let ((flist nil))
150 (save-match-data
151 (mapcar (function (lambda (file)
152 (when (string-match " " (car file))
153 (setq flist (cons (car file) flist)))))
154 (muse-project-file-alist project)))
155 flist))
157 (defun muse-wiki-update-interwiki-regexp ()
158 "Update the value of `muse-wiki-interwiki-regexp' based on
159 `muse-wiki-interwiki-alist' and `muse-project-alist'."
160 (when muse-project-alist
161 (setq muse-wiki-interwiki-regexp
162 (concat "\\<\\(" (regexp-opt (mapcar #'car muse-project-alist))
163 (when muse-wiki-interwiki-alist
164 (let ((interwiki-rules (mapcar #'car
165 muse-wiki-interwiki-alist)))
166 (when interwiki-rules
167 (concat "\\|" (regexp-opt interwiki-rules)))))
168 "\\)\\(?:\\(" muse-wiki-interwiki-delimiter
169 "\\)\\("
170 (when muse-wiki-match-all-project-files
171 ;; append the files from the project
172 (let ((files nil))
173 (dolist (proj muse-project-alist)
174 (setq files
175 (nconc (muse-wiki-project-files-with-spaces
176 (car proj))
177 files)))
178 (when files
179 (concat (regexp-opt files) "\\|"))))
180 "\\sw+\\)\\(#\\S-+\\)?\\)?\\>"))
181 (when (featurep 'muse-colors)
182 (muse-configure-highlighting 'muse-colors-markup muse-colors-markup))))
184 (defcustom muse-wiki-interwiki-alist
185 '(("EmacsWiki" . "http://www.emacswiki.org/cgi-bin/wiki/"))
186 "A table of WikiNames that refer to external entities.
188 The format of this table is an alist, or series of cons cells.
189 Each cons cell must be of the form:
191 (WIKINAME . STRING-OR-FUNCTION)
193 The second part of the cons cell may either be a STRING, which in most
194 cases should be a URL, or a FUNCTION. If a function, it will be
195 called with one argument: the tag applied to the Interwiki name, or
196 nil if no tag was used. If the cdr was a STRING and a tag is used,
197 the tag is simply appended.
199 Here are some examples:
201 (\"JohnWiki\" . \"http://alice.dynodns.net/wiki?\")
203 Referring to [[JohnWiki::EmacsModules]] then really means:
205 http://alice.dynodns.net/wiki?EmacsModules
207 If a function is used for the replacement text, you can get creative
208 depending on what the tag is. Tags may contain any alphabetic
209 character, any number, % or _. If you need other special characters,
210 use % to specify the hex code, as in %2E. All browsers should support
211 this."
212 :type '(repeat (cons (string :tag "WikiName")
213 (choice (string :tag "URL") function)))
214 :set (function
215 (lambda (sym value)
216 (set sym value)
217 (muse-wiki-update-interwiki-regexp)))
218 :group 'muse-wiki)
220 (add-hook 'muse-update-values-hook
221 'muse-wiki-update-interwiki-regexp)
223 (defun muse-wiki-resolve-project-page (&optional project page)
224 "Return the published path from the current page to PAGE of PROJECT.
226 If PAGE is not specified, use the value of :default in PROJECT.
228 If PROJECT is not specified, default to first project of
229 `muse-projects-alist'.
231 Note that PAGE can have several output directories. If this is
232 the case, we will use the first one that matches our current
233 style and has the same link suffix, ignoring the others. If no
234 style has the same link suffix as the current publishing style,
235 use the first style we find."
236 (setq project (or (and project
237 (muse-project project))
238 (car muse-project-alist))
239 page (or page (muse-get-keyword :default
240 (cadr project))))
241 (let* ((page-path (muse-project-page-file page project))
242 (remote-styles (when page-path (muse-project-applicable-styles
243 page-path (cddr project))))
244 (local-style (muse-project-current-output-style)))
245 (cond ((and remote-styles local-style muse-publishing-p)
246 (muse-project-resolve-link page local-style remote-styles))
247 ((not muse-publishing-p)
248 (if page-path
249 page-path
250 (when muse-wiki-allow-nonexistent-wikiword
251 ;; make a path to a nonexistent file in project
252 (setq page-path (expand-file-name
253 page (car (cadr project))))
254 (if (and muse-file-extension
255 (not (string= muse-file-extension "")))
256 (concat page-path "." muse-file-extension)
257 page-path)))))))
259 (defun muse-wiki-handle-implicit-interwiki (&optional string)
260 "If STRING or point has an interwiki link, resolve it to a filename.
262 Match string 0 is set to the link."
263 (when (if string (string-match muse-wiki-interwiki-regexp string)
264 (looking-at muse-wiki-interwiki-regexp))
265 (let* ((project (match-string 1 string))
266 (subst (cdr (assoc project muse-wiki-interwiki-alist)))
267 (word (match-string 3 string))
268 (anchor (if (match-beginning 4)
269 (match-string 4 string)
270 "")))
271 (if subst
272 (if (functionp subst)
273 (and (setq word (funcall subst word))
274 (concat word anchor))
275 (concat subst word anchor))
276 (and (assoc project muse-project-alist)
277 (or word (not muse-wiki-ignore-bare-project-names))
278 (setq word (muse-wiki-resolve-project-page project word))
279 (concat word anchor))))))
281 (defun muse-wiki-handle-explicit-interwiki (&optional string)
282 "If STRING or point has an interwiki link, resolve it to a filename."
283 (let ((right-pos (if string (length string) (match-end 1))))
284 (when (if string (string-match muse-wiki-interwiki-regexp string)
285 (looking-at muse-wiki-interwiki-regexp))
286 (let* ((project (match-string 1 string))
287 (subst (cdr (assoc project muse-wiki-interwiki-alist)))
288 (anchor (and (match-beginning 4)
289 (match-string 4 string)))
290 (word (when (match-end 2)
291 (cond (anchor (match-string 3 string))
292 (string (substring string (match-end 2)))
293 (right-pos (buffer-substring (match-end 2)
294 right-pos))
295 (t nil)))))
296 (if (and (null word)
297 right-pos
298 (not (= right-pos (match-end 1))))
299 ;; if only a project name was found, it must take up the
300 ;; entire string or link
302 (unless anchor
303 (if (or (null word)
304 (not (string-match "#[^#]+\\'" word)))
305 (setq anchor "")
306 (setq anchor (match-string 0 word))
307 (setq word (substring word 0 (match-beginning 0)))))
308 (if subst
309 (if (functionp subst)
310 (and (setq word (funcall subst word))
311 (concat word anchor))
312 (concat subst word anchor))
313 (and (assoc project muse-project-alist)
314 (or word (not muse-wiki-ignore-bare-project-names))
315 (setq word (muse-wiki-resolve-project-page project word))
316 (concat word anchor))))))))
318 (defun muse-wiki-handle-wikiword (&optional string)
319 "If STRING or point has a WikiWord, return it.
321 Match 1 is set to the WikiWord."
322 (when (and (or (and muse-wiki-match-all-project-files
323 muse-wiki-project-file-regexp
324 (if string
325 (string-match muse-wiki-project-file-regexp string)
326 (looking-at muse-wiki-project-file-regexp)))
327 (and muse-wiki-use-wikiword
328 (if string
329 (string-match muse-wiki-wikiword-regexp string)
330 (looking-at muse-wiki-wikiword-regexp))))
331 (cond
332 (muse-wiki-allow-nonexistent-wikiword
334 ((and muse-wiki-ignore-implicit-links-to-current-page
335 (string= (match-string 1 string) (muse-page-name)))
336 nil)
337 ((and (muse-project-of-file)
338 (muse-project-page-file
339 (match-string 1 string) muse-current-project t))
341 ((file-exists-p (match-string 1 string))
343 (t nil)))
344 (match-string 1 string)))
346 ;;; Prettifications
348 (defcustom muse-wiki-publish-small-title-words
349 '("the" "and" "at" "on" "of" "for" "in" "an" "a")
350 "Strings that should be downcased in a page title.
352 This is used by `muse-wiki-publish-pretty-title', which must be
353 called manually."
354 :type '(repeat string)
355 :group 'muse-wiki)
357 (defcustom muse-wiki-hide-nop-tag t
358 "If non-nil, hide <nop> tags when coloring a Muse buffer."
359 :type 'boolean
360 :group 'muse-wiki)
362 (defun muse-wiki-publish-pretty-title (&optional title explicit)
363 "Return a pretty version of the given TITLE.
365 If EXPLICIT is non-nil, TITLE will be returned unmodified."
366 (unless title (setq title (or (muse-publishing-directive "title") "")))
367 (if (or explicit
368 (save-match-data (string-match muse-url-regexp title)))
369 title
370 (save-match-data
371 (let ((case-fold-search nil))
372 (while (string-match (concat "\\([" muse-regexp-lower
373 "]\\)\\([" muse-regexp-upper
374 "0-9]\\)")
375 title)
376 (setq title (replace-match "\\1 \\2" t nil title)))
377 (let* ((words (split-string title))
378 (w (cdr words)))
379 (while w
380 (if (member (downcase (car w))
381 muse-wiki-publish-small-title-words)
382 (setcar w (downcase (car w))))
383 (setq w (cdr w)))
384 (mapconcat 'identity words " "))))))
386 (defun muse-wiki-publish-pretty-interwiki (desc &optional explicit)
387 "Replace instances of `muse-wiki-interwiki-delimiter' with
388 `muse-wiki-interwiki-replacement'."
389 (if (or explicit
390 (save-match-data (string-match muse-url-regexp desc)))
391 desc
392 (muse-replace-regexp-in-string muse-wiki-interwiki-delimiter
393 muse-wiki-interwiki-replacement
394 desc)))
396 ;;; Coloring setup
398 (eval-after-load "muse-colors"
399 '(progn
400 (defun muse-wiki-colors-nop-tag (beg end)
401 (when muse-wiki-hide-nop-tag
402 (add-text-properties beg (+ beg 5)
403 '(invisible muse intangible t))))
404 (defun muse-colors-wikiword-separate ()
405 (add-text-properties (match-beginning 0) (match-end 0)
406 '(invisible muse intangible t)))
408 (add-to-list 'muse-colors-tags
409 '("nop" nil nil nil muse-wiki-colors-nop-tag)
412 (add-to-list 'muse-colors-markup
413 '(muse-wiki-interwiki-regexp t muse-colors-implicit-link)
415 (add-to-list 'muse-colors-markup
416 '(muse-wiki-wikiword-regexp t muse-colors-implicit-link)
418 (add-to-list 'muse-colors-markup
419 '(muse-wiki-project-file-regexp t muse-colors-implicit-link)
421 (add-to-list 'muse-colors-markup
422 '("''''" ?\' muse-colors-wikiword-separate)
423 nil)
425 (muse-configure-highlighting 'muse-colors-markup muse-colors-markup)))
427 ;;; Publishing setup
429 (eval-after-load "muse-publish"
430 '(progn
431 (add-to-list 'muse-publish-markup-regexps
432 '(3100 muse-wiki-interwiki-regexp 0 link)
434 (add-to-list 'muse-publish-markup-regexps
435 '(3200 muse-wiki-wikiword-regexp 0 link)
437 (add-to-list 'muse-publish-markup-regexps
438 '(3250 muse-wiki-project-file-regexp 0 link)
440 (add-to-list 'muse-publish-markup-regexps
441 '(3300 "''''" 0 "")
444 (custom-add-option 'muse-publish-desc-transforms
445 'muse-wiki-publish-pretty-interwiki)
446 (custom-add-option 'muse-publish-desc-transforms
447 'muse-wiki-publish-pretty-title)))
449 ;;; Insinuate link handling
451 (custom-add-option 'muse-implicit-link-functions
452 'muse-wiki-handle-implicit-interwiki)
453 (custom-add-option 'muse-implicit-link-functions
454 'muse-wiki-handle-wikiword)
456 (custom-add-option 'muse-explicit-link-functions
457 'muse-wiki-handle-explicit-interwiki)
459 (add-to-list 'muse-implicit-link-functions
460 'muse-wiki-handle-implicit-interwiki t)
461 (add-to-list 'muse-implicit-link-functions
462 'muse-wiki-handle-wikiword t)
464 (add-to-list 'muse-explicit-link-functions
465 'muse-wiki-handle-explicit-interwiki t)
467 ;;; Obsolete functions
469 (defun muse-wiki-update-custom-values ()
470 (muse-display-warning
471 (concat "Please remove `muse-wiki-update-custom-values' from"
472 " `muse-mode-hook'. Its use is now deprecated.")))
474 (provide 'muse-wiki)
475 ;;; muse-wiki.el ends here