2009-01-31 Carsten Dominik <dominik@science.uva.nl>

* org-agenda.el (org-agenda-dim-blocked-tasks): No tagging when
	only checking for blocks.

	* org-exp.el (org-export-html-footnotes-section): Make the div id consistent

	* org-export-latex.el (org-export-latex-classes): Remove
	paper size option from LaTeX classes.
This commit is contained in:
Carsten Dominik 2009-01-31 23:26:35 +00:00
parent ceaabbbde7
commit 72d06d8150
4 changed files with 15 additions and 4 deletions

View file

@ -1,3 +1,13 @@
2009-01-31 Carsten Dominik <dominik@science.uva.nl>
* org-agenda.el (org-agenda-dim-blocked-tasks): No tagging when
only checking for blocks.
* org-exp.el (org-export-html-footnotes-section): Make the div id consistent
* org-export-latex.el (org-export-latex-classes): Remove
paper size option from LaTeX classes.
2009-01-31 Carsten Dominik <carsten.dominik@gmail.com>
* org.el (org-enforce-todo-checkbox-dependencies): New option.

View file

@ -2186,6 +2186,7 @@ VALUE defaults to t."
(org-overlays-in (point-min) (point-max)))
(save-excursion
(let ((inhibit-read-only t)
(org-depend-tag-blocked nil)
(invis (eq org-agenda-dim-blocked-tasks 'invisible))
b e p ov h l)
(goto-char (point-min))

View file

@ -344,7 +344,7 @@ This option can also be set with the +OPTIONS line, e.g. \"f:nil\"."
(defcustom org-export-html-footnotes-section "<div id=\"footnotes\">
<h2 class=\"footnotes\">%s: </h2>
<div id=\"footnotes-text\">
<div id=\"text-footnotes\">
%s
</div>
</div>"

View file

@ -86,7 +86,7 @@
(defcustom org-export-latex-classes
'(("article"
"\\documentclass[11pt,a4paper]{article}
"\\documentclass[11pt]{article}
\\usepackage[utf8]{inputenc}
\\usepackage[T1]{fontenc}
\\usepackage{graphicx}
@ -98,7 +98,7 @@
("\\paragraph{%s}" . "\\paragraph*{%s}")
("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
("report"
"\\documentclass[11pt,a4paper]{report}
"\\documentclass[11pt]{report}
\\usepackage[utf8]{inputenc}
\\usepackage[T1]{fontenc}
\\usepackage{graphicx}
@ -110,7 +110,7 @@
("\\subsection{%s}" . "\\subsection*{%s}")
("\\subsubsection{%s}" . "\\subsubsection*{%s}"))
("book"
"\\documentclass[11pt,a4paper]{book}
"\\documentclass[11pt]{book}
\\usepackage[utf8]{inputenc}
\\usepackage[T1]{fontenc}
\\usepackage{graphicx}