2009-09-02 04:37:10 +00:00
|
|
|
;;; semantic/html.el --- Semantic details for html files
|
2009-08-29 19:00:35 +00:00
|
|
|
|
2014-01-01 07:43:34 +00:00
|
|
|
;; Copyright (C) 2004-2005, 2007-2014 Free Software Foundation, Inc.
|
2009-08-29 19:00:35 +00:00
|
|
|
|
|
|
|
;; Author: Eric M. Ludlam <zappo@gnu.org>
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs 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 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs 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.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;;
|
|
|
|
;; Parse HTML files and organize them in a nice way.
|
|
|
|
;; Pay attention to anchors, including them in the tag list.
|
|
|
|
;;
|
|
|
|
;; Copied from the original semantic-texi.el.
|
|
|
|
;;
|
|
|
|
;; ToDo: Find <script> tags, and parse the contents in other
|
|
|
|
;; parsers, such as javascript, php, shtml, or others.
|
|
|
|
|
2009-09-28 15:15:00 +00:00
|
|
|
;;; Code:
|
|
|
|
|
2009-08-29 19:00:35 +00:00
|
|
|
(require 'semantic)
|
|
|
|
(require 'semantic/format)
|
2009-09-28 15:15:00 +00:00
|
|
|
(require 'sgml-mode)
|
2009-08-29 19:00:35 +00:00
|
|
|
|
2009-09-28 15:15:00 +00:00
|
|
|
(defvar semantic-command-separation-character)
|
2009-08-29 19:00:35 +00:00
|
|
|
|
|
|
|
(defvar semantic-html-super-regex
|
|
|
|
"<\\(h[1-9]\\|title\\|script\\|body\\|a +href\\)\\>"
|
|
|
|
"Regular expression used to find special sections in an HTML file.")
|
|
|
|
|
|
|
|
(defvar semantic-html-section-list
|
|
|
|
'(("title" 1)
|
|
|
|
("script" 1)
|
|
|
|
("body" 1)
|
|
|
|
("a" 11)
|
|
|
|
("h1" 2)
|
|
|
|
("h2" 3)
|
|
|
|
("h3" 4)
|
|
|
|
("h4" 5)
|
|
|
|
("h5" 6)
|
|
|
|
("h6" 7)
|
|
|
|
("h7" 8)
|
|
|
|
("h8" 9)
|
|
|
|
("h9" 10)
|
|
|
|
)
|
|
|
|
"Alist of sectioning commands and their relative level.")
|
|
|
|
|
|
|
|
(define-mode-local-override semantic-parse-region
|
|
|
|
html-mode (&rest ignore)
|
|
|
|
"Parse the current html buffer for semantic tags.
|
2011-11-13 07:48:23 +00:00
|
|
|
IGNORE any arguments. Always parse the whole buffer.
|
2009-08-29 19:00:35 +00:00
|
|
|
Each tag returned is of the form:
|
|
|
|
(\"NAME\" section (:members CHILDREN))
|
|
|
|
or
|
|
|
|
(\"NAME\" anchor)"
|
|
|
|
(mapcar 'semantic-html-expand-tag
|
|
|
|
(semantic-html-parse-headings)))
|
|
|
|
|
|
|
|
(define-mode-local-override semantic-parse-changes
|
|
|
|
html-mode ()
|
|
|
|
"We can't parse changes for HTML mode right now."
|
|
|
|
(semantic-parse-tree-set-needs-rebuild))
|
|
|
|
|
|
|
|
(defun semantic-html-expand-tag (tag)
|
|
|
|
"Expand the HTML tag TAG."
|
|
|
|
(let ((chil (semantic-html-components tag)))
|
|
|
|
(if chil
|
|
|
|
(semantic-tag-put-attribute
|
|
|
|
tag :members (mapcar 'semantic-html-expand-tag chil)))
|
|
|
|
(car (semantic--tag-expand tag))))
|
|
|
|
|
|
|
|
(defun semantic-html-components (tag)
|
|
|
|
"Return components belonging to TAG."
|
|
|
|
(semantic-tag-get-attribute tag :members))
|
|
|
|
|
|
|
|
(defun semantic-html-parse-headings ()
|
|
|
|
"Parse the current html buffer for all semantic tags."
|
|
|
|
(let ((pass1 nil))
|
|
|
|
;; First search and snarf.
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
|
|
|
(let ((semantic--progress-reporter
|
|
|
|
(make-progress-reporter
|
|
|
|
(format "Parsing %s..."
|
|
|
|
(file-name-nondirectory buffer-file-name))
|
|
|
|
(point-min) (point-max))))
|
|
|
|
(while (re-search-forward semantic-html-super-regex nil t)
|
|
|
|
(setq pass1 (cons (match-beginning 0) pass1))
|
|
|
|
(progress-reporter-update semantic--progress-reporter (point)))
|
|
|
|
(progress-reporter-done semantic--progress-reporter)))
|
|
|
|
|
|
|
|
(setq pass1 (nreverse pass1))
|
|
|
|
;; Now, make some tags while creating a set of children.
|
|
|
|
(car (semantic-html-recursive-combobulate-list pass1 0))
|
|
|
|
))
|
|
|
|
|
|
|
|
(defun semantic-html-set-endpoint (metataglist pnt)
|
|
|
|
"Set the end point of the first section tag in METATAGLIST to PNT.
|
|
|
|
METATAGLIST is a list of tags in the intermediate tag format used by the
|
|
|
|
html parser. PNT is the new point to set."
|
|
|
|
(let ((metatag nil))
|
|
|
|
(while (and metataglist
|
|
|
|
(not (eq (semantic-tag-class (car metataglist)) 'section)))
|
|
|
|
(setq metataglist (cdr metataglist)))
|
|
|
|
(setq metatag (car metataglist))
|
|
|
|
(when metatag
|
|
|
|
(setcar (nthcdr (1- (length metatag)) metatag) pnt)
|
|
|
|
metatag)))
|
|
|
|
|
|
|
|
(defsubst semantic-html-new-section-tag (name members level start end)
|
|
|
|
"Create a semantic tag of class section.
|
|
|
|
NAME is the name of this section.
|
|
|
|
MEMBERS is a list of semantic tags representing the elements that make
|
|
|
|
up this section.
|
2011-11-19 09:18:31 +00:00
|
|
|
LEVEL is the leveling level.
|
2009-08-29 19:00:35 +00:00
|
|
|
START and END define the location of data described by the tag."
|
|
|
|
(let ((anchorp (eq level 11)))
|
|
|
|
(append (semantic-tag name
|
|
|
|
(cond (anchorp 'anchor)
|
|
|
|
(t 'section))
|
|
|
|
:members members)
|
|
|
|
(list start (if anchorp (point) end)) )))
|
|
|
|
|
|
|
|
(defun semantic-html-extract-section-name ()
|
|
|
|
"Extract a section name from the current buffer and point.
|
|
|
|
Assume the cursor is in the tag representing the section we
|
|
|
|
need the name from."
|
|
|
|
(save-excursion
|
|
|
|
; Skip over the HTML tag.
|
|
|
|
(forward-sexp -1)
|
|
|
|
(forward-char -1)
|
|
|
|
(forward-sexp 1)
|
|
|
|
(skip-chars-forward "\n\t ")
|
|
|
|
(while (looking-at "<")
|
|
|
|
(forward-sexp 1)
|
|
|
|
(skip-chars-forward "\n\t ")
|
|
|
|
)
|
|
|
|
(let ((start (point))
|
|
|
|
(end nil))
|
|
|
|
(if (re-search-forward "</" nil t)
|
|
|
|
(progn
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
(skip-chars-backward " \n\t")
|
|
|
|
(setq end (point))
|
|
|
|
(buffer-substring-no-properties start end))
|
|
|
|
""))
|
|
|
|
))
|
|
|
|
|
|
|
|
(defun semantic-html-recursive-combobulate-list (sectionlist level)
|
|
|
|
"Rearrange SECTIONLIST to be a hierarchical tag list starting at LEVEL.
|
|
|
|
Return the rearranged new list, with all remaining tags from
|
|
|
|
SECTIONLIST starting at ELT 2. Sections not are not dealt with as soon as a
|
|
|
|
tag with greater section value than LEVEL is found."
|
|
|
|
(let ((newl nil)
|
|
|
|
(oldl sectionlist)
|
|
|
|
(case-fold-search t)
|
|
|
|
tag
|
|
|
|
)
|
|
|
|
(save-excursion
|
|
|
|
(catch 'level-jump
|
|
|
|
(while oldl
|
|
|
|
(goto-char (car oldl))
|
|
|
|
(if (looking-at "<\\(\\w+\\)")
|
|
|
|
(let* ((word (match-string 1))
|
2009-09-02 04:37:10 +00:00
|
|
|
(levelmatch (assoc-string
|
|
|
|
word semantic-html-section-list t))
|
2009-08-29 19:00:35 +00:00
|
|
|
text begin tmp
|
|
|
|
)
|
|
|
|
(when (not levelmatch)
|
|
|
|
(error "Tag %s matched in regexp but is not in list"
|
|
|
|
word))
|
|
|
|
;; Set begin to the right location
|
|
|
|
(setq begin (point))
|
|
|
|
;; Get out of here if there if we made it that far.
|
|
|
|
(if (and levelmatch (<= (car (cdr levelmatch)) level))
|
|
|
|
(progn
|
|
|
|
(when newl
|
|
|
|
(semantic-html-set-endpoint newl begin))
|
|
|
|
(throw 'level-jump t)))
|
|
|
|
;; When there is a match, the descriptive text
|
|
|
|
;; consists of the rest of the line.
|
|
|
|
(goto-char (match-end 1))
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
(setq text (semantic-html-extract-section-name))
|
|
|
|
;; Next, recurse into the body to find the end.
|
|
|
|
(setq tmp (semantic-html-recursive-combobulate-list
|
|
|
|
(cdr oldl) (car (cdr levelmatch))))
|
|
|
|
;; Build a tag
|
|
|
|
(setq tag (semantic-html-new-section-tag
|
|
|
|
text (car tmp) (car (cdr levelmatch)) begin (point-max)))
|
|
|
|
;; Before appending the newtag, update the previous tag
|
|
|
|
;; if it is a section tag.
|
|
|
|
(when newl
|
|
|
|
(semantic-html-set-endpoint newl begin))
|
|
|
|
;; Append new tag to our master list.
|
|
|
|
(setq newl (cons tag newl))
|
|
|
|
;; continue
|
|
|
|
(setq oldl (cdr tmp))
|
|
|
|
)
|
|
|
|
(error "Problem finding section in semantic/html parser"))
|
|
|
|
;; (setq oldl (cdr oldl))
|
|
|
|
)))
|
|
|
|
;; Return the list
|
|
|
|
(cons (nreverse newl) oldl)))
|
|
|
|
|
|
|
|
(define-mode-local-override semantic-sb-tag-children-to-expand
|
|
|
|
html-mode (tag)
|
|
|
|
"The children TAG expands to."
|
|
|
|
(semantic-html-components tag))
|
|
|
|
|
2011-11-03 20:03:45 +00:00
|
|
|
;; In semantic/imenu.el, not part of Emacs.
|
2009-10-31 02:03:19 +00:00
|
|
|
(defvar semantic-imenu-expandable-tag-classes)
|
|
|
|
(defvar semantic-imenu-bucketize-file)
|
|
|
|
(defvar semantic-imenu-bucketize-type-members)
|
|
|
|
|
2009-09-06 21:22:05 +00:00
|
|
|
;;;###autoload
|
2009-08-29 19:00:35 +00:00
|
|
|
(defun semantic-default-html-setup ()
|
|
|
|
"Set up a buffer for parsing of HTML files."
|
|
|
|
;; This will use our parser.
|
|
|
|
(setq semantic-parser-name "HTML"
|
|
|
|
semantic--parse-table t
|
|
|
|
imenu-create-index-function 'semantic-create-imenu-index
|
|
|
|
semantic-command-separation-character ">"
|
|
|
|
semantic-type-relation-separator-character '(":")
|
|
|
|
semantic-symbol->name-assoc-list '((section . "Section")
|
|
|
|
|
|
|
|
)
|
|
|
|
semantic-imenu-expandable-tag-classes '(section)
|
|
|
|
semantic-imenu-bucketize-file nil
|
|
|
|
semantic-imenu-bucketize-type-members nil
|
|
|
|
senator-step-at-start-end-tag-classes '(section)
|
Synch Semantic to CEDET 1.0.
Move CEDET ChangeLog entries to new file lisp/cedet/ChangeLog.
* semantic.el (semantic-version): Update to 2.0.
(semantic-mode-map): Add "," and "m" bindings.
(navigate-menu): Update.
* semantic/symref.el (semantic-symref-calculate-rootdir):
New function.
(semantic-symref-detect-symref-tool): Use it.
* semantic/symref/grep.el (semantic-symref-grep-shell): New var.
(semantic-symref-perform-search): Use it. Calculate root dir with
semantic-symref-calculate-rootdir.
(semantic-symref-derive-find-filepatterns): Improve error message.
* semantic/symref/list.el
(semantic-symref-results-mode-map): New bindings.
(semantic-symref-auto-expand-results): New option.
(semantic-symref-results-dump): Obey auto-expand.
(semantic-symref-list-expand-all, semantic-symref-regexp)
(semantic-symref-list-contract-all)
(semantic-symref-list-map-open-hits)
(semantic-symref-list-update-open-hits)
(semantic-symref-list-create-macro-on-open-hit)
(semantic-symref-list-call-macro-on-open-hits): New functions.
(semantic-symref-list-menu-entries)
(semantic-symref-list-menu): New vars.
(semantic-symref-list-map-open-hits): Move cursor to beginning of
match before calling the mapped function.
* semantic/doc.el
(semantic-documentation-comment-preceeding-tag): Do nothing if the
mode doesn't provide comment-start-skip.
* semantic/scope.el
(semantic-analyze-scope-nested-tags-default): Strip duplicates.
(semantic-analyze-scoped-inherited-tag-map): Take the tag we are
looking for as part of the scoped tags list.
* semantic/html.el (semantic-default-html-setup): Add
senator-step-at-tag-classes.
* semantic/decorate/include.el
(semantic-decoration-on-unknown-includes): Change light bgcolor.
(semantic-decoration-on-includes-highlight-default): Check that
the include tag has a postion.
* semantic/complete.el (semantic-collector-local-members):
(semantic-complete-read-tag-local-members)
(semantic-complete-jump-local-members): New class and functions.
(semantic-complete-self-insert): Save excursion before completing.
* semantic/analyze/complete.el
(semantic-analyze-possible-completions-default): If no completions
are found, return the raw by-name-only completion list. Add FLAGS
arguments. Add support for 'no-tc (type constraint) and
'no-unique, or no stripping duplicates.
(semantic-analyze-possible-completions-default): Add FLAGS arg.
* semantic/util-modes.el
(semantic-stickyfunc-show-only-functions-p): New option.
(semantic-stickyfunc-fetch-stickyline): Don't show stickytext for
the very first line in a buffer.
* semantic/util.el (semantic-hack-search)
(semantic-recursive-find-nonterminal-by-name)
(semantic-current-tag-interactive): Deleted.
(semantic-describe-buffer): Fix expand-nonterminal. Add
lex-syntax-mods, type relation separator char, and command
separation char.
(semantic-sanity-check): Only message if called interactively.
* semantic/tag.el (semantic-tag-deep-copy-one-tag): Copy the
:filename property and the tag position.
* semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
Add recursion limit.
* semantic/imenu.el (semantic-imenu-bucketize-type-members):
Make this buffer local, not the obsoleted variable.
* semantic/idle.el: Add breadcrumbs support.
(semantic-idle-summary-current-symbol-info-default)
(semantic-idle-tag-highlight)
(semantic-idle-completion-list-default): Use
semanticdb-without-unloaded-file-searches for speed, and to
conform to the controls that specify if the idle timer is supposed
to be parsing unparsed includes.
(semantic-idle-symbol-highlight-face)
(semantic-idle-symbol-maybe-highlight): Rename from *-summary-*.
Callers changed.
(semantic-idle-work-parse-neighboring-files-flag): Default to nil.
(semantic-idle-work-update-headers-flag): New var.
(semantic-idle-work-for-one-buffer): Use it.
(semantic-idle-local-symbol-highlight): Rename from
semantic-idle-tag-highlight.
(semantic-idle-truncate-long-summaries): New option.
* semantic/ia.el (semantic-ia-cache)
(semantic-ia-get-completions): Deleted. Callers changed.
(semantic-ia-show-variants): New command.
(semantic-ia-show-doc): If doc is empty, don't make a temp buffer.
(semantic-ia-show-summary): If there isn't anything to show, say so.
* semantic/grammar.el (semantic-grammar-create-package):
Save the buffer even in batch mode.
* semantic/fw.el
(semanticdb-without-unloaded-file-searches): New macro.
* semantic/dep.el (semantic-dependency-find-file-on-path):
Fix case dereferencing ede-object when it is a list.
* semantic/db-typecache.el (semanticdb-expand-nested-tag)
(semanticdb-typecache-faux-namespace): New functions.
(semanticdb-typecache-file-tags)
(semanticdb-typecache-merge-streams): Use them.
(semanticdb-typecache-file-tags): When deriving tags from a file,
give the mode a chance to monkey with the tag copy.
(semanticdb-typecache-find-default): Wrap find in save-excursion.
(semanticdb-typecache-find-by-name-helper): Merge found names down.
* semantic/db-global.el
(semanticdb-enable-gnu-global-in-buffer): Don't show messages if
GNU Global is not available and we don't want to throw an error.
* semantic/db-find.el (semanticdb-find-result-nth-in-buffer):
When trying to normalize the tag to a buffer, don't error if
set-buffer method doesn't exist.
* semantic/db-file.el (semanticdb-save-db): Simplify msg.
* semantic/db.el (semanticdb-refresh-table): If forcing a
refresh on a file not in a buffer, use semantic-find-file-noselect
and delete the buffer after use.
(semanticdb-current-database-list): When calculating root via
hooks, force it through true-filename and skip the list of
possible roots.
* semantic/ctxt.el (semantic-ctxt-imported-packages): New.
* semantic/analyze/debug.el
(semantic-analyzer-debug-insert-tag): Reset standard output to
current buffer.
(semantic-analyzer-debug-global-symbol)
(semantic-analyzer-debug-missing-innertype): Change "prefix" to
"symbol" in messages.
* semantic/analyze/refs.el: (semantic-analyze-refs-impl)
(semantic-analyze-refs-proto): When calculating value, make sure
the found tag is 'similar' to the originating tag.
(semantic--analyze-refs-find-tags-with-parent): Attempt to
identify matches via imported symbols of parents.
(semantic--analyze-refs-full-lookup-with-parents): Do a deep
search during the brute search.
* semantic/analyze.el
(semantic-analyze-find-tag-sequence-default): Be robust to
calculated scopes being nil.
* semantic/bovine/c.el (semantic-c-describe-environment): Add
project macro symbol array.
(semantic-c-parse-lexical-token): Add recursion limit.
(semantic-ctxt-imported-packages, semanticdb-expand-nested-tag):
New overrides.
(semantic-expand-c-tag-namelist): Split a full type from a typedef
out to its own tag.
(semantic-expand-c-tag-namelist): Do not split out a typedef'd
inline type if it is an anonymous type.
(semantic-c-reconstitute-token): Use the optional initializers as
a clue that some function is probably a constructor. When
defining the type of these constructors, split the parent name,
and use only the class part, if applicable.
* semantic/bovine/c-by.el:
* semantic/wisent/python-wy.el: Regenerate.
2010-09-19 02:49:54 +00:00
|
|
|
senator-step-at-tag-classes '(section)
|
2009-08-29 19:00:35 +00:00
|
|
|
semantic-stickyfunc-sticky-classes '(section)
|
|
|
|
)
|
|
|
|
(semantic-install-function-overrides
|
|
|
|
'((tag-components . semantic-html-components)
|
|
|
|
)
|
|
|
|
t)
|
|
|
|
)
|
|
|
|
|
|
|
|
(define-child-mode html-helper-mode html-mode
|
|
|
|
"`html-helper-mode' needs the same semantic support as `html-mode'.")
|
|
|
|
|
|
|
|
(provide 'semantic/html)
|
|
|
|
|
2009-09-06 21:22:05 +00:00
|
|
|
;; Local variables:
|
|
|
|
;; generated-autoload-file: "loaddefs.el"
|
|
|
|
;; generated-autoload-load-name: "semantic/html"
|
|
|
|
;; End:
|
|
|
|
|
2009-09-02 04:37:10 +00:00
|
|
|
;;; semantic/html.el ends here
|