org-element: Handle multiple TBLFM keywords

* contrib/lisp/org-element.el (org-element-table-parser,
  org-element-table-interpreter): Handle multiple TBLFM keywords.
(org-element-collect-affiliated-keywords): Minor changes to
docstring.
* testing/lisp/test-org-element.el: Add test.
This commit is contained in:
Nicolas Goaziou 2012-05-11 15:17:14 +02:00
parent d308ea3172
commit d71464c0d3
2 changed files with 35 additions and 13 deletions

View File

@ -1584,9 +1584,11 @@ Assume point is at the beginning of the table."
(keywords (org-element-collect-affiliated-keywords)) (keywords (org-element-collect-affiliated-keywords))
(begin (car keywords)) (begin (car keywords))
(table-end (goto-char (marker-position (org-table-end t)))) (table-end (goto-char (marker-position (org-table-end t))))
(tblfm (when (looking-at "[ \t]*#\\+TBLFM: +\\(.*\\)[ \t]*$") (tblfm (let (acc)
(prog1 (org-match-string-no-properties 1) (while (looking-at "[ \t]*#\\+TBLFM: +\\(.*\\)[ \t]*$")
(forward-line)))) (push (org-match-string-no-properties 1) acc)
(forward-line))
acc))
(pos-before-blank (point)) (pos-before-blank (point))
(end (progn (org-skip-whitespace) (end (progn (org-skip-whitespace)
(if (eobp) (point) (point-at-bol))))) (if (eobp) (point) (point-at-bol)))))
@ -1614,8 +1616,9 @@ CONTENTS is nil."
(concat (with-temp-buffer (insert contents) (concat (with-temp-buffer (insert contents)
(org-table-align) (org-table-align)
(buffer-string)) (buffer-string))
(when (org-element-property :tblfm table) (mapconcat (lambda (fm) (concat "#+TBLFM: " fm))
(concat "#+TBLFM: " (org-element-property :tblfm table)))))) (reverse (org-element-property :tblfm table))
"\n"))))
;;;; Table Row ;;;; Table Row
@ -3197,12 +3200,12 @@ it's value will be a list of parsed strings. It defaults to
DUALS is a list of strings. Any keyword member of this list can DUALS is a list of strings. Any keyword member of this list can
have two parts: one mandatory and one optional. Its value is have two parts: one mandatory and one optional. Its value is
a cons cell whose car is the former, and the cdr the latter. If a cons cell whose CAR is the former, and the CDR the latter. If
a keyword is a member of both PARSED and DUALS, both values will a keyword is a member of both PARSED and DUALS, both values will
be parsed. It defaults to `org-element-dual-keywords'. be parsed. It defaults to `org-element-dual-keywords'.
Return a list whose car is the position at the first of them and Return a list whose CAR is the position at the first of them and
cdr a plist of keywords and values." CDR a plist of keywords and values."
(save-excursion (save-excursion
(let ((case-fold-search t) (let ((case-fold-search t)
(key-re (or key-re org-element--affiliated-re)) (key-re (or key-re org-element--affiliated-re))

View File

@ -1279,7 +1279,21 @@ Outside list"
"Test `table' parser." "Test `table' parser."
(should (should
(org-test-with-temp-text "| a |" (org-test-with-temp-text "| a |"
(org-element-map (org-element-parse-buffer) 'table 'identity)))) (org-element-map (org-element-parse-buffer) 'table 'identity)))
;; TBLFM keyword is case insensitive.
(should
(org-test-with-temp-text "| a |\n#+tblfm: test"
(org-element-property
:tblfm
(org-element-map (org-element-parse-buffer) 'table 'identity nil t))))
;; Handle multiple TBLFM lines.
(should
(= 2
(org-test-with-temp-text "| a |\n#+TBLFM: test1\n#+TBLFM: test2"
(length (org-element-property
:tblfm
(org-element-map
(org-element-parse-buffer) 'table 'identity nil t)))))))
;;;; Table Cell ;;;; Table Cell
@ -1293,7 +1307,7 @@ Outside list"
;;;; Table Row ;;;; Table Row
(ert-deftest test-org-element/table-parser () (ert-deftest test-org-element/table-row-parser ()
"Test `table-row' parser." "Test `table-row' parser."
(should (should
(equal '(standard rule) (equal '(standard rule)
@ -1702,18 +1716,23 @@ CLOSED: <2012-01-01> DEADLINE: <2012-01-01> SCHEDULED: <2012-01-01>\n"))))
;; 1. Simple table. ;; 1. Simple table.
(should (equal (org-test-parse-and-interpret "| a | b |\n| c | d |") (should (equal (org-test-parse-and-interpret "| a | b |\n| c | d |")
"| a | b |\n| c | d |\n")) "| a | b |\n| c | d |\n"))
;; 2. Table with horizontal rules. ;; 2. With horizontal rules.
(should (equal (org-test-parse-and-interpret (should (equal (org-test-parse-and-interpret
"| a | b |\n|---+---|\n| c | d |") "| a | b |\n|---+---|\n| c | d |")
"| a | b |\n|---+---|\n| c | d |\n")) "| a | b |\n|---+---|\n| c | d |\n"))
;; 3. Table with meta-data. ;; 3. With meta-data.
(should (equal (org-test-parse-and-interpret "| / | < | > |\n| * | 1 | 2 |") (should (equal (org-test-parse-and-interpret "| / | < | > |\n| * | 1 | 2 |")
"| / | < | > |\n| * | 1 | 2 |\n")) "| / | < | > |\n| * | 1 | 2 |\n"))
;; 4. With a formula. ;; 4. With a formula.
(should (should
(equal (org-test-parse-and-interpret (equal (org-test-parse-and-interpret
"| 2 |\n| 4 |\n| 3 |\n#+TBLFM: @3=vmean(@1..@2)") "| 2 |\n| 4 |\n| 3 |\n#+TBLFM: @3=vmean(@1..@2)")
"| 2 |\n| 4 |\n| 3 |\n#+TBLFM: @3=vmean(@1..@2)\n"))) "| 2 |\n| 4 |\n| 3 |\n#+TBLFM: @3=vmean(@1..@2)\n"))
;; 5. With multiple formulas.
(should
(equal (org-test-parse-and-interpret
"| 2 |\n| 4 |\n| 3 |\n#+TBLFM: test1\n#+TBLFM: test2")
"| 2 |\n| 4 |\n| 3 |\n#+TBLFM: test1\n#+TBLFM: test2\n")))
(ert-deftest test-org-element/verse-block-interpreter () (ert-deftest test-org-element/verse-block-interpreter ()
"Test verse block interpretation." "Test verse block interpretation."