Mercurial > emacs
comparison lisp/org/org-jsinfo.el @ 97027:adc2dffbdfc3
2008-07-25 Carsten Dominik <dominik@science.uva.nl>
* org-publish.el (org-publish-file): Use the true name of the
file.
* org-jsinfo.el (org-infojs-handle-options): Use :style-extra
instead of :style.
* org-exp.el (org-export-plist-vars)
(org-export-add-options-to-plist): Handle creator setting flag.
(org-export-as-html): Handle attributes also for ftp and mailto
links.
* org-agenda.el (org-agenda-diary-entry)
(org-agenda-execute-calendar-command): Cater for the second
argument of `calendar-cursor-to-date'.
author | Carsten Dominik <dominik@science.uva.nl> |
---|---|
date | Fri, 25 Jul 2008 23:02:16 +0000 |
parents | 60149c696033 |
children | e1cc41b9282d |
comparison
equal
deleted
inserted
replaced
97026:aebbea50eef4 | 97027:adc2dffbdfc3 |
---|---|
3 ;; Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. | 3 ;; Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
4 | 4 |
5 ;; Author: Carsten Dominik <carsten at orgmode dot org> | 5 ;; Author: Carsten Dominik <carsten at orgmode dot org> |
6 ;; Keywords: outlines, hypermedia, calendar, wp | 6 ;; Keywords: outlines, hypermedia, calendar, wp |
7 ;; Homepage: http://orgmode.org | 7 ;; Homepage: http://orgmode.org |
8 ;; Version: 6.06a | 8 ;; Version: 6.06b |
9 ;; | 9 ;; |
10 ;; This file is part of GNU Emacs. | 10 ;; This file is part of GNU Emacs. |
11 ;; | 11 ;; |
12 ;; GNU Emacs is free software: you can redistribute it and/or modify | 12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
13 ;; it under the terms of the GNU General Public License as published by | 13 ;; it under the terms of the GNU General Public License as published by |
178 (when (and s (> (length s) 0)) | 178 (when (and s (> (length s) 0)) |
179 (and (string-match "%MANAGER_OPTIONS" template) | 179 (and (string-match "%MANAGER_OPTIONS" template) |
180 (setq s (replace-match s t t template)) | 180 (setq s (replace-match s t t template)) |
181 (setq exp-plist | 181 (setq exp-plist |
182 (plist-put | 182 (plist-put |
183 exp-plist :style | 183 exp-plist :style-extra |
184 (concat (or (plist-get exp-plist :style) "") "\n" s))))) | 184 (concat (or (plist-get exp-plist :style-extra) "") "\n" s))))) |
185 ;; This script absolutely needs the table of contents, to we change that | 185 ;; This script absolutely needs the table of contents, to we change that |
186 ;; setting | 186 ;; setting |
187 (if (not (plist-get exp-plist :table-of-contents)) | 187 (if (not (plist-get exp-plist :table-of-contents)) |
188 (setq exp-plist (plist-put exp-plist :table-of-contents t))) | 188 (setq exp-plist (plist-put exp-plist :table-of-contents t))) |
189 ;; Return the modified property list | 189 ;; Return the modified property list |