yatex

annotate yahtml.el @ 396:2fc714f03ddf

Clarify which element the current class name completions for
author HIROSE Yuuji <yuuji@gentei.org>
date Fri, 16 Jan 2015 10:47:48 +0900
parents 67fa6d791bc9
children 781604df4cbd
rev   line source
yuuji@286 1 ;;; yahtml.el --- Yet Another HTML mode -*- coding: sjis -*-
yuuji@396 2 ;;; (c) 1994-2015 by HIROSE Yuuji [yuuji(@)yatex.org]
yuuji@396 3 ;;; Last modified Fri Jan 16 10:44:54 2015 on firestorm
yuuji@366 4 ;;; $Id$
yuuji@54 5
yuuji@396 6 (defconst yahtml-revision-number "1.78.1"
yuuji@72 7 "Revision number of running yahtml.el")
yuuji@72 8
yuuji@286 9 ;;; Commentary:
yuuji@286 10
yuuji@58 11 ;;;[Installation]
yuuji@58 12 ;;;
yuuji@58 13 ;;; First, you have to install YaTeX and make sure it works fine. Then
yuuji@58 14 ;;; put these expressions into your ~/.emacs
yuuji@58 15 ;;;
yuuji@58 16 ;;; (setq auto-mode-alist
yuuji@58 17 ;;; (cons (cons "\\.html$" 'yahtml-mode) auto-mode-alist))
yuuji@58 18 ;;; (autoload 'yahtml-mode "yahtml" "Yet Another HTML mode" t)
yuuji@115 19 ;;; (setq yahtml-www-browser "firefox")
yuuji@115 20 ;;; ;Write your favorite browser. But firefox is advantageous.
yuuji@58 21 ;;; (setq yahtml-path-url-alist
yuuji@58 22 ;;; '(("/home/yuuji/public_html" . "http://www.mynet/~yuuji")
yuuji@58 23 ;;; ("/home/staff/yuuji/html" . "http://www.othernet/~yuuji")))
yuuji@58 24 ;;; ;Write correspondence alist from ABSOLUTE unix path name to URL path.
yuuji@58 25 ;;;
yuuji@64 26 ;;;[インストール方法]
yuuji@64 27 ;;;
yuuji@64 28 ;;; yahtml.el, yatexlib.el, yatexprc.el を load-path の通ったディレクト
yuuji@64 29 ;;; リにインストールしてください。その後、以下を参考に ~/.emacs に設定を
yuuji@64 30 ;;; 追加して下さい。
yuuji@64 31 ;;;
yuuji@64 32 ;;; (setq auto-mode-alist
yuuji@64 33 ;;; (cons (cons "\\.html$" 'yahtml-mode) auto-mode-alist))
yuuji@64 34 ;;; (autoload 'yahtml-mode "yahtml" "Yet Another HTML mode" t)
yuuji@115 35 ;;; (setq yahtml-www-browser "firefox")
yuuji@115 36 ;;; ;お気に入りのブラウザを書いて下さい。firefoxが便利です。
yuuji@64 37 ;;; (setq yahtml-path-url-alist
yuuji@64 38 ;;; '(("/home/yuuji/public_html" . "http://www.mynet/~yuuji")
yuuji@64 39 ;;; ("/home/staff/yuuji/html" . "http://www.othernet/~yuuji")))
yuuji@64 40 ;;; ;UNIXの絶対パスと対応するURLのリストを書いて下さい。
yuuji@64 41 ;;;
yuuji@77 42 ;;; HTMLファイル漢字コードが正しく判別されるようにホームディレクトリに
yuuji@77 43 ;;; .htaccess ファイルを作り以下のどれか1行を選んで書いて下さい。
yuuji@77 44 ;;;
yuuji@77 45 ;;; AddType "text/html; charset=Shift_JIS" .html (SJISの場合)
yuuji@77 46 ;;; AddType "text/html; charset=iso2022-jp" .html (JISの場合)
yuuji@77 47 ;;; AddType "text/html; charset=EUC-JP" .html (EUCの場合)
yuuji@102 48 ;;; AddType "text/html; charset=utf-8" .html (UTF-8の場合)
yuuji@77 49 ;;;
yuuji@77 50 ;;; .htaccess が作れない場合は
yuuji@77 51 ;;; (setq yahtml-kanji-code 2)
yuuji@102 52 ;;; ;HTMLファイルの漢字コードを変更する場合は
yuuji@102 53 ;;; ;1=SJIS、2=JIS、3=EUC 4=UTF-8
yuuji@77 54 ;;; ;で設定して下さい。デフォルトは 2 です。
yuuji@77 55 ;;;
yuuji@77 56 ;;; を適切に書き換えて ~/.emacs に足して下さい。
yuuji@77 57 ;;;
yuuji@54 58 ;;;[Commentary]
yuuji@13 59 ;;;
yuuji@54 60 ;;; It is assumed you are already familiar with YaTeX. The following
yuuji@54 61 ;;; completing featureas are available: ([prefix] means `C-c' by default)
yuuji@54 62 ;;;
yuuji@54 63 ;;; * [prefix] b X Complete environments such as `H1' which
yuuji@57 64 ;;; normally requires closing tag `</H1>
yuuji@57 65 ;;; <a href=foo> ... </a> is also classified into
yuuji@57 66 ;;; this group
yuuji@59 67 ;;; When input `href=...', you can complete file
yuuji@59 68 ;;; name or label(href="#foo") by typing TAB.
yuuji@54 69 ;;; * [prefix] l Complete typeface-changing commands such as
yuuji@54 70 ;;; `<i> ... </i>' or `<samp> ... </samp>'
yuuji@60 71 ;;; This completion can be used to make in-line
yuuji@60 72 ;;; tags which is normally completed with [prefix] b.
yuuji@64 73 ;;; * [prefix] s Complete declarative notations such as
yuuji@64 74 ;;; `<img src="foo.gif">'
yuuji@64 75 ;;; `<input name="var" ...>'
yuuji@57 76 ;;; * [prefix] m Complete single commands such as
yuuji@58 77 ;;; `<br>' or `<hr> or <li>...'
yuuji@64 78 ;;; * [prefix] p Insert <p></p> on the point
yuuji@59 79 ;;; * M-RET Intelligent newline; if current TAG is one of
yuuji@59 80 ;;; ul, ol, or dl. insert newline and <li> or
yuuji@59 81 ;;; <dt> or <dd> suitable for current condition.
yuuji@54 82 ;;; * menu-bar yahtml Complete all by selecting a menu item (Though I
yuuji@54 83 ;;; hate menu, this is most useful)
yuuji@58 84 ;;; * [prefix] g Goto corresponding Tag or HREF such as
yuuji@59 85 ;;; <dl> <-> </dl> or href="xxx".
yuuji@59 86 ;;; Or invoke image viewer if point is on <img src=...>.
yuuji@58 87 ;;; * [prefix] k Kill html tags on the point. If you provide
yuuji@58 88 ;;; universal-argument, kill surrounded contents too.
yuuji@58 89 ;;; * [prefix] c Change html tags on the point.
yuuji@59 90 ;;; When typeing [prefix] c on `href="xxx"', you can
yuuji@59 91 ;;; change the reference link with completion.
yuuji@60 92 ;;; * [prefix] t j Call weblint on current file.
yuuji@60 93 ;;; * [prefix] t p View current html with WWW browser
yuuji@58 94 ;;; (To activate this, never fail to set the lisp
yuuji@58 95 ;;; variable yahtml-www-browser. Recommended value
yuuji@115 96 ;;; is "firefox")
yuuji@59 97 ;;; * [prefix] a YaTeX's accent mark's equivalent of yahtml.
yuuji@59 98 ;;; This function can input $lt, $gt or so.
yuuji@69 99 ;;; * [prefix] ; Translate chars of `>', `<', `&', and `"' to
yuuji@69 100 ;;; `&gt;', `&lt;', `&amp;', `&quot;' respectively
yuuji@69 101 ;;; in the region.
yuuji@69 102 ;;; * [prefix] : Do translation opposite to above, in the region.
yuuji@69 103 ;;; * [prefix] # Translate unsafe-chars and unreserved-chars to
yuuji@69 104 ;;; URLencoded string in the region.
yuuji@58 105 ;;;
yuuji@64 106 ;;;[キーの説明]
yuuji@64 107 ;;;
yuuji@64 108 ;;; 以下の説明において、特にカスタマイズをしていない限り、[prefix] は
yuuji@64 109 ;;; C-c キーを意味します。
yuuji@64 110 ;;;
yuuji@64 111 ;;; * [prefix] b X `</H1>' といった終了タグが必要となる`H1'のよう
yuuji@64 112 ;;; な環境を補完入力します。<a href=foo> ... </a>
yuuji@64 113 ;;; もこのグループです。
yuuji@64 114 ;;; `href=...' と入力した後、TABキーを押すことで、
yuuji@64 115 ;;; ファイル名や (href="#foo") のようなラベルも補完
yuuji@64 116 ;;; できます。
yuuji@64 117 ;;; * [prefix] s 以下のような宣言の補完を行います。
yuuji@64 118 ;;; `<img src="foo.gif">'
yuuji@64 119 ;;; `<input name="var" ...>'
yuuji@64 120 ;;; * [prefix] l `<i> ... </i>' や `<samp> ... </samp>' のよう
yuuji@64 121 ;;; なテキストスタイル指定のタグを補完します。
yuuji@64 122 ;;; この補完機能は通常 [prefix] b で補完できるものを
yuuji@64 123 ;;; 一行内で書きたいときにも用いることが出来ます。
yuuji@64 124 ;;; * [prefix] m `<br>' や `<hr> '、`<li>' 等の単体タグの補完
yuuji@64 125 ;;; を行います。
yuuji@64 126 ;;; * [prefix] p カーソル位置に<p></p>を挿入します。
yuuji@64 127 ;;; * M-RET おまかせ改行; もしul、ol、dl等のタグ(リスト)を
yuuji@64 128 ;;; 使っている場合に、環境に合わせて改行と <li>、
yuuji@64 129 ;;; <dt>、<dd>を入力します。
yuuji@64 130 ;;; * menu-bar yahtml 選択したアイテムをメニューより補完できます。
yuuji@64 131 ;;; (私はメニューが嫌いなんですが、htmlに関してはメ
yuuji@64 132 ;;; ニューは一番ありがたいかも)
yuuji@64 133 ;;; * [prefix] g 対応するタグ、<dl> <-> </dl> や href="xxx" の
yuuji@64 134 ;;; ような TAG にジャンプします。
yuuji@64 135 ;;; <img src=...> の場合はイメージビューワを呼び出
yuuji@64 136 ;;; します。href=hoge.html の場合はhoge.htmlに飛びま
yuuji@64 137 ;;; す。
yuuji@64 138 ;;; * [prefix] k ポイント上の HTML タグを消去します。
yuuji@64 139 ;;; もし universal-argument を付けた場合(C-uを先に押
yuuji@64 140 ;;; す)HTMLタグで囲まれた内容も同時に消去します。
yuuji@64 141 ;;; * [prefix] c ポイント上のタグを変更します。
yuuji@64 142 ;;; `href="xxx"'の上で [prefix] c を利用した場合は、
yuuji@64 143 ;;; 参照しているリンクを補完機能を使いながら変更で
yuuji@64 144 ;;; きます。
yuuji@64 145 ;;; * [prefix] t j カレントファイルに対して jweblint を呼び出しま
yuuji@160 146 ;;; す。ファイル先頭付近に
yuuji@160 147 ;;; <!-- #lint コマンド -->
yuuji@160 148 ;;; と書いておくとそのコマンドを呼びます。
yuuji@64 149 ;;; * [prefix] t p WWW ブラウザでカレントファイルを表示します。
yuuji@64 150 ;;; (lisp変数 yahtml-www-browser の設定をお忘れな
yuuji@115 151 ;;; く。お推めは "firefox" です)
yuuji@64 152 ;;; * [prefix] a YaTeX のアクセント記号補完と同じです。
yuuji@64 153 ;;; &lt; &gt; 等が入力できます。
yuuji@69 154 ;;; * [prefix] ; 指定したリジョン中の > < & " をそれぞれ
yuuji@69 155 ;;; &gt; &lt; &amp; &quot; に変換します。
yuuji@69 156 ;;; * [prefix] : 指定したリジョン中で上と逆の変換をします。
yuuji@69 157 ;;; * [prefix] # 指定したリジョン中で%エンコードの必要な文字が
yuuji@69 158 ;;; あればそれらをエンコードします。
yuuji@160 159 ;;; * [prefix] } リジョン内の特定文字区切りのレコードを <td> 並びに
yuuji@160 160 ;;; 変換します。C-u (universal-argument) 付きで起動
yuuji@160 161 ;;; するとtd以外の任意要素で括ります。thdを指定する
yuuji@160 162 ;;; と最初の1つだけth,残りすべてをtdで括ります。
yuuji@160 163 ;;; * [prefix] ] リジョン内のすべての行をフィールドごとにtdで括り,
yuuji@160 164 ;;; さらに各行をtrで括ります。universal-argument を
yuuji@160 165 ;;; 付けるとフィールド括りをtd以外に指定できます。
yuuji@72 166 ;;; * [prefix] ESC yahtml-mode を抜け yahtml-mode に入る前に動作し
yuuji@72 167 ;;; ていたメジャーモードに戻ります。
yuuji@64 168 ;;;
yuuji@64 169 ;;; [謝辞]
yuuji@64 170 ;;;
yuuji@64 171 ;;; fj野鳥の会の皆さんには貴重な助言を頂きました。また、下に示す方々には
yuuji@64 172 ;;; 特に大きな協力を頂きました。あわせてここに感謝申し上げます。
yuuji@64 173 ;;;
yuuji@64 174 ;;; * 横田和也さん(マツダ)
yuuji@64 175 ;;; マニュアルの和訳をして頂きました。
yuuji@64 176 ;;; * 吉田尚志さん(NTT Data)
yuuji@64 177 ;;; Mule for Win32 での動作のさせ方を教えて頂きました。
yuuji@64 178 ;;; (というかほとんどやってもらった ^^;)
yuuji@64 179 ;;;
yuuji@54 180
yuuji@286 181 ;;; Code:
yuuji@13 182
yuuji@64 183 (require 'yatexlib)
yuuji@60 184 ;;; --- customizable variable starts here ---
yuuji@64 185 (defvar yahtml-prefix "\C-c"
yuuji@64 186 "*Prefix key stroke of yahtml functions.")
yuuji@80 187 (defvar yahtml-image-viewer "display" "*Image viewer program")
yuuji@80 188 (defvar yahtml-www-browser "firefox" "*WWW Browser command")
yuuji@58 189 (defvar yahtml-kanji-code 2
yuuji@88 190 "*Kanji coding system number of html file; 1=sjis, 2=jis, 3=euc, 4=UTF-8")
yuuji@69 191 ;;(defvar yahtml-coding-system
yuuji@69 192 ;; (cdr (assq yahtml-kanji-code YaTeX-kanji-code-alist))
yuuji@69 193 ;; "Kanji coding system")
yuuji@69 194 (and (featurep 'mule)
yuuji@69 195 (integerp yahtml-kanji-code)
yuuji@69 196 (setq yahtml-kanji-code
yuuji@69 197 (cdr (assq yahtml-kanji-code YaTeX-kanji-code-alist))))
yuuji@69 198
yuuji@64 199 (defvar yahtml-fill-column 72 "*fill culumn used for yahtml-mode")
yuuji@64 200 (defvar yahtml-fill-prefix nil "*fill prefix for yahtml-mode")
yuuji@64 201
yuuji@58 202 ;;(defvar yahtml-www-server "www" "*Host name of your domain's WWW server")
yuuji@58 203 (defvar yahtml-path-url-alist nil
yuuji@58 204 "*Alist of unix path name vs. URL name of WWW server.
yuuji@58 205 Ex.
yuuji@58 206 '((\"/usr/home/yuuji/http\" . \"http://www.comp.ae.keio.ac.jp/~yuuji\")
yuuji@70 207 (\"/home/yuuji/http\" . \"http://www.gentei.org/~yuuji\"))")
yuuji@58 208 (defvar yahtml-directory-index "index.html"
yuuji@58 209 "*Directory index file name;
yuuji@58 210 Consult your site's WWW administrator.")
yuuji@57 211
yuuji@64 212 (defvar yahtml-environment-indent 1
yuuji@60 213 "*Indentation depth of HTML's listing environment")
yuuji@60 214
yuuji@79 215 ;; YaTeX-japan is defined in yatexlib.el
yuuji@60 216 (defvar yahtml-lint-program (if YaTeX-japan "jweblint" "weblint")
yuuji@60 217 "*Program name to lint HTML file")
yuuji@60 218 (defvar yahtml-hate-too-deep-indentation nil
yuuji@60 219 "*Non-nil for this variable suppress deep indentation in listing environments.")
yuuji@60 220
yuuji@80 221 (defvar yahtml-always-/p t
yuuji@64 222 "*Those who always use <p> with </p> set this to t.")
yuuji@80 223 (defvar yahtml-always-/li nil
yuuji@80 224 "*Those who always use <li> with </li> set this to t.")
yuuji@80 225 (defvar yahtml-always-/dt nil
yuuji@80 226 "*Those who always use <dt> with </dt> set this to t.")
yuuji@80 227 (defvar yahtml-always-/dd nil
yuuji@80 228 "*Those who always use <dd> with </dd> set this to t.")
yuuji@64 229
yuuji@70 230 (defvar yahtml-p-prefered-env-regexp "^\\(body\\|dl\\|blockquote\\)"
yuuji@64 231 "*Regexp of envs where paragraphed sentences are prefered.")
yuuji@64 232
yuuji@80 233 (defvar yahtml-template-file "~/public_html/template.html"
yuuji@64 234 "*Template HTML file. It'll be inserted to empty file.")
yuuji@64 235
yuuji@69 236 (defvar yahtml-prefer-upcases nil
yuuji@69 237 "*Non-nil for preferring upcase TAGs")
yuuji@69 238
yuuji@69 239 (defvar yahtml-prefer-upcase-attributes nil
yuuji@69 240 "*Non-nil for preferring upcase attributes")
yuuji@69 241
yuuji@80 242 (defvar yahtml-server-type 'apache "*WWW server program type")
yuuji@69 243
yuuji@69 244 (defvar yahtml-apache-access-file ".htaccess"
yuuji@69 245 "*Server access file name for apache")
yuuji@69 246
yuuji@69 247 (defvar yahtml-use-css t "*Use stylesheet or not")
yuuji@69 248
yuuji@161 249 (defvar yahtml-image-inspection-bytes 500000
yuuji@70 250 "*Number of bytes to inspect the image for geometry information")
yuuji@70 251 (defvar yahtml:img-default-alt-format "%xx%y(%sbytes)"
yuuji@70 252 "*Default format of img entity's ALT attributes.
yuuji@70 253 %x: width, %y: height, %s: size in bytes, %c: first comment string,
yuuji@70 254 %f: filename")
yuuji@70 255
yuuji@203 256 (defvar yahtml-faithful-to-htmllint yahtml-always-/li
yuuji@190 257 "*Non-nil doesn't put space after opening tags.")
yuuji@190 258
yuuji@72 259 (defvar yahtml-error-line-regexp
yuuji@72 260 "^\\(.*\\)(\\([0-9]+\\)):\\|^line \\([0-9]+\\)"
yuuji@72 261 "*Regexp of error position which is produced by lint program.")
yuuji@72 262
yuuji@72 263 (defvar yahtml-translate-hyphens-when-comment-region t
yuuji@72 264 "*Non-nil for translate hyphens to &#45; when comment-region")
yuuji@72 265 (defvar yahtml-escape-chars 'ask
yuuji@72 266 "*Escape reserved characters to URL-encoding or not.
yuuji@72 267 Nil for never, t for everytime, and 'ask for inquiring
yuuji@72 268 at each reserved chars.")
yuuji@72 269
yuuji@72 270 (defvar yahtml-use-font-lock (and (featurep 'font-lock)
yuuji@72 271 (fboundp 'font-lock-fontify-region))
yuuji@72 272 "*Non-nil means to use font-lock to fontify buffer.")
yuuji@72 273
yuuji@72 274 (defvar yahtml-use-hilit19 (and (featurep 'hilit19)
yuuji@72 275 (not yahtml-use-font-lock))
yuuji@72 276 "*Non-nil means to Use hilit19 to highlight buffer")
yuuji@70 277
yuuji@73 278 (defvar yahtml-mode-abbrev-table nil
yuuji@73 279 "*Abbrev table in use in yahtml-mode buffers.")
yuuji@73 280 (define-abbrev-table 'yahtml-mode-abbrev-table ())
yuuji@73 281
yuuji@73 282 (defvar yahtml-indentation-boundary "^\\s *<h[1-3]>"
yuuji@73 283 "*Boundary regexp for indentation calculation.")
yuuji@73 284
yuuji@80 285 (defvar yahtml-html4-strict t
yuuji@80 286 "*Non-nil means editing HTML 4.01 Strict.
yuuji@80 287 Completing read for obsoleted attributes disabled.")
yuuji@80 288
yuuji@60 289 ;;; --- customizable variable ends here ---
yuuji@60 290 (defvar yahtml-prefix-map nil)
yuuji@60 291 (defvar yahtml-mode-map nil "Keymap used in yahtml-mode.")
yuuji@60 292 (defvar yahtml-lint-buffer-map nil "Keymap used in lint buffer.")
yuuji@60 293 (defvar yahtml-shell-command-option
yuuji@60 294 (or (and (boundp 'shell-command-option) shell-command-option)
yuuji@60 295 (if (eq system-type 'ms-dos) "/c" "-c")))
yuuji@72 296 (defvar yahtml-use-highlighting (or yahtml-use-font-lock yahtml-use-hilit19))
yuuji@60 297
yuuji@57 298 (defun yahtml-define-begend-key-normal (key env &optional map)
yuuji@60 299 "Define short cut yahtml-insert-begend key."
yuuji@57 300 (YaTeX-define-key
yuuji@57 301 key
yuuji@57 302 (list 'lambda '(arg) '(interactive "P")
yuuji@60 303 (list 'yahtml-insert-begend 'arg env))
yuuji@57 304 map))
yuuji@57 305
yuuji@57 306 (defun yahtml-define-begend-region-key (key env &optional map)
yuuji@60 307 "Define short cut yahtml-insert-begend-region key."
yuuji@57 308 (YaTeX-define-key key (list 'lambda nil '(interactive)
yuuji@60 309 (list 'yahtml-insert-begend t env)) map))
yuuji@57 310
yuuji@57 311 (defun yahtml-define-begend-key (key env &optional map)
yuuji@57 312 "Define short cut key for begin type completion both for
yuuji@57 313 normal and region mode. To customize yahtml, user should use this function."
yuuji@57 314 (yahtml-define-begend-key-normal key env map)
yuuji@57 315 (if YaTeX-inhibit-prefix-letter nil
yuuji@57 316 (yahtml-define-begend-region-key
yuuji@61 317 (concat (upcase (substring key 0 1)) (substring key 1)) env map)))
yuuji@57 318
yuuji@13 319 (if yahtml-mode-map nil
yuuji@57 320 (setq yahtml-mode-map (make-sparse-keymap)
yuuji@57 321 yahtml-prefix-map (make-sparse-keymap))
yuuji@64 322 (define-key yahtml-mode-map yahtml-prefix yahtml-prefix-map)
yuuji@58 323 (define-key yahtml-mode-map "\M-\C-@" 'yahtml-mark-begend)
yuuji@58 324 (if (and (boundp 'window-system) (eq window-system 'x) YaTeX-emacs-19)
yuuji@58 325 (define-key yahtml-mode-map [?\M-\C- ] 'yahtml-mark-begend))
yuuji@54 326 (define-key yahtml-mode-map "\M-\C-a" 'YaTeX-beginning-of-environment)
yuuji@57 327 (define-key yahtml-mode-map "\M-\C-e" 'YaTeX-end-of-environment)
yuuji@58 328 (define-key yahtml-mode-map "\M-\C-m" 'yahtml-intelligent-newline)
yuuji@80 329 (define-key yahtml-mode-map "\M-\C-j" 'yahtml-intelligent-newline)
yuuji@58 330 (define-key yahtml-mode-map "\C-i" 'yahtml-indent-line)
yuuji@70 331 (define-key yahtml-mode-map "&" 'yahtml-insert-amps)
yuuji@57 332 (let ((map yahtml-prefix-map))
yuuji@57 333 (YaTeX-define-key "^" 'yahtml-visit-main map)
yuuji@57 334 (YaTeX-define-key "4^" 'yahtml-visit-main-other-window map)
yuuji@57 335 (YaTeX-define-key "4g" 'yahtml-goto-corresponding-*-other-window map)
yuuji@57 336 (YaTeX-define-key "44" 'YaTeX-switch-to-window map)
yuuji@57 337 (and YaTeX-emacs-19 window-system
yuuji@57 338 (progn
yuuji@57 339 (YaTeX-define-key "5^" 'yahtml-visit-main-other-frame map)
yuuji@57 340 (YaTeX-define-key "5g" 'yahtml-goto-corresponding-*-other-frame map)
yuuji@57 341 (YaTeX-define-key "55" 'YaTeX-switch-to-window map)))
yuuji@72 342 (YaTeX-define-key "v" 'yahtml-version map)
yuuji@57 343 (YaTeX-define-key "s" 'yahtml-insert-form map)
yuuji@57 344 (YaTeX-define-key "l" 'yahtml-insert-tag map)
yuuji@61 345 (YaTeX-define-key "L" 'yahtml-insert-tag-region map)
yuuji@57 346 (YaTeX-define-key "m" 'yahtml-insert-single map)
yuuji@353 347 (YaTeX-define-key "n" (function(lambda () (interactive) (insert (if yahtml-prefer-upcases "<BR>" "<br>")))) map)
yuuji@353 348 (YaTeX-define-key "-" (function(lambda () (interactive) (insert (if yahtml-prefer-upcases "<HR>" "<hr>") "\n"))) map)
yuuji@64 349 (YaTeX-define-key "p" 'yahtml-insert-p map)
yuuji@57 350 (if YaTeX-no-begend-shortcut
yuuji@57 351 (progn
yuuji@57 352 (YaTeX-define-key "B" 'yahtml-insert-begend-region map)
yuuji@57 353 (YaTeX-define-key "b" 'yahtml-insert-begend map))
yuuji@60 354 (yahtml-define-begend-key "bh" "html" map)
yuuji@60 355 (yahtml-define-begend-key "bH" "head" map)
yuuji@60 356 (yahtml-define-begend-key "bt" "title" map)
yuuji@59 357 (yahtml-define-begend-key "bT" "table" map)
yuuji@60 358 (yahtml-define-begend-key "bb" "body" map)
yuuji@60 359 (yahtml-define-begend-key "bc" "center" map)
yuuji@60 360 (yahtml-define-begend-key "bd" "dl" map)
yuuji@60 361 (yahtml-define-begend-key "bu" "ul" map)
yuuji@80 362 (yahtml-define-begend-key "bo" "ol" map)
yuuji@60 363 (yahtml-define-begend-key "b1" "h1" map)
yuuji@60 364 (yahtml-define-begend-key "b2" "h2" map)
yuuji@60 365 (yahtml-define-begend-key "b3" "h3" map)
yuuji@57 366 (yahtml-define-begend-key "ba" "a" map)
yuuji@57 367 (yahtml-define-begend-key "bf" "form" map)
yuuji@57 368 (yahtml-define-begend-key "bs" "select" map)
yuuji@79 369 (yahtml-define-begend-key "bv" "div" map)
yuuji@80 370 (yahtml-define-begend-key "bS" "span" map)
yuuji@79 371 (yahtml-define-begend-key "bp" "pre" map)
yuuji@57 372 (YaTeX-define-key "b " 'yahtml-insert-begend map)
yuuji@102 373 (YaTeX-define-key "B " 'yahtml-insert-begend-region map))
yuuji@58 374 (YaTeX-define-key "e" 'YaTeX-end-environment map)
yuuji@57 375 (YaTeX-define-key ">" 'yahtml-comment-region map)
yuuji@57 376 (YaTeX-define-key "<" 'yahtml-uncomment-region map)
yuuji@57 377 (YaTeX-define-key "g" 'yahtml-goto-corresponding-* map)
yuuji@58 378 (YaTeX-define-key "k" 'yahtml-kill-* map)
yuuji@58 379 (YaTeX-define-key "c" 'yahtml-change-* map)
yuuji@58 380 (YaTeX-define-key "t" 'yahtml-browse-menu map)
yuuji@59 381 (YaTeX-define-key "a" 'yahtml-complete-mark map)
yuuji@60 382 (YaTeX-define-key "'" 'yahtml-prev-error map)
yuuji@69 383 (YaTeX-define-key ";" 'yahtml-translate-region map)
yuuji@69 384 (YaTeX-define-key ":" 'yahtml-translate-reverse-region map)
yuuji@69 385 (YaTeX-define-key "#" 'yahtml-escape-chars-region map)
yuuji@154 386 (YaTeX-define-key "}" 'yahtml-td-region map)
yuuji@154 387 (YaTeX-define-key "]" 'yahtml-tr-region map)
yuuji@58 388 ;;;;;(YaTeX-define-key "i" 'yahtml-fill-item map)
yuuji@102 389 (YaTeX-define-key "\e" 'yahtml-quit map))
yuuji@72 390 (substitute-all-key-definition
yuuji@72 391 'fill-paragraph 'yahtml-fill-paragraph yahtml-mode-map)
yuuji@72 392 (substitute-all-key-definition
yuuji@72 393 'kill-buffer 'YaTeX-kill-buffer yahtml-mode-map))
yuuji@60 394
yuuji@60 395 (if yahtml-lint-buffer-map nil
yuuji@60 396 (setq yahtml-lint-buffer-map (make-keymap))
yuuji@60 397 (define-key yahtml-lint-buffer-map " " 'yahtml-jump-to-error-line))
yuuji@60 398
yuuji@54 399
yuuji@59 400 (defvar yahtml-paragraph-start
yuuji@59 401 (concat
yuuji@61 402 "^$\\|<!--\\|^[ \t]*</?\\(h[1-6]\\|p\\|d[ldt]\\|[bhtd][rdh]\\|li\\|body\\|html\\|head\\|title\\|ul\\|ol\\|dl\\|pre\\|table\\|center\\|blockquote\\)\\b")
yuuji@59 403 "*Regexp of html paragraph separater")
yuuji@57 404 (defvar yahtml-paragraph-separate
yuuji@57 405 (concat
yuuji@61 406 "^$\\|<!--\\|^[ \t]*</?\\(h[1-6]\\|p\\|[bhtd][ldt]\\|li\\|body\\|html\\|head\\|title\\|ul\\|ol\\|dl\\|pre\\|table\\|center\\|blockquote\\|!--\\)\\b")
yuuji@57 407 "*Regexp of html paragraph separater")
yuuji@54 408 (defvar yahtml-syntax-table nil
yuuji@64 409 "*Syntax table for yahtml-mode")
yuuji@54 410
yuuji@54 411 (if yahtml-syntax-table nil
yuuji@54 412 (setq yahtml-syntax-table
yuuji@54 413 (make-syntax-table (standard-syntax-table)))
yuuji@61 414 (modify-syntax-entry ?\< "(>" yahtml-syntax-table)
yuuji@61 415 (modify-syntax-entry ?\> ")<" yahtml-syntax-table)
yuuji@102 416 (modify-syntax-entry ?\n " " yahtml-syntax-table))
yuuji@102 417
yuuji@54 418 (defvar yahtml-command-regexp "[A-Za-z0-9]+"
yuuji@54 419 "Regexp of constituent of html commands.")
yuuji@54 420
yuuji@54 421 ;;; Completion tables for `form'
yuuji@57 422 (defvar yahtml-form-table
yuuji@69 423 '(("img") ("input") ("link") ("meta")))
yuuji@54 424 (defvar yahtml-user-form-table nil)
yuuji@54 425 (defvar yahtml-tmp-form-table nil)
yuuji@64 426 (defvar yahtml-last-form "img")
yuuji@54 427
yuuji@54 428 (defvar yahtml-env-table
yuuji@60 429 '(("html") ("head") ("title") ("body") ("dl") ("ul") ("ol") ("pre")
yuuji@60 430 ("a") ("form") ("select") ("center") ("textarea") ("blockquote")
yuuji@58 431 ("OrderedList" . "ol")
yuuji@58 432 ("UnorderedList" . "ul")
yuuji@58 433 ("DefinitionList" . "dl")
yuuji@59 434 ("Preformatted" . "pre")
yuuji@80 435 ("table") ("thead") ("tbody") ("tfoot") ("tr") ("th") ("td")
yuuji@136 436 ("address") ("button")
yuuji@61 437 ("h1") ("h2") ("h3") ("h4") ("h5") ("h6")
yuuji@64 438 ;; ("p") ;This makes indentation screwed up!
yuuji@80 439 ("style") ("script") ("noscript") ("div") ("object") ("ins") ("del")
yuuji@315 440 ("option")
yuuji@64 441 ))
yuuji@57 442
yuuji@80 443 (if yahtml-html4-strict
yuuji@80 444 (setq yahtml-env-table
yuuji@80 445 (delete (assoc "center" yahtml-env-table) yahtml-env-table)))
yuuji@80 446
yuuji@69 447 ;(defvar yahtml-itemizing-regexp
yuuji@69 448 ; "\\(ul\\|ol\\|dl\\)"
yuuji@69 449 ; "Regexp of itemizing forms")
yuuji@58 450
yuuji@57 451 (defvar yahtml-user-env-table nil)
yuuji@57 452 (defvar yahtml-tmp-env-table nil)
yuuji@54 453
yuuji@54 454 ;;; Completion tables for typeface designator
yuuji@64 455 (and yahtml-always-/p
yuuji@64 456 (or (assoc "p" yahtml-env-table)
yuuji@64 457 (setq yahtml-env-table (cons '("p") yahtml-env-table))))
yuuji@80 458 (and yahtml-always-/li
yuuji@80 459 (or (assoc "li" yahtml-env-table)
yuuji@80 460 (setq yahtml-env-table (cons '("li") yahtml-env-table))))
yuuji@80 461 (and yahtml-always-/dt
yuuji@80 462 (or (assoc "dt" yahtml-env-table)
yuuji@80 463 (setq yahtml-env-table (cons '("dt") yahtml-env-table))))
yuuji@80 464 (and yahtml-always-/dd
yuuji@80 465 (or (assoc "dd" yahtml-env-table)
yuuji@80 466 (setq yahtml-env-table (cons '("dd") yahtml-env-table))))
yuuji@64 467
yuuji@54 468 (defvar yahtml-typeface-table
yuuji@60 469 (append
yuuji@80 470 '(("dfn") ("em") ("cite") ("code") ("kbd") ("samp") ("caption")
yuuji@80 471 ("strong") ("var") ("b") ("i") ("tt") ("big") ("small")
yuuji@80 472 ("sup") ("sub") ("span") ("abbr"))
yuuji@80 473 (if (not yahtml-html4-strict)
yuuji@80 474 '(("strike") ("s") ("u") ("font")))
yuuji@60 475 yahtml-env-table)
yuuji@54 476 "Default completion table of typeface designator")
yuuji@54 477 (defvar yahtml-user-typeface-table nil)
yuuji@54 478 (defvar yahtml-tmp-typeface-table nil)
yuuji@64 479 (defvar yahtml-last-typeface-cmd "a")
yuuji@54 480
yuuji@57 481 (defvar yahtml-single-cmd-table
yuuji@80 482 '(("hr") ("br") ("option")
yuuji@80 483 ("HorizontalRule" . "hr")
yuuji@58 484 ("BreakLine" . "br")
yuuji@80 485 ("exec" . "!--#exec")
yuuji@80 486 ("!--#exec")
yuuji@80 487 ("include" . "!--#include")
yuuji@80 488 ("!--#include")
yuuji@80 489 ;; ("Item" . "li")
yuuji@80 490 ;; ("DefineTerm" . "dt")
yuuji@80 491 ;; ("Description" . "dd")
yuuji@80 492 ;; ("dd") ("dt") ("li")
yuuji@58 493 )
yuuji@57 494 "Default completion table of HTML single command.")
yuuji@57 495 (defvar yahtml-user-single-cmd-table nil)
yuuji@57 496 (defvar yahtml-tmp-single-cmd-table nil)
yuuji@57 497 (defvar yahtml-last-single-cmd nil)
yuuji@57 498
yuuji@70 499 (defvar yahtml-current-completion-type nil
yuuji@70 500 "Has current completion type. This may be used in yahtml addin functions.")
yuuji@70 501
yuuji@57 502 (defvar yahtml-struct-name-regexp
yuuji@61 503 (concat
yuuji@61 504 "\\<\\("
yuuji@70 505 ;(mapconcat 'car yahtml-typeface-table "\\|")
yuuji@70 506 (mapconcat 'car yahtml-env-table "\\|")
yuuji@61 507 "\\)\\b")
yuuji@61 508 "Regexp of structure beginning.")
yuuji@70 509
yuuji@70 510 (defvar yahtml-closable-regexp
yuuji@70 511 (concat
yuuji@70 512 "\\<\\("
yuuji@70 513 (mapconcat 'car yahtml-typeface-table "\\|")
yuuji@70 514 (mapconcat 'car yahtml-env-table "\\|")
yuuji@70 515 "\\)\\b")
yuuji@70 516 "Regexp of any closable elemnts.")
yuuji@73 517
yuuji@73 518 (defvar yahtml-indent-listing-constant t
yuuji@73 519 "*Nil means indentation for listing obeys the column of `>'.
yuuji@73 520 T for static indentation depth")
yuuji@70 521
yuuji@64 522 (or (assoc "p" yahtml-env-table)
yuuji@64 523 (setq yahtml-env-table (cons '("p") yahtml-env-table)))
yuuji@57 524
yuuji@70 525
yuuji@70 526 (defun yahtml-get-user-httpconf-entry (regexp)
yuuji@69 527 (cond
yuuji@69 528 ((and (eq yahtml-server-type 'apache) ;;check .htaccess
yuuji@69 529 buffer-file-name)
yuuji@69 530 (let ((dir default-directory)
yuuji@69 531 charset af ext (ldir "")
yuuji@70 532 line
yuuji@69 533 (case-fold-search t)
yuuji@69 534 (uid (car (cdr (cdr (file-attributes "."))))))
yuuji@69 535 (if (string-match "^[A-Z]:" dir)
yuuji@69 536 (setq dir (substring dir 2))) ;remove drive letter
yuuji@69 537 (while (and dir
yuuji@69 538 (not (string= dir ldir))
yuuji@69 539 (equal uid (car (cdr (cdr (file-attributes dir))))))
yuuji@69 540 (setq af (expand-file-name yahtml-apache-access-file dir))
yuuji@69 541 (if (file-exists-p af)
yuuji@69 542 (save-excursion
yuuji@69 543 (set-buffer (find-file-noselect af))
yuuji@69 544 (save-excursion
yuuji@69 545 (goto-char (point-min))
yuuji@70 546 (if (re-search-forward regexp nil t)
yuuji@70 547 (setq line (buffer-substring
yuuji@70 548 (point-beginning-of-line)
yuuji@70 549 (point-end-of-line))
yuuji@70 550 dir nil)))
yuuji@69 551 (kill-buffer (current-buffer))))
yuuji@70 552 (if dir
yuuji@70 553 (setq ldir dir
yuuji@70 554 dir (substring dir 0 (string-match "/$" dir))
yuuji@70 555 dir (file-name-directory dir))))
yuuji@102 556 line))
yuuji@102 557 (t nil)))
yuuji@69 558
yuuji@70 559 (defun yahtml-dir-default-charset ()
yuuji@70 560 (let*((fn (file-name-nondirectory (or buffer-file-name "")))
yuuji@70 561 (ext (substring fn (or (string-match "\\.[a-z0-9]+$" fn) 0)))
yuuji@70 562 (ptn (format "^\\s *AddType.*charset=\\(.*\\)\\%s$" ext))
yuuji@77 563 (case-fold-search t)
yuuji@70 564 line
yuuji@70 565 charset)
yuuji@70 566 (if (setq line (yahtml-get-user-httpconf-entry ptn))
yuuji@70 567 (progn
yuuji@70 568 (string-match ptn line)
yuuji@70 569 (setq charset
yuuji@70 570 (substring line (match-beginning 1) (match-end 1)))
yuuji@70 571 (cond
yuuji@70 572 ((string-match "iso-2022-jp" charset)
yuuji@70 573 (setq charset 2))
yuuji@70 574 ((string-match "euc-jp" charset)
yuuji@70 575 (setq charset 3))
yuuji@70 576 ((string-match "shift_jis" charset)
yuuji@70 577 (setq charset 1))
yuuji@80 578 ((string-match "utf-8" charset)
yuuji@80 579 (setq charset 4))
yuuji@70 580 (t (setq charset nil)))
yuuji@70 581 (setq dir "")))
yuuji@70 582 (if (featurep 'mule)
yuuji@70 583 (setq charset (cdr (assq charset YaTeX-kanji-code-alist))))
yuuji@70 584 charset))
yuuji@70 585
yuuji@70 586 (defun yahtml-get-directory-index ()
yuuji@70 587 (let ((line (yahtml-get-user-httpconf-entry "^\\s *DirectoryIndex"))
yuuji@70 588 x index-list)
yuuji@70 589 ;;s/\\s *$//;
yuuji@70 590 (if line
yuuji@70 591 (progn
yuuji@70 592 (if (string-match "DirectoryIndex\\s +\\(.*\\)\\s *$" line)
yuuji@70 593 (setq line (substring line (match-beginning 1) (match-end 1))))
yuuji@70 594 (while (string< "" line)
yuuji@70 595 (if (setq x (string-match "\\(\\s +\\)" line))
yuuji@70 596 (setq index-list (cons (substring line 0 x) index-list)
yuuji@70 597 line (substring line (match-end 1)))
yuuji@70 598 (setq index-list (cons line index-list)
yuuji@102 599 line "")))
yuuji@70 600 (or (nreverse index-list)
yuuji@70 601 (if (listp yahtml-directory-index)
yuuji@70 602 yahtml-directory-index
yuuji@70 603 (list yahtml-directory-index)))))))
yuuji@70 604
yuuji@72 605 (defvar yahtml-mode-old-mode nil)
yuuji@13 606 (defun yahtml-mode ()
yuuji@13 607 (interactive)
yuuji@73 608 (let ((old-mm major-mode)) ;Emacs21.0.95 resets major-mode
yuuji@73 609 (kill-all-local-variables) ;with kill-all-local-variables
yuuji@73 610 (if (not (eq 'yahtml-mode old-mm))
yuuji@73 611 (set (make-local-variable 'yahtml-mode-old-mode) old-mm)))
yuuji@69 612 (let ((coding (or (yahtml-dir-default-charset) yahtml-kanji-code)))
yuuji@69 613 (cond
yuuji@79 614 ((null coding) nil)
yuuji@69 615 ((and YaTeX-emacs-20 (boundp 'buffer-file-coding-system))
yuuji@72 616 (setq buffer-file-coding-system
yuuji@72 617 (or (and (fboundp 'set-auto-coding) buffer-file-name
yuuji@80 618 (save-excursion
yuuji@80 619 (goto-char (point-min))
yuuji@80 620 (set-auto-coding buffer-file-name (buffer-size))))
yuuji@72 621 coding)))
yuuji@69 622 ((featurep 'mule)
yuuji@69 623 (set-file-coding-system coding))
yuuji@69 624 ((boundp 'NEMACS)
yuuji@69 625 (make-local-variable 'kanji-fileio-code)
yuuji@69 626 (setq kanji-fileio-code coding))))
yuuji@13 627 (setq major-mode 'yahtml-mode
yuuji@72 628 mode-name "yahtml"
yuuji@73 629 YaTeX-current-file-name (file-name-nondirectory
yuuji@73 630 (or (buffer-file-name) ""))
yuuji@73 631 local-abbrev-table yahtml-mode-abbrev-table)
yuuji@64 632 (mapcar
yuuji@64 633 (function (lambda (x)
yuuji@64 634 (make-local-variable (car x))
yuuji@64 635 (set (car x) (if (and (symbolp (cdr x))
yuuji@64 636 (boundp (cdr x)))
yuuji@64 637 (symbol-value (cdr x))
yuuji@64 638 (cdr x)))))
yuuji@64 639 '((YaTeX-ec . "")
yuuji@64 640 (YaTeX-struct-begin . "<%1%2")
yuuji@64 641 (YaTeX-struct-end . "</%1>")
yuuji@70 642 (YaTeX-struct-name-regexp . yahtml-closable-regexp)
yuuji@80 643 (YaTeX-comment-prefix . "<!--[^#]")
yuuji@69 644 (YaTeX-coding-system . yahtml-kanji-code) ;necessary?
yuuji@64 645 (YaTeX-typesetting-mode-map . yahtml-lint-buffer-map)
yuuji@64 646 (fill-prefix . yahtml-fill-prefix) (fill-column . yahtml-fill-column)
yuuji@64 647 (paragraph-start . yahtml-paragraph-start)
yuuji@64 648 (paragraph-separate . yahtml-paragraph-separate)
yuuji@64 649 (comment-start . "<!-- ") (comment-end . " -->")
yuuji@64 650 (comment-start-skip . comment-start)
yuuji@64 651 (indent-line-function . yahtml-indent-line)))
yuuji@64 652
yuuji@72 653 (if yahtml-use-font-lock
yuuji@72 654 (progn
yuuji@72 655 (yahtml-font-lock-set-default-keywords)
yuuji@72 656 (or (featurep 'xemacs)
yuuji@72 657 (progn
yuuji@72 658 (set (make-local-variable 'font-lock-defaults)
yuuji@72 659 '(yahtml-font-lock-keywords nil t))
yuuji@72 660 ;;(font-lock-mode -1)
yuuji@72 661 (font-lock-mode 1) ;;Why should I fontify again???
yuuji@72 662 ;; in yatex-mode, there's no need to refontify...
yuuji@102 663 (font-lock-fontify-buffer)))))
yuuji@330 664 ;; +dnd for X11 w/ emacs23+
yuuji@330 665 (and window-system (featurep 'dnd)
yuuji@330 666 (set (make-local-variable 'dnd-protocol-alist)
yuuji@330 667 (cons (cons "^\\(file\\|https?\\):" 'yahtml-dnd-handler)
yuuji@330 668 dnd-protocol-alist)))
yuuji@330 669
yuuji@54 670 (set-syntax-table yahtml-syntax-table)
yuuji@13 671 (use-local-map yahtml-mode-map)
yuuji@64 672 (YaTeX-read-user-completion-table)
yuuji@69 673 (yahtml-css-scan-styles)
yuuji@64 674 (turn-on-auto-fill) ;Sorry, this is prerequisite
yuuji@64 675 (and (= 0 (buffer-size)) (file-exists-p yahtml-template-file)
yuuji@64 676 (y-or-n-p (format "Insert %s?" yahtml-template-file))
yuuji@64 677 (insert-file-contents (expand-file-name yahtml-template-file)))
yuuji@72 678 (run-hooks 'text-mode-hook 'yahtml-mode-hook)
yuuji@72 679
yuuji@72 680 ;; This warning should be removed after a while(2000/12/2)
yuuji@72 681 (let ((fld (or (and (local-variable-p 'font-lock-defaults (current-buffer))
yuuji@72 682 font-lock-defaults)
yuuji@72 683 (get 'yahtml-mode 'font-lock-defaults))))
yuuji@72 684 (and fld (not (memq 'yahtml-font-lock-keywords fld))
yuuji@72 685 (YaTeX-warning-font-lock "yahtml"))))
yuuji@72 686
yuuji@72 687 (defun yahtml-version ()
yuuji@72 688 "Return string of the version of running yahtml."
yuuji@72 689 (interactive)
yuuji@72 690 (message
yuuji@72 691 (concat "Yet Another HTML-mode "
yuuji@72 692 (if YaTeX-japan "「HTML屋」" "`yahtml'")
yuuji@72 693 " Revision "
yuuji@72 694 yahtml-revision-number)))
yuuji@72 695
yuuji@72 696 (defun yahtml-quit ()
yuuji@72 697 (interactive)
yuuji@72 698 (and yahtml-mode-old-mode
yuuji@72 699 (fboundp yahtml-mode-old-mode)
yuuji@72 700 (funcall yahtml-mode-old-mode)))
yuuji@54 701
yuuji@54 702 (defun yahtml-define-menu (keymap bindlist)
yuuji@64 703 (cond
yuuji@64 704 ((featurep 'xemacs)
yuuji@64 705 (let ((name (keymap-name (symbol-value keymap))))
yuuji@64 706 (set keymap nil)
yuuji@64 707 (mapcar
yuuji@64 708 (function
yuuji@64 709 (lambda (bind)
yuuji@64 710 (setq bind (cdr bind))
yuuji@64 711 (if (eq (car (cdr bind)) 'lambda)
yuuji@64 712 (setcar (cdr bind) 'progn))
yuuji@64 713 (if (stringp (car (cdr bind)))
yuuji@64 714 (set keymap (cons (cdr bind) (symbol-value keymap)))
yuuji@64 715 (set keymap (cons (vector (car bind) (cdr bind) t)
yuuji@64 716 (symbol-value keymap))))))
yuuji@64 717 bindlist)
yuuji@64 718 (set keymap (cons name (symbol-value keymap)))))
yuuji@64 719 (t
yuuji@64 720 (mapcar
yuuji@64 721 (function
yuuji@64 722 (lambda (bind)
yuuji@64 723 (define-key (symbol-value keymap) (vector (car bind)) (cdr bind))))
yuuji@64 724 bindlist))))
yuuji@54 725
yuuji@54 726 (defvar yahtml-menu-map nil "Menu map of yahtml")
yuuji@54 727 (defvar yahtml-menu-map-sectioning nil "Menu map of yahtml(sectioning)")
yuuji@54 728 (defvar yahtml-menu-map-listing nil "Menu map of yahtml(listing)")
yuuji@54 729 (defvar yahtml-menu-map-logical nil "Menu map of yahtml(logical tags)")
yuuji@54 730 (defvar yahtml-menu-map-typeface nil "Menu map of yahtml(typeface tags)")
yuuji@54 731
yuuji@54 732 ;;; Variables for mosaic url history
yuuji@54 733 (defvar yahtml-urls nil "Alist of global history")
yuuji@64 734 (defvar yahtml-urls-private nil)
yuuji@64 735 (defvar yahtml-urls-local nil)
yuuji@54 736
yuuji@54 737 (cond
yuuji@54 738 ((and YaTeX-emacs-19 (null yahtml-menu-map))
yuuji@64 739 (setq yahtml-menu-map (make-sparse-keymap "yahtml"))
yuuji@54 740 (setq yahtml-menu-map-sectioning (make-sparse-keymap "sectioning menu"))
yuuji@64 741 (YaTeX-define-menu
yuuji@64 742 'yahtml-menu-map-sectioning
yuuji@54 743 (nreverse
yuuji@58 744 '((1 "H1" . (lambda () (interactive) (yahtml-insert-begend nil "H1")))
yuuji@58 745 (2 "H2" . (lambda () (interactive) (yahtml-insert-begend nil "H2")))
yuuji@58 746 (3 "H3" . (lambda () (interactive) (yahtml-insert-begend nil "H3")))
yuuji@58 747 (4 "H4" . (lambda () (interactive) (yahtml-insert-begend nil "H4")))
yuuji@58 748 (5 "H5" . (lambda () (interactive) (yahtml-insert-begend nil "H5")))
yuuji@58 749 (6 "H6" . (lambda () (interactive) (yahtml-insert-begend nil "H6")))
yuuji@54 750 )))
yuuji@54 751 (setq yahtml-menu-map-logical (make-sparse-keymap "logical tags"))
yuuji@64 752 (YaTeX-define-menu
yuuji@64 753 'yahtml-menu-map-logical
yuuji@54 754 (nreverse
yuuji@54 755 '((em "Embolden" .
yuuji@58 756 (lambda () (interactive) (yahtml-insert-tag nil "EM")))
yuuji@60 757 (dfn "Define a word" .
yuuji@60 758 (lambda () (interactive) (yahtml-insert-tag nil "DFN")))
yuuji@54 759 (cite "Citation" .
yuuji@58 760 (lambda () (interactive) (yahtml-insert-tag nil "CITE")))
yuuji@54 761 (code "Code" .
yuuji@58 762 (lambda () (interactive) (yahtml-insert-tag nil "CODE")))
yuuji@54 763 (kbd "Keyboard" .
yuuji@58 764 (lambda () (interactive) (yahtml-insert-tag nil "KBD")))
yuuji@54 765 (samp "Sample display" .
yuuji@58 766 (lambda () (interactive) (yahtml-insert-tag nil "SAMP")))
yuuji@54 767 (strong "Strong" .
yuuji@58 768 (lambda () (interactive) (yahtml-insert-tag nil "STRONG")))
yuuji@54 769 (VAR "Variable notation" .
yuuji@180 770 (lambda () (interactive) (yahtml-insert-tag nil "var"))))))
yuuji@54 771 (setq yahtml-menu-map-typeface (make-sparse-keymap "typeface tags"))
yuuji@64 772 (YaTeX-define-menu
yuuji@64 773 'yahtml-menu-map-typeface
yuuji@54 774 (nreverse
yuuji@54 775 '((b "Bold" .
yuuji@180 776 (lambda () (interactive) (yahtml-insert-tag nil "b")))
yuuji@54 777 (i "Italic" .
yuuji@180 778 (lambda () (interactive) (yahtml-insert-tag nil "i")))
yuuji@54 779 (tt "Typewriter" .
yuuji@180 780 (lambda () (interactive) (yahtml-insert-tag nil "tt")))
yuuji@54 781 (u "Underlined" .
yuuji@180 782 (lambda () (interactive) (yahtml-insert-tag nil "u"))))))
yuuji@54 783 (setq yahtml-menu-map-listing (make-sparse-keymap "listing"))
yuuji@64 784 (YaTeX-define-menu
yuuji@64 785 'yahtml-menu-map-listing
yuuji@54 786 (nreverse
yuuji@58 787 '((ul "Unordered" .
yuuji@180 788 (lambda () (interactive) (yahtml-insert-begend nil "ul")))
yuuji@58 789 (ol "Ordered" .
yuuji@180 790 (lambda () (interactive) (yahtml-insert-begend nil "ol")))
yuuji@58 791 (dl "Definition" .
yuuji@180 792 (lambda () (interactive) (yahtml-insert-begend nil "dl"))))))
yuuji@57 793 (setq yahtml-menu-map-item (make-sparse-keymap "item"))
yuuji@64 794 (YaTeX-define-menu
yuuji@64 795 'yahtml-menu-map-item
yuuji@57 796 (nreverse
yuuji@57 797 '((li "Simple item" .
yuuji@57 798 (lambda () (interactive) (yahtml-insert-single "li")))
yuuji@57 799 (dt "Define term" .
yuuji@57 800 (lambda () (interactive) (yahtml-insert-single "dt")))
yuuji@57 801 (dd "Description of term" .
yuuji@102 802 (lambda () (interactive) (yahtml-insert-single "dd"))))))
yuuji@54 803 (define-key yahtml-mode-map [menu-bar yahtml]
yuuji@54 804 (cons "yahtml" yahtml-menu-map))
yuuji@64 805 (YaTeX-define-menu
yuuji@64 806 'yahtml-menu-map
yuuji@54 807 (nreverse
yuuji@54 808 (list
yuuji@54 809 (cons (list 'sect "Sectioning")
yuuji@54 810 (cons "sectioning" yahtml-menu-map-sectioning))
yuuji@54 811 (cons (list 'list "Listing")
yuuji@54 812 (cons "Listing" yahtml-menu-map-listing))
yuuji@57 813 (cons (list 'item "Item")
yuuji@57 814 (cons "Itemizing" yahtml-menu-map-item));;;
yuuji@54 815 (cons (list 'logi "Logical tags")
yuuji@54 816 (cons "logical" yahtml-menu-map-logical))
yuuji@54 817 (cons (list 'type "Typeface tags")
yuuji@102 818 (cons "typeface" yahtml-menu-map-typeface)))))
yuuji@64 819 (if (featurep 'xemacs)
yuuji@64 820 (add-hook 'yahtml-mode-hook
yuuji@353 821 (function
yuuji@353 822 (lambda ()
yuuji@64 823 (or (assoc "yahtml" current-menubar)
yuuji@64 824 (progn
yuuji@64 825 (set-buffer-menubar (copy-sequence current-menubar))
yuuji@353 826 (add-submenu nil yahtml-menu-map)))))))))
yuuji@54 827
yuuji@57 828 ;;; ----------- Completion ----------
yuuji@57 829 (defvar yahtml-last-begend "html")
yuuji@58 830 (defun yahtml-insert-begend (&optional region env)
yuuji@57 831 "Insert <cmd> ... </cmd>."
yuuji@57 832 (interactive "P")
yuuji@392 833 (setq yahtml-current-completion-type 'multiline
yuuji@392 834 region (or region (YaTeX-region-active-p)))
yuuji@58 835 (let*((completion-ignore-case t)
yuuji@58 836 (cmd
yuuji@58 837 (or env
yuuji@58 838 (YaTeX-cplread-with-learning
yuuji@57 839 (format "Environment(default %s): " yahtml-last-begend)
yuuji@58 840 'yahtml-env-table 'yahtml-user-env-table 'yahtml-tmp-env-table)))
yuuji@58 841 (bolp (save-excursion
yuuji@58 842 (skip-chars-backward " \t" (point-beginning-of-line)) (bolp)))
yuuji@58 843 (cc (current-column)))
yuuji@57 844 (if (string< "" cmd) (setq yahtml-last-begend cmd))
yuuji@58 845 (setq yahtml-last-begend
yuuji@58 846 (or (cdr (assoc yahtml-last-begend yahtml-env-table))
yuuji@58 847 yahtml-last-begend))
yuuji@57 848 (setq cmd yahtml-last-begend)
yuuji@180 849 (setq cmd (funcall (if yahtml-prefer-upcases 'upcase 'downcase) cmd))
yuuji@57 850 (if region
yuuji@69 851 ;; We want to keep region effective for new tagged environment
yuuji@69 852 ;; to enable continuous regioning by another environment
yuuji@57 853 (let ((beg (region-beginning))
yuuji@57 854 (end (region-end))
yuuji@57 855 (addin (yahtml-addin cmd)))
yuuji@69 856 (save-excursion
yuuji@69 857 (goto-char end)
yuuji@69 858 (insert-before-markers (format "</%s>%s" cmd (if bolp "\n" "")))
yuuji@69 859 (goto-char beg)
yuuji@69 860 (insert (format "<%s%s>%s" cmd addin (if bolp "\n" "")))))
yuuji@58 861 (insert (format "<%s%s>" cmd (yahtml-addin cmd)))
yuuji@58 862 (save-excursion
yuuji@60 863 (insert "\n")
yuuji@60 864 (indent-to-column cc)
yuuji@60 865 (insert (format "</%s>" cmd)))
yuuji@64 866 (if (string-match "^a\\|p$" cmd) ;aとp決め打ちってのが美しくない…
yuuji@64 867 (newline)
yuuji@64 868 (yahtml-intelligent-newline nil))
yuuji@64 869 (yahtml-indent-line))))
yuuji@57 870
yuuji@57 871 (defun yahtml-insert-begend-region ()
yuuji@57 872 "Call yahtml-insert-begend in the region mode."
yuuji@57 873 (interactive)
yuuji@57 874 (yahtml-insert-begend t))
yuuji@57 875
yuuji@57 876
yuuji@54 877 (defun yahtml-insert-form (&optional form)
yuuji@57 878 "Insert <FORM option=\"argument\">."
yuuji@54 879 (interactive)
yuuji@70 880 (setq yahtml-current-completion-type 'single)
yuuji@54 881 (or form
yuuji@60 882 (let ((completion-ignore-case t))
yuuji@60 883 (setq form
yuuji@60 884 (YaTeX-cplread-with-learning
yuuji@64 885 (format "Form(default %s): " yahtml-last-form)
yuuji@60 886 'yahtml-form-table 'yahtml-user-form-table
yuuji@60 887 'yahtml-tmp-form-table))))
yuuji@57 888 (let ((p (point)) q)
yuuji@64 889 (if (string= form "") (setq form yahtml-last-form))
yuuji@64 890 (setq yahtml-last-form form)
yuuji@60 891 (if yahtml-prefer-upcases (setq form (upcase form)))
yuuji@58 892 (insert (format "<%s%s>" form (yahtml-addin form)))
yuuji@57 893 ;;(indent-relative-maybe)
yuuji@57 894 (if (cdr (assoc form yahtml-form-table))
yuuji@57 895 (save-excursion (insert (format "</%s>" form))))
yuuji@54 896 (if (search-backward "\"\"" p t) (forward-char 1))))
yuuji@54 897
yuuji@396 898 (defun yahtml-read-css (alist &optional element)
yuuji@80 899 (let ((completion-ignore-case t) (delim " ")
yuuji@396 900 (minibuffer-completion-table alist)
yuuji@396 901 (quotekey (substitute-command-keys "\\[quoted-insert]")))
yuuji@394 902 (read-from-minibuffer-with-history
yuuji@396 903 (if YaTeX-japan
yuuji@396 904 (format "%sクラス(複数指定は%s SPCで区切る): "
yuuji@396 905 (if element (concat element "の") "") quotekey)
yuuji@396 906 (format "class%s(multiple class can be delimited by %s SPC): "
yuuji@396 907 (if element (concat " for " element) "") quotekey))
yuuji@80 908 nil YaTeX-minibuffer-completion-map nil)))
yuuji@80 909
yuuji@138 910 (defvar yahtml-newpage-command "newpage.rb"
yuuji@138 911 "*Command name to create new HTML file referring to index.html.
yuuji@138 912 This command should create new HTML file named argument 1 and
yuuji@138 913 output string like `<a href=\"newfile.html\">anchor tag</a>'.
yuuji@138 914 This program should take -o option to overwrite existing HTML file.")
yuuji@138 915 (defun yahtml-newpage (file ov)
yuuji@138 916 "Create newpage via newpage script"
yuuji@138 917 (interactive
yuuji@138 918 (list
yuuji@138 919 (let (insert-default-directory)
yuuji@138 920 (read-file-name "New webpage file name: " ""))
yuuji@138 921 current-prefix-arg))
yuuji@138 922 (if (and (file-exists-p file) (not ov))
yuuji@138 923 (error "%s already exists. Call this with universal argument to force overwrite." file))
yuuji@138 924 (insert (substring
yuuji@138 925 (YaTeX-command-to-string
yuuji@138 926 (concat yahtml-newpage-command " " (if ov "-o ") file))
yuuji@138 927 0 -1)))
yuuji@138 928
yuuji@59 929 ;;; ---------- Add-in ----------
yuuji@54 930 (defun yahtml-addin (form)
yuuji@54 931 "Check add-in function's existence and call it if exists."
yuuji@69 932 (let ((addin (concat "yahtml:" (downcase form))) s a)
yuuji@69 933 (concat
yuuji@70 934 (and (setq a (yahtml-css-get-element-completion-alist form))
yuuji@290 935 (not (equal (YaTeX-last-key) ?\C-j))
yuuji@70 936 (memq yahtml-current-completion-type '(multiline inline))
yuuji@147 937 (not (string-match "#" form))
yuuji@70 938 (yahtml-make-optional-argument ;should be made generic?
yuuji@396 939 "class" (yahtml-read-css a form)))
yuuji@69 940 (if (and (intern-soft addin) (fboundp (intern-soft addin))
yuuji@69 941 (stringp (setq s (funcall (intern addin))))
yuuji@69 942 (string< "" s))
yuuji@69 943 (if (eq (aref s 0) ? ) s (concat " " s))
yuuji@69 944 ""))))
yuuji@54 945
yuuji@59 946 (defvar yahtml-completing-buffer nil)
yuuji@59 947 (defun yahtml-collect-labels (&optional file)
yuuji@68 948 "Collect current buffers label (<?? name=...>).
yuuji@59 949 If optional argument FILE is specified collect labels in FILE."
yuuji@69 950 (let (list end)
yuuji@59 951 (save-excursion
yuuji@59 952 (set-buffer yahtml-completing-buffer)
yuuji@60 953 (if file (let (hilit-auto-highlight)
yuuji@60 954 (set-buffer (find-file-noselect file))))
yuuji@59 955 (save-excursion
yuuji@59 956 (goto-char (point-min))
yuuji@69 957 (while ;(re-search-forward "<\\w+\\b" nil t)
yuuji@69 958 (re-search-forward "\\(name\\|id\\)\\s *=" nil t)
yuuji@69 959 ;(setq bound (match-end 0))
yuuji@69 960 ;(search-forward ">" nil t)
yuuji@69 961 (setq end (match-end 0))
yuuji@69 962 (if (and ;(re-search-backward "\\(name\\|id\\)\\s *=" bound t)
yuuji@69 963 (yahtml-on-assignment-p)
yuuji@69 964 (progn
yuuji@69 965 (goto-char end)
yuuji@69 966 (skip-chars-forward " \t\n")
yuuji@69 967 (looking-at "\"?#?\\([^\">]+\\)\"?\\b")))
yuuji@59 968 (setq list (cons
yuuji@59 969 (list (concat "#" (YaTeX-match-string 1)))
yuuji@59 970 list))))
yuuji@102 971 list))))
yuuji@59 972
yuuji@58 973 (defvar yahtml-url-completion-map nil "Key map used in URL completion buffer")
yuuji@58 974 (if yahtml-url-completion-map nil
yuuji@58 975 (setq yahtml-url-completion-map
yuuji@58 976 (copy-keymap minibuffer-local-completion-map))
yuuji@58 977 (define-key yahtml-url-completion-map "\t" 'yahtml-complete-url)
yuuji@102 978 (define-key yahtml-url-completion-map " " 'yahtml-complete-url))
yuuji@58 979
yuuji@58 980 (defun yahtml-complete-url ()
yuuji@58 981 "Complete external URL from history or local file name."
yuuji@58 982 (interactive)
yuuji@72 983 (let ((p (point)) initial i2 cmpl path dir file listfunc beg labels
yuuji@73 984 (lim (YaTeX-minibuffer-begin))
yuuji@73 985 (min (if (fboundp 'field-beginning) (field-beginning) (point-min))))
yuuji@72 986 (setq initial (YaTeX-minibuffer-string))
yuuji@58 987 (cond
yuuji@58 988 ((string-match "^http:" initial)
yuuji@58 989 (setq cmpl (try-completion initial yahtml-urls)
yuuji@58 990 listfunc (list 'lambda nil
yuuji@58 991 (list 'all-completions initial 'yahtml-urls))
yuuji@73 992 beg min))
yuuji@59 993 ((setq beg (string-match "#" initial))
yuuji@59 994 (or (equal beg 0) ;begin with #
yuuji@59 995 (progn
yuuji@59 996 (setq path (substring initial 0 beg))
yuuji@59 997 (if (string-match "^/" path)
yuuji@59 998 (setq path (yahtml-url-to-path path)))))
yuuji@59 999 (setq initial (substring initial beg))
yuuji@59 1000 (setq labels (yahtml-collect-labels path)
yuuji@59 1001 cmpl (try-completion initial labels)
yuuji@59 1002 listfunc (list 'lambda ()
yuuji@59 1003 (list 'all-completions
yuuji@59 1004 initial (list 'quote labels)))
yuuji@73 1005 beg (+ min beg)))
yuuji@58 1006 (t
yuuji@58 1007 (setq path (if (string-match "^/" initial)
yuuji@64 1008 (or (yahtml-url-to-path initial) initial)
yuuji@58 1009 initial))
yuuji@58 1010 (setq dir (or (file-name-directory path) ".")
yuuji@58 1011 file (file-name-nondirectory path)
yuuji@58 1012 initial file
yuuji@58 1013 cmpl (file-name-completion file dir)
yuuji@58 1014 listfunc (list 'lambda nil
yuuji@58 1015 (list 'file-name-all-completions
yuuji@58 1016 file dir))
yuuji@72 1017 beg (save-excursion (skip-chars-backward "^/" lim) (point)))))
yuuji@58 1018 (cond
yuuji@58 1019 ((stringp cmpl)
yuuji@58 1020 (if (string= initial cmpl)
yuuji@58 1021 (with-output-to-temp-buffer "*Completions*"
yuuji@58 1022 (princ "Possible completinos are:\n")
yuuji@58 1023 (princ
yuuji@353 1024 (mapconcat (function(lambda (x) x)) (funcall listfunc) "\n")))
yuuji@58 1025 (delete-region (point) beg)
yuuji@58 1026 (insert cmpl)))
yuuji@58 1027 ((null cmpl)
yuuji@58 1028 (ding))
yuuji@58 1029 ((eq t cmpl)
yuuji@58 1030 (save-excursion
yuuji@58 1031 (unwind-protect
yuuji@58 1032 (progn
yuuji@58 1033 (goto-char p)
yuuji@58 1034 (insert " [Sole completion]"))
yuuji@58 1035 (delete-region p (point-max))))))))
yuuji@69 1036
yuuji@69 1037 ;
yuuji@69 1038 ; Subject: [yatex:02849] Re: [yahtml] tilda in href tag
yuuji@193 1039 ; From: Masayasu Ishikawa <mimasa<at>sfc.keio.ac.jp>
yuuji@193 1040 ; To: yatex<at>arcadia.jaist.ac.jp
yuuji@69 1041 ; Date: Mon, 31 May 1999 21:09:31 +0900
yuuji@69 1042 ; RFC 2396 の "2.4.3. Excluded US-ASCII Characters" によると、以下の文字
yuuji@69 1043 ; は必ずエスケープしないといけません。
yuuji@69 1044 ;
yuuji@69 1045 ; control = <US-ASCII coded characters 00-1F and 7F hexadecimal>
yuuji@69 1046 ; space = <US-ASCII coded character 20 hexadecimal>
yuuji@69 1047 ; delims = "<" | ">" | "#" | "%" | <">
yuuji@69 1048 ; unwise = "{" | "}" | "|" | "\" | "^" | "[" | "]" | "`"
yuuji@69 1049 (defvar yahtml-unsafe-chars-regexp
yuuji@69 1050 "[][\x0- \x7f <>%\"{}|\\^`]" ;#は除去する
yuuji@69 1051 "Characters regexp which must be escaped in URI.")
yuuji@69 1052 ;
yuuji@69 1053 ; また、以下の文字は予約された用法以外に用いる場合にはエスケープしないと
yuuji@69 1054 ; いけないことになっています。
yuuji@69 1055 ;
yuuji@69 1056 ; reserved = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" |
yuuji@69 1057 ; "$" | ","
yuuji@69 1058 (defvar yahtml-unreserved-chars-regexp
yuuji@69 1059 "[;/?:@&=+$,]"
yuuji@69 1060 "Characters regexp which should be escaped in URI on certain conditions.
yuuji@69 1061 Not used yet.")
yuuji@69 1062
yuuji@69 1063 (defun yahtml-escape-chars-string (str)
yuuji@69 1064 "Translate reserved chars to URL encoded string."
yuuji@69 1065 (let ((p 0) (target "")
yuuji@69 1066 (ask (eq yahtml-escape-chars 'ask)))
yuuji@69 1067 (cond
yuuji@69 1068 ((null yahtml-escape-chars) str)
yuuji@69 1069 (t
yuuji@69 1070 (while (and (string< "" str)
yuuji@69 1071 (setq p (string-match yahtml-unsafe-chars-regexp str)))
yuuji@69 1072 (if (and ask (y-or-n-p (format "Escape char [%c] of `%s'"
yuuji@69 1073 (aref str p) (substring str 0 (1+ p)))))
yuuji@69 1074 (setq target (concat target
yuuji@69 1075 (substring str 0 p)
yuuji@69 1076 (format "%%%x" (aref str p))))
yuuji@69 1077 (setq target (concat target (substring str 0 (1+ p)))))
yuuji@69 1078 (setq str (substring str (1+ p))))
yuuji@69 1079 (concat target str)))))
yuuji@69 1080
yuuji@153 1081 (defun yahtml-unescape-string (str)
yuuji@153 1082 "Untranslate reserved URL-encoded string."
yuuji@153 1083 (let ((p 0) c (target "") (md (match-data)) (case-fold-search nil))
yuuji@153 1084 (unwind-protect
yuuji@153 1085 (progn
yuuji@153 1086 (while (string-match "%\\([0-9a-f][0-9a-f]\\)" str p)
yuuji@153 1087 (setq target (concat target
yuuji@153 1088 (substring str p (1- (match-beginning 1))))
yuuji@153 1089 p (match-end 0)
yuuji@153 1090 c (YaTeX-hex (substring
yuuji@153 1091 str (match-beginning 1) (match-end 1)))
yuuji@153 1092 target (concat target (format "%c" c))))
yuuji@153 1093 (concat target (substring str p)))
yuuji@153 1094 (store-match-data md))))
yuuji@153 1095
yuuji@69 1096 (defun yahtml-escape-chars-region (beg end)
yuuji@69 1097 "Translate reserved chars to encoded string in the region."
yuuji@69 1098 (interactive "r")
yuuji@69 1099 (save-excursion
yuuji@69 1100 (let ((e (set-marker (make-marker) end)) c m yes)
yuuji@69 1101 (goto-char beg)
yuuji@69 1102 (while (and (< (point) e)
yuuji@69 1103 (re-search-forward
yuuji@69 1104 (concat yahtml-unsafe-chars-regexp "\\|"
yuuji@69 1105 yahtml-unreserved-chars-regexp) e t))
yuuji@69 1106 (sit-for 0)
yuuji@69 1107 ; (setq m (buffer-modified-p)
yuuji@69 1108 ; c (char-after (1- (point))))
yuuji@69 1109 ; (save-excursion (backward-char 1) (insert " ==>"))
yuuji@69 1110 ; (unwind-protect
yuuji@69 1111 ; (setq yes (y-or-n-p (format "Replace: [%c]" c)))
yuuji@69 1112 ; (save-excursion
yuuji@69 1113 ; (backward-char 1)
yuuji@69 1114 ; (delete-backward-char 4))
yuuji@69 1115 ; (set-buffer-modified-p m))
yuuji@69 1116 (message "Replace: [%c] (y or n):" (setq c (char-after (1- (point)))))
yuuji@69 1117 (if (memq (read-char) '(?y ?Y))
yuuji@69 1118 (progn
yuuji@69 1119 (delete-region (match-beginning 0) (match-end 0))
yuuji@69 1120 (insert (format "%%%x" c)))))
yuuji@69 1121 (set-marker e nil))))
yuuji@69 1122 ;; ab%defgls/.|
yuuji@69 1123
yuuji@57 1124 (defun yahtml:a ()
yuuji@54 1125 "Add-in function for <a>"
yuuji@64 1126 (let ((href ""))
yuuji@64 1127 (setq yahtml-completing-buffer (current-buffer)
yuuji@69 1128 yahtml-urls (append yahtml-urls-private yahtml-urls-local)
yuuji@69 1129 href (yahtml-escape-chars-string
yuuji@394 1130 (read-from-minibuffer-with-history
yuuji@394 1131 "href: " "" yahtml-url-completion-map)))
yuuji@64 1132 (prog1
yuuji@64 1133 (concat (yahtml-make-optional-argument
yuuji@64 1134 "href" href)
yuuji@64 1135 (yahtml-make-optional-argument
yuuji@394 1136 "name" (read-string-with-history "name: ")))
yuuji@64 1137 (if (and (string-match "^http://" href)
yuuji@69 1138 (null (assoc href yahtml-urls-private))
yuuji@69 1139 (null (assoc href yahtml-urls-local)))
yuuji@64 1140 (YaTeX-update-table
yuuji@64 1141 (list href)
yuuji@102 1142 'yahtml-urls-private 'yahtml-urls-private 'yahtml-urls-local)))))
yuuji@57 1143
yuuji@60 1144 (defvar yahtml-parameters-completion-alist
yuuji@61 1145 '(("align" ("top") ("middle") ("bottom") ("left") ("right") ("center"))
yuuji@70 1146 ("clear" ("left") ("right") ("center") ("all") ("none"))
yuuji@80 1147 ("lang" ("ja") ("en") ("kr") ("ch") ("fr"))
yuuji@80 1148 ("src" . file) ("file" . file)
yuuji@70 1149 ("background" . file)
yuuji@70 1150 ("class file name" . file) ("data" . file)
yuuji@69 1151 ("method" ("POST") ("GET"))
yuuji@69 1152 ("rev" . yahtml-link-types-alist)
yuuji@69 1153 ("rel" . yahtml-link-types-alist)
yuuji@70 1154 ("type" . yahtml-content-types-alist)
yuuji@73 1155 ("codetype" . yahtml-content-types-alist)
yuuji@73 1156 ("http-equiv" ("Refresh"))))
yuuji@60 1157
yuuji@69 1158 (defvar yahtml-link-types-alist
yuuji@69 1159 '(("alternate") ("stylesheet") ("start") ("next") ("prev")
yuuji@69 1160 ("contents") ("index") ("glossary") ("chapter") ("section")
yuuji@69 1161 ("subsection") ("appendix") ("help") ("bookmark")))
yuuji@69 1162
yuuji@69 1163 (defvar yahtml-content-types-alist
yuuji@69 1164 '(("text/css") ("text/html") ("text/plain") ("text/richtext")
yuuji@69 1165 ("text/sgml") ("text/xml")
yuuji@80 1166 ("text/javascript") ("text/tcl") ("text/vbscript")
yuuji@69 1167 ("application/octet-stream") ("application/postscript") ("application/pdf")
yuuji@70 1168 ("application/java")
yuuji@70 1169 ("image/jpeg") ("image/gif") ("image/tiff") ("image/png") ("video/mpeg"))
yuuji@69 1170 "Alist of content-types")
yuuji@69 1171
yuuji@69 1172 (defun yahtml-read-parameter (par &optional default alist)
yuuji@69 1173 (let* ((alist
yuuji@69 1174 (cdr-safe (assoc (downcase par)
yuuji@69 1175 (or alist yahtml-parameters-completion-alist))))
yuuji@60 1176 (prompt (concat par ": "))
yuuji@60 1177 v)
yuuji@60 1178 (cond
yuuji@60 1179 ((eq alist 'file)
yuuji@80 1180 (let ((insert-default-directory))
yuuji@80 1181 (read-file-name prompt "" default nil "")))
yuuji@147 1182 ((eq alist 'command)
yuuji@147 1183 (if (fboundp 'read-shell-command)
yuuji@147 1184 (read-shell-command prompt)
yuuji@394 1185 (read-string-with-history prompt)))
yuuji@70 1186 ((and alist (symbolp alist))
yuuji@394 1187 (completing-read-with-history
yuuji@394 1188 prompt (symbol-value alist) nil nil default))
yuuji@60 1189 (alist
yuuji@394 1190 (completing-read-with-history prompt alist nil nil default))
yuuji@60 1191 (t
yuuji@394 1192 (read-string-with-history prompt default)))))
yuuji@60 1193
yuuji@64 1194 (defun yahtml-make-optional-argument (opt arg)
yuuji@64 1195 "Make optional argument string."
yuuji@80 1196 (if (or (null arg) (string= "" arg))
yuuji@64 1197 ""
yuuji@69 1198 (concat " "
yuuji@69 1199 (if yahtml-prefer-upcase-attributes (upcase opt) (downcase opt))
yuuji@64 1200 "=\"" arg "\"")))
yuuji@64 1201
yuuji@80 1202 (defun yahtml:html ()
yuuji@80 1203 "Add-in for <html>"
yuuji@80 1204 (setq yahtml-last-begend "head" yahtml-last-typeface-cmd "head")
yuuji@80 1205 (yahtml-make-optional-argument
yuuji@80 1206 "lang" (yahtml-read-parameter "lang" (if YaTeX-japan "ja"))))
yuuji@80 1207
yuuji@80 1208 (defun yahtml:head ()
yuuji@80 1209 "Add-in for <head>"
yuuji@80 1210 (setq yahtml-last-begend "title" yahtml-last-typeface-cmd "title")
yuuji@80 1211 "")
yuuji@80 1212
yuuji@64 1213 (defun yahtml:body ()
yuuji@64 1214 "Add-in function for <body>"
yuuji@80 1215 (cond
yuuji@80 1216 (yahtml-html4-strict nil)
yuuji@80 1217 (t
yuuji@394 1218 (let ((b (read-string-with-history "bgcolor="))
yuuji@80 1219 (bg (yahtml-read-parameter "background" ""))
yuuji@394 1220 (x (read-string-with-history "text color="))
yuuji@394 1221 (l (read-string-with-history "link color="))
yuuji@394 1222 (v (read-string-with-history "vlink color=")))
yuuji@80 1223 (concat
yuuji@80 1224 (yahtml-make-optional-argument "bgcolor" b)
yuuji@80 1225 (yahtml-make-optional-argument "background" bg)
yuuji@80 1226 (yahtml-make-optional-argument "text" x)
yuuji@80 1227 (yahtml-make-optional-argument "link" l)
yuuji@80 1228 (yahtml-make-optional-argument "vlink" v))))))
yuuji@80 1229
yuuji@80 1230 (defun yahtml-make-style-parameter (proplist)
yuuji@80 1231 "Make CSS property definitions in style attribute."
yuuji@80 1232 (mapconcat
yuuji@353 1233 (function (lambda (x) (if (and (cdr x) (string< "" (cdr x)))
yuuji@353 1234 (format "%s: %s;" (car x) (cdr x)))))
yuuji@80 1235 (delq nil proplist)
yuuji@80 1236 " "))
yuuji@64 1237
yuuji@57 1238 (defun yahtml:img ()
yuuji@57 1239 "Add-in function for <img>"
yuuji@60 1240 (let ((src (yahtml-read-parameter "src"))
yuuji@60 1241 (alg (yahtml-read-parameter "align"))
yuuji@70 1242 alt
yuuji@394 1243 (brd (read-string-with-history "border="))
yuuji@70 1244 (l yahtml-prefer-upcase-attributes)
yuuji@70 1245 info width height bytes comments)
yuuji@70 1246 (and (stringp src) (string< "" src) (file-exists-p src)
yuuji@70 1247 (setq info (yahtml-get-image-info src))
yuuji@70 1248 (car info)
yuuji@70 1249 (setq width (int-to-string (car info))
yuuji@70 1250 height (int-to-string (car (cdr info)))
yuuji@70 1251 bytes (car (cdr (cdr info)))
yuuji@70 1252 comments (nth 4 info)))
yuuji@70 1253 (if info
yuuji@70 1254 (setq alt
yuuji@70 1255 (YaTeX-replace-formats
yuuji@70 1256 yahtml:img-default-alt-format
yuuji@70 1257 (list (cons "x" width)
yuuji@70 1258 (cons "y" height)
yuuji@70 1259 (cons "s" (int-to-string bytes))
yuuji@70 1260 (cons "f" (file-name-nondirectory src))
yuuji@70 1261 (cons "c" (car comments))))))
yuuji@70 1262
yuuji@70 1263 (setq alt (yahtml-read-parameter "alt" alt))
yuuji@70 1264 (setq width (yahtml-read-parameter "width" width)
yuuji@70 1265 height (yahtml-read-parameter "height" height))
yuuji@60 1266 (concat (if l "SRC" "src") "=\"" src "\""
yuuji@64 1267 (yahtml-make-optional-argument "alt" alt)
yuuji@70 1268 (yahtml-make-optional-argument "width" width)
yuuji@70 1269 (yahtml-make-optional-argument "height" height)
yuuji@80 1270 (if yahtml-html4-strict
yuuji@80 1271 (yahtml-make-optional-argument
yuuji@80 1272 "style"
yuuji@80 1273 (if (or brd alg)
yuuji@80 1274 (yahtml-make-style-parameter
yuuji@80 1275 (list
yuuji@80 1276 (if (string< "" alg)
yuuji@80 1277 (cons "align" alg))
yuuji@80 1278 (if (string< "" brd)
yuuji@80 1279 (cons "border"
yuuji@80 1280 (format "%dpx" (string-to-int brd))))))))
yuuji@80 1281 (concat
yuuji@80 1282 (yahtml-make-optional-argument "border" brd)
yuuji@80 1283 (yahtml-make-optional-argument "align" alg))))))
yuuji@57 1284
yuuji@70 1285 (defun yahtml-file-truename (file)
yuuji@70 1286 (cond
yuuji@70 1287 ((fboundp 'file-truename) (file-truename (expand-file-name file)))
yuuji@70 1288 (t (let ((new file))
yuuji@70 1289 (while (and (stringp (setq new (nth 0 (file-attributes file))))
yuuji@70 1290 (not (equal new file)))
yuuji@70 1291 (setq file new))
yuuji@70 1292 file))))
yuuji@70 1293
yuuji@70 1294 (defun yahtml-hex-value (point length &optional little-endian)
yuuji@70 1295 "Return the hex value the POINT positions LENGTH byte stream represents.
yuuji@70 1296 Optional third argument LITTLE-ENDIAN is self extplanatory."
yuuji@70 1297 (setq point (1+ point)) ;translate file offset to Emacs's point value
yuuji@70 1298 (let ((mlt 1)
yuuji@70 1299 (pos (if little-endian point (+ point length -1)))
yuuji@70 1300 (direc (if little-endian 1 -1))
yuuji@70 1301 (value 0))
yuuji@70 1302 (while (> length 0)
yuuji@70 1303 (setq value (+ value (* mlt (char-after pos)))
yuuji@70 1304 pos (+ pos direc)
yuuji@70 1305 mlt (* mlt 256)
yuuji@70 1306 length (1- length)))
yuuji@70 1307 value))
yuuji@70 1308
yuuji@70 1309 (defun yahtml-get-image-info (file)
yuuji@70 1310 "Return the information on the image file FILE.
yuuji@70 1311 Returns list of '(WIDTH HEIGHT BYTES DEPTH COMMENTLIST)."
yuuji@70 1312 (save-excursion
yuuji@70 1313 (let*((tmpbuf (get-buffer-create " *imgheader*"))
yuuji@70 1314 width height bytes depth comment
yuuji@70 1315 (file-coding-system-alist (list (cons "." 'no-conversion))) ;20
yuuji@70 1316 (file-coding-system-for-read (and (boundp '*noconv*) *noconv*)) ;19
yuuji@72 1317 (coding-system-for-read 'no-conversion)
yuuji@70 1318 (seekpoint 1)
yuuji@70 1319 c1 c2 c3 c4 beg end
yuuji@70 1320 (case-fold-search nil))
yuuji@70 1321 (setq bytes (nth 7 (file-attributes (yahtml-file-truename file))))
yuuji@70 1322 (set-buffer tmpbuf)
yuuji@70 1323 (if (boundp 'mc-flag) (set (make-local-variable 'mc-flag) nil))
yuuji@70 1324 (erase-buffer)
yuuji@70 1325 (if (fboundp 'set-buffer-multibyte) (set-buffer-multibyte nil))
yuuji@70 1326 (unwind-protect
yuuji@70 1327 (progn
yuuji@70 1328 (message "Inspecting image information of %s..." file)
yuuji@70 1329 ;; Read 4bytes-more than inspection-bytes in case that
yuuji@70 1330 ;; JPEG marker delimiter (4bytes) is on the alignment.
yuuji@70 1331 (YaTeX-insert-file-contents
yuuji@70 1332 file nil 0 (+ yahtml-image-inspection-bytes 4))
yuuji@70 1333 (goto-char (point-min)) ;assertion
yuuji@70 1334 (setq c1 (char-after 1) ;cache first 4 bytes
yuuji@70 1335 c2 (char-after 2)
yuuji@70 1336 c3 (char-after 3)
yuuji@70 1337 c4 (char-after 4))
yuuji@70 1338 (cond
yuuji@73 1339 ((and (eq c1 ?\377) (eq c2 ?\330)) ; 0xff 0xd8
yuuji@70 1340 ;;JPEG images need JPEG markers inspection
yuuji@70 1341 ;;JPEG markers consist of [ 0xff ID(B) LEN(S) CONTENTS... ]
yuuji@70 1342 ;; Warning: here seekpoint is measured by Emacs's point value
yuuji@70 1343 ;; while yahtml-hex-vale requires file offset
yuuji@70 1344 (setq seekpoint 3) ;where the first JPEG marker exists
yuuji@70 1345 (catch 'exit
yuuji@70 1346 (while (< seekpoint (- (buffer-size) 4))
yuuji@70 1347 (cond
yuuji@73 1348 ((not (eq (char-after seekpoint) ?\377))
yuuji@70 1349 ;maybe corrupted, exit from loop
yuuji@70 1350 (throw 'exit t))
yuuji@73 1351 ((memq
yuuji@73 1352 (char-after (1+ seekpoint))
yuuji@73 1353 '(?\300 ?\301 ?\302 ?\303
yuuji@73 1354 ?\305 ?\306 ?\307 ?\311 ?\312 ?\313 ?\315 ?\316 ?\317))
yuuji@73 1355 ;;'(192 193 194 195 197 198 199 201 202 203 205 206 207
yuuji@70 1356 ;;found!
yuuji@70 1357 (setq height (yahtml-hex-value (+ seekpoint 4) 2)
yuuji@70 1358 width (yahtml-hex-value (+ seekpoint 6) 2)
yuuji@70 1359 depth (yahtml-hex-value (+ seekpoint 3) 1)))
yuuji@73 1360 ((eq (char-after (1+ seekpoint)) ?\376) ;0xFE = comment
yuuji@70 1361 ;; JPEG comment area
yuuji@70 1362 (setq beg (+ seekpoint 2 2)
yuuji@70 1363 end (+ seekpoint
yuuji@70 1364 (yahtml-hex-value (1+ seekpoint) 2) 2))
yuuji@70 1365 (setq comment (cons (buffer-substring beg end) comment)))
yuuji@70 1366 (t ;other markers
yuuji@70 1367 nil)) ;just skip it
yuuji@70 1368 (setq seekpoint (+ seekpoint 2)
yuuji@70 1369 seekpoint (+ seekpoint
yuuji@70 1370 (yahtml-hex-value (1- seekpoint) 2))))))
yuuji@73 1371 ((and (eq c1 ?\211) ;0x89
yuuji@70 1372 (eq c2 ?P) (eq c3 ?N) (eq c4 ?G))
yuuji@70 1373 ;;PNG Image data X=@0x10(L), Y=@0x14(L), D=@0x18(B)
yuuji@70 1374 (setq width (yahtml-hex-value 16 4)
yuuji@70 1375 height (yahtml-hex-value 20 4)
yuuji@70 1376 depth (yahtml-hex-value 24 1)))
yuuji@70 1377 ((looking-at "GIF8")
yuuji@70 1378 ;;GIF Image data X=@0x6(leshort), Y=@0x8(leshort)
yuuji@70 1379 (setq width (yahtml-hex-value 6 2 t)
yuuji@70 1380 height (yahtml-hex-value 8 2 t)))
yuuji@70 1381 ((looking-at "BM")
yuuji@70 1382 ;;# OS/2, Windoze BMP files
yuuji@70 1383 ;;@0x0e = 12 -> OS/2 1.x - X=@0x12(leshort), Y=@0x14(leshort)
yuuji@70 1384 ;;@0x0e = 64 -> OS/2 2.x - X=@0x12(leshort), Y=@0x14(leshort)
yuuji@70 1385 ;;@0x0e = 40 -> Windows 3.x - X=@0x12(lelong), Y=@0x16(lelong)
yuuji@70 1386 (cond
yuuji@70 1387 ((eq (yahtml-hex-value 14 2 t) 40)
yuuji@70 1388 (setq width (yahtml-hex-value 18 4 t)
yuuji@70 1389 height (yahtml-hex-value 22 4 t)))
yuuji@70 1390 (t
yuuji@70 1391 (setq width (yahtml-hex-value 18 2 t)
yuuji@102 1392 height (yahtml-hex-value 20 2 t)))))))
yuuji@70 1393 (message "")
yuuji@70 1394 (kill-buffer tmpbuf))
yuuji@70 1395 (list width height bytes depth (nreverse comment)))))
yuuji@70 1396
yuuji@57 1397 (defun yahtml:form ()
yuuji@57 1398 "Add-in function `form' input format"
yuuji@57 1399 (concat
yuuji@162 1400 " " (if yahtml-prefer-upcase-attributes "METHOD" "method") "=\""
yuuji@394 1401 (completing-read-with-history "Method: " '(("POST") ("GET")) nil t)
yuuji@162 1402 "\""
yuuji@162 1403 (yahtml-make-optional-argument
yuuji@162 1404 (if yahtml-prefer-upcase-attributes "ENCTYPE" "enctype")
yuuji@394 1405 (completing-read-with-history
yuuji@162 1406 "Enctype: "
yuuji@162 1407 '(("application/x-www-form-urlencoded") ("multipart/form-data"))))
yuuji@69 1408 " " (if yahtml-prefer-upcase-attributes "ACTION" "action") "=\""
yuuji@394 1409 (read-string-with-history "Action: ") "\""))
yuuji@57 1410
yuuji@57 1411 (defun yahtml:select ()
yuuji@57 1412 "Add-in function for `select' input format"
yuuji@57 1413 (setq yahtml-last-single-cmd "option")
yuuji@69 1414 (concat " " (if yahtml-prefer-upcase-attributes "NAME" "name") "=\""
yuuji@394 1415 (read-string-with-history "name: ") "\""))
yuuji@57 1416
yuuji@58 1417 (defun yahtml:ol ()
yuuji@73 1418 "Add-in function for <ol>"
yuuji@73 1419 (setq yahtml-last-single-cmd "li")
yuuji@243 1420 (let ((start (YaTeX-read-string-or-skip "start="))
yuuji@243 1421 (type (YaTeX-completing-read-or-skip
yuuji@73 1422 "type=" '(("1") ("a") ("A") ("i") ("I")) nil t)))
yuuji@73 1423 (concat
yuuji@73 1424 (yahtml-make-optional-argument "start" start)
yuuji@73 1425 (yahtml-make-optional-argument "type" type))))
yuuji@58 1426 (defun yahtml:ul ()
yuuji@58 1427 (setq yahtml-last-single-cmd "li") "")
yuuji@58 1428 (defun yahtml:dl ()
yuuji@58 1429 (setq yahtml-last-single-cmd "dt") "")
yuuji@58 1430 (defun yahtml:dt ()
yuuji@58 1431 (setq yahtml-last-single-cmd "dd") "")
yuuji@58 1432
yuuji@61 1433 (defun yahtml:p ()
yuuji@80 1434 (if yahtml-html4-strict nil
yuuji@80 1435 (let ((alg (yahtml-read-parameter "align")))
yuuji@80 1436 (yahtml-make-optional-argument "align" alg))))
yuuji@58 1437
yuuji@57 1438 (defvar yahtml-input-types
yuuji@57 1439 '(("text") ("password") ("checkbox") ("radio") ("submit")
yuuji@60 1440 ("reset") ("image") ("hidden") ("file")))
yuuji@57 1441
yuuji@57 1442 (defun yahtml:input ()
yuuji@57 1443 "Add-in function for `input' form"
yuuji@60 1444 (let ((size "") name type value checked (maxlength "")
yuuji@69 1445 (l yahtml-prefer-upcase-attributes))
yuuji@394 1446 (setq name (read-string-with-history "name: ")
yuuji@243 1447 type (YaTeX-completing-read-or-skip "type (default=text): "
yuuji@57 1448 yahtml-input-types nil t)
yuuji@243 1449 value (YaTeX-read-string-or-skip "value: "))
yuuji@57 1450 (if (string-match "text\\|password\\|^$" type)
yuuji@243 1451 (setq size (YaTeX-read-string-or-skip "size: ")
yuuji@243 1452 maxlength (YaTeX-read-string-or-skip "maxlength: ")))
yuuji@57 1453 (concat
yuuji@60 1454 (if l "NAME" "name") "=\"" name "\""
yuuji@64 1455 (yahtml-make-optional-argument "type" type)
yuuji@64 1456 (yahtml-make-optional-argument "value" value)
yuuji@64 1457 (yahtml-make-optional-argument "size" size)
yuuji@102 1458 (yahtml-make-optional-argument "maxlength" maxlength))))
yuuji@59 1459
yuuji@59 1460 (defun yahtml:textarea ()
yuuji@59 1461 "Add-in function for `textarea'"
yuuji@59 1462 (interactive)
yuuji@59 1463 (let (name rows cols)
yuuji@394 1464 (setq name (read-string-with-history "Name: ")
yuuji@394 1465 cols (read-string-with-history "Columns: ")
yuuji@394 1466 rows (read-string-with-history "Rows: "))
yuuji@59 1467 (concat
yuuji@69 1468 (concat (if yahtml-prefer-upcase-attributes "NAME=" "name=")
yuuji@59 1469 "\"" name "\"")
yuuji@64 1470 (yahtml-make-optional-argument "cols" cols)
yuuji@64 1471 (yahtml-make-optional-argument "rows" rows))))
yuuji@59 1472
yuuji@64 1473 (defun yahtml:table ()
yuuji@64 1474 "Add-in function for `table'"
yuuji@394 1475 (let ((b (read-string-with-history "border="))
yuuji@80 1476 (a (yahtml-read-parameter
yuuji@80 1477 "align" nil '(("align" ("right")("center"))))))
yuuji@80 1478 (if yahtml-html4-strict
yuuji@80 1479 (yahtml-make-optional-argument
yuuji@80 1480 "style"
yuuji@80 1481 (if (or (string< "" b) (string< "" a))
yuuji@80 1482 (yahtml-make-style-parameter
yuuji@80 1483 (append
yuuji@80 1484 (if (string< "" b)
yuuji@80 1485 (list
yuuji@80 1486 (cons "border" (format "%dpx solid" (string-to-int b)))
yuuji@80 1487 (cons "border-collapse" "collapse")))
yuuji@80 1488 (if (string< "" a)
yuuji@80 1489 (cond
yuuji@80 1490 ((string-match "right" a)
yuuji@80 1491 (list (cons "margin-left" "auto")
yuuji@80 1492 (cons "margin-right" "0")))
yuuji@80 1493 ((string-match "center" a)
yuuji@80 1494 (list (cons "margin-left" "auto")
yuuji@80 1495 (cons "margin-right" "auto")))))))))
yuuji@80 1496 (concat
yuuji@80 1497 (yahtml-make-optional-argument "border" b)
yuuji@80 1498 (yahtml-make-optional-argument "align" a)))))
yuuji@80 1499
yuuji@69 1500 ;(fset 'yahtml:caption 'yahtml:p)
yuuji@69 1501 (defun yahtml:caption ()
yuuji@69 1502 "Add-in function for `caption' in table tag"
yuuji@80 1503 (let ((par (yahtml-read-parameter "align")))
yuuji@80 1504 (if yahtml-html4-strict
yuuji@80 1505 (yahtml-make-optional-argument
yuuji@80 1506 "style" (if par (yahtml-make-style-parameter
yuuji@80 1507 (list (cons "caption-side" par)))))
yuuji@80 1508 (yahtml-make-optional-argument "align" par))))
yuuji@64 1509
yuuji@64 1510 (defun yahtml:font ()
yuuji@64 1511 "Add-in function for `font'"
yuuji@68 1512 (concat
yuuji@394 1513 (yahtml-make-optional-argument "color" (read-string-with-history "color="))
yuuji@394 1514 (yahtml-make-optional-argument "size" (read-string-with-history "size="))))
yuuji@59 1515
yuuji@69 1516 (defun yahtml:style ()
yuuji@69 1517 "Add-in function for `style'"
yuuji@69 1518 (yahtml-make-optional-argument
yuuji@394 1519 "type" (read-string-with-history "type=" "text/css")))
yuuji@69 1520
yuuji@80 1521 (defun yahtml:script ()
yuuji@80 1522 "Add-in function for `script'"
yuuji@80 1523 (concat
yuuji@80 1524 (yahtml-make-optional-argument
yuuji@80 1525 "type" (yahtml-read-parameter "type" "text/javascript"))
yuuji@80 1526 (yahtml-make-optional-argument
yuuji@80 1527 "src" (yahtml-read-parameter "src" ""))))
yuuji@80 1528
yuuji@69 1529 (defun yahtml:tr ()
yuuji@69 1530 "Add-in function for `tr'"
yuuji@69 1531 (setq ;yahtml-last-begend "td" ;; which do you prefer?
yuuji@69 1532 yahtml-last-typeface-cmd "td")
yuuji@69 1533 "")
yuuji@69 1534
yuuji@69 1535 (defun yahtml:link ()
yuuji@69 1536 "Add-in function for `link' (まだちょっと良く分かってない)"
yuuji@69 1537 (let (rel rev type href)
yuuji@69 1538 (setq rel (yahtml-read-parameter "rel"))
yuuji@69 1539 (cond
yuuji@69 1540 ((equal rel "")
yuuji@69 1541 (concat (yahtml-make-optional-argument
yuuji@69 1542 "rev" (yahtml-read-parameter "rev"))
yuuji@69 1543 (yahtml-make-optional-argument
yuuji@69 1544 "href" (yahtml-read-parameter "href")
yuuji@69 1545 ;;他に良く使うのって何?
yuuji@69 1546 )))
yuuji@69 1547 ((string-match "stylesheet" rel)
yuuji@69 1548 (concat
yuuji@69 1549 (yahtml-make-optional-argument "rel" rel)
yuuji@69 1550 (yahtml-make-optional-argument
yuuji@69 1551 "type" (yahtml-read-parameter "type" "text/css"))
yuuji@69 1552 (progn
yuuji@69 1553 (setq href
yuuji@394 1554 (read-from-minibuffer-with-history
yuuji@394 1555 "href: " "" yahtml-url-completion-map))
yuuji@69 1556 (if (string< "" href)
yuuji@69 1557 (progn
yuuji@69 1558 (if (and (file-exists-p (yahtml-url-to-path href))
yuuji@69 1559 (y-or-n-p "Load css symbols now? "))
yuuji@69 1560 (setq yahtml-css-class-alist
yuuji@69 1561 (yahtml-css-collect-classes-file
yuuji@69 1562 (yahtml-url-to-path href) yahtml-css-class-alist)))
yuuji@69 1563 (message "")
yuuji@69 1564 (yahtml-make-optional-argument "href" href))))))
yuuji@80 1565 (t
yuuji@80 1566 (concat
yuuji@80 1567 (yahtml-make-optional-argument "rel" rel)
yuuji@80 1568 (yahtml-make-optional-argument
yuuji@80 1569 "type" (yahtml-read-parameter "type" "text/css"))
yuuji@80 1570 (yahtml-make-optional-argument
yuuji@102 1571 "href"
yuuji@394 1572 (read-from-minibuffer-with-history
yuuji@394 1573 "href: " "" yahtml-url-completion-map)))))))
yuuji@69 1574
yuuji@73 1575 (defvar yahtml:meta-names
yuuji@73 1576 '(("name" ("keywords")("author")("copyright")("date")("GENERATOR"))))
yuuji@73 1577
yuuji@73 1578 (defun yahtml:meta ()
yuuji@73 1579 (let ((name (yahtml-make-optional-argument
yuuji@73 1580 "name"
yuuji@73 1581 (yahtml-read-parameter "name" nil yahtml:meta-names)))
yuuji@73 1582 http-equiv content)
yuuji@73 1583 (if (string= "" name)
yuuji@73 1584 (if (string-match
yuuji@73 1585 "Content-type"
yuuji@73 1586 (setq http-equiv (yahtml-make-optional-argument
yuuji@73 1587 "http-equiv"
yuuji@73 1588 (yahtml-read-parameter "http-equiv" nil))))
yuuji@73 1589 (error "It's very bad idea to set Content-type in META. %s"
yuuji@73 1590 "See docs/qanda")
yuuji@73 1591 (concat http-equiv
yuuji@73 1592 (yahtml-make-optional-argument
yuuji@73 1593 "content" (yahtml-read-parameter "content"))))
yuuji@73 1594 (concat
yuuji@73 1595 name
yuuji@73 1596 (yahtml-make-optional-argument
yuuji@73 1597 "content"
yuuji@73 1598 (cond
yuuji@73 1599 ((string-match "date" name)
yuuji@394 1600 (read-string-with-history "Date: " (current-time-string)))
yuuji@73 1601 ((string-match "author" name)
yuuji@394 1602 (read-string-with-history "Author: "
yuuji@73 1603 (if (and (user-full-name) (string< "" (user-full-name)))
yuuji@73 1604 (user-full-name)
yuuji@73 1605 (user-login-name))))
yuuji@73 1606 ((string-match "GENERATOR" name)
yuuji@394 1607 (setq content (read-string-with-history
yuuji@394 1608 "Generator: " "User-agent: "))
yuuji@73 1609 (if (string-match "yahtml" content)
yuuji@73 1610 (message "Thank you!"))
yuuji@73 1611 content)
yuuji@394 1612 (t (read-string-with-history (concat name ": ")))))))))
yuuji@73 1613
yuuji@70 1614 (defun yahtml:br ()
yuuji@70 1615 (yahtml-make-optional-argument "clear" (yahtml-read-parameter "clear")))
yuuji@70 1616
yuuji@70 1617 (defun yahtml:object ()
yuuji@70 1618 (let ((codetype (yahtml-read-parameter "codetype" "application/java"))
yuuji@70 1619 data classid)
yuuji@70 1620 (cond
yuuji@70 1621 ((string-match "java" codetype)
yuuji@70 1622 (let ((completion-ignored-extensions
yuuji@70 1623 ;;any extensions except ".class"
yuuji@70 1624 '(".java" ".html" ".htm" ".gif" ".jpg" ".jpeg" ".png")))
yuuji@70 1625 (setq classid (concat "java:"
yuuji@70 1626 (yahtml-read-parameter "class file name"))))
yuuji@70 1627 (concat
yuuji@70 1628 (yahtml-make-optional-argument "codetype" codetype)
yuuji@70 1629 (yahtml-make-optional-argument "classid" classid)
yuuji@70 1630 (yahtml-make-optional-argument
yuuji@70 1631 "width" (yahtml-read-parameter "width"))
yuuji@70 1632 (yahtml-make-optional-argument
yuuji@70 1633 "height" (yahtml-read-parameter "height"))
yuuji@70 1634 (yahtml-make-optional-argument
yuuji@102 1635 "align" (yahtml-read-parameter "align"))))
yuuji@70 1636 (t
yuuji@102 1637 ""))))
yuuji@70 1638
yuuji@80 1639 (defun yahtml:abbr ()
yuuji@80 1640 "Add-in function for abbr."
yuuji@80 1641 (yahtml-make-optional-argument "title" (yahtml-read-parameter "title")))
yuuji@80 1642
yuuji@136 1643 (defun yahtml:button ()
yuuji@136 1644 (concat
yuuji@136 1645 (yahtml-make-optional-argument
yuuji@136 1646 "name" (yahtml-read-parameter "name"))
yuuji@136 1647 (yahtml-make-optional-argument
yuuji@136 1648 "type" (yahtml-read-parameter
yuuji@137 1649 "type" "button" '(("submit")("reset")("button"))))
yuuji@137 1650 (yahtml-make-optional-argument
yuuji@137 1651 "value" (yahtml-read-parameter "value"))))
yuuji@136 1652
yuuji@59 1653 ;;; ---------- Simple tag ----------
yuuji@58 1654 (defun yahtml-insert-tag (region-mode &optional tag)
yuuji@54 1655 "Insert <TAG> </TAG> and put cursor inside of them."
yuuji@58 1656 (interactive "P")
yuuji@392 1657 (setq yahtml-current-completion-type 'inline
yuuji@392 1658 region-mode (or region-mode (YaTeX-region-active-p)))
yuuji@58 1659 (or tag
yuuji@60 1660 (let ((completion-ignore-case t))
yuuji@60 1661 (setq tag
yuuji@60 1662 (YaTeX-cplread-with-learning
yuuji@64 1663 (format "Tag %s(default %s): "
yuuji@60 1664 (if region-mode "region: " "") yahtml-last-typeface-cmd)
yuuji@60 1665 'yahtml-typeface-table 'yahtml-user-typeface-table
yuuji@60 1666 'yahtml-tmp-typeface-table))))
yuuji@58 1667 (if (string= "" tag) (setq tag yahtml-last-typeface-cmd))
yuuji@60 1668 (setq tag (or (cdr (assoc tag yahtml-typeface-table)) tag))
yuuji@60 1669 (setq yahtml-last-typeface-cmd tag
yuuji@60 1670 tag (funcall (if yahtml-prefer-upcases 'upcase 'downcase) tag))
yuuji@58 1671 (if region-mode
yuuji@58 1672 (if (if (string< "19" emacs-version) (mark t) (mark))
yuuji@58 1673 (save-excursion
yuuji@58 1674 (if (> (point) (mark)) (exchange-point-and-mark))
yuuji@60 1675 (insert (format "<%s%s>" tag (yahtml-addin tag)))
yuuji@58 1676 (exchange-point-and-mark)
yuuji@58 1677 (insert "</" tag ">"))
yuuji@58 1678 (message "No mark set now"))
yuuji@60 1679 (insert (format "<%s%s>" tag (yahtml-addin tag)))
yuuji@58 1680 (save-excursion (insert (format "</%s>" tag)))))
yuuji@54 1681
yuuji@61 1682 (defun yahtml-insert-tag-region (&optional tag)
yuuji@61 1683 "Call yahtml-insert-tag with region mode."
yuuji@61 1684 (interactive)
yuuji@61 1685 (yahtml-insert-tag t tag))
yuuji@61 1686
yuuji@80 1687 (defvar yahtml-need-single-closer nil) ;for test
yuuji@57 1688 (defun yahtml-insert-single (cmd)
yuuji@57 1689 "Insert <CMD>."
yuuji@57 1690 (interactive
yuuji@58 1691 (list
yuuji@58 1692 (let ((completion-ignore-case t))
yuuji@58 1693 (YaTeX-cplread-with-learning
yuuji@58 1694 (format "Command%s: "
yuuji@58 1695 (if yahtml-last-single-cmd
yuuji@58 1696 (concat "(default " yahtml-last-single-cmd ")") ""))
yuuji@58 1697 'yahtml-single-cmd-table 'yahtml-user-single-cmd-table
yuuji@58 1698 'yahtml-tmp-single-cmd-table))))
yuuji@60 1699 (if (string= "" cmd) (setq cmd yahtml-last-single-cmd))
yuuji@58 1700 (setq yahtml-last-single-cmd
yuuji@60 1701 (or (cdr (assoc cmd yahtml-single-cmd-table)) cmd))
yuuji@60 1702 (setq cmd (funcall (if yahtml-prefer-upcases 'upcase 'downcase)
yuuji@60 1703 yahtml-last-single-cmd))
yuuji@80 1704 (insert (format "<%s%s%s>"
yuuji@80 1705 cmd
yuuji@80 1706 (yahtml-addin cmd)
yuuji@80 1707 (if (and yahtml-need-single-closer
yuuji@80 1708 (assoc cmd '(("br")("hr"))))
yuuji@80 1709 " /" "")))
yuuji@80 1710 (if (assoc cmd yahtml-env-table)
yuuji@80 1711 (save-excursion (insert (format "</%s>" cmd)))))
yuuji@57 1712
yuuji@64 1713 (defun yahtml-insert-p (&optional arg)
yuuji@64 1714 "Convenient function to insert <p></p>"
yuuji@64 1715 (interactive "P")
yuuji@80 1716 (if (or yahtml-always-/p arg) (yahtml-insert-tag arg "p")
yuuji@68 1717 (yahtml-insert-single "p")))
yuuji@64 1718
yuuji@70 1719 (defun yahtml-insert-amps (arg)
yuuji@70 1720 "Insert char-entity references via ampersand"
yuuji@70 1721 ;; Thanks; http://www.tsc.co.jp/~asada/html/wdg40_f/entities/
yuuji@70 1722 (interactive "P")
yuuji@70 1723 (let*((mess "") c
yuuji@70 1724 (list (append yahtml-entity-reference-chars-alist-default
yuuji@70 1725 yahtml-entity-reference-chars-alist))
yuuji@70 1726 (l list))
yuuji@70 1727 (while l
yuuji@70 1728 (setq mess (format "%s %c" mess (car (car l)) (cdr (car l)))
yuuji@70 1729 l (cdr l)))
yuuji@319 1730 (message "Char-entity reference: %s SPC=& RET=&; BS=%s Other=&#..;"
yuuji@319 1731 mess (if YaTeX-japan "直前の文字" "Preceding-Char"))
yuuji@70 1732 (setq c (read-char))
yuuji@70 1733 (cond
yuuji@70 1734 ((equal c (car-safe (assoc c list)))
yuuji@70 1735 (insert (format "&%s;" (cdr (assoc c list)))))
yuuji@70 1736 ((or (equal c ?\n) (equal c ?\r))
yuuji@70 1737 (insert "&;")
yuuji@70 1738 (forward-char -1))
yuuji@70 1739 ((equal c ? )
yuuji@70 1740 (insert ?&))
yuuji@319 1741 ((and (memq c '(127 8))
yuuji@319 1742 (setq c (preceding-char))
yuuji@319 1743 (delete-backward-char 1)
yuuji@319 1744 nil)) ;Fall through to the next 't block
yuuji@320 1745 (t (insert (format "&#x%x;" c))))))
yuuji@70 1746
yuuji@80 1747 (defun yahtml:!--\#include ()
yuuji@80 1748 (let ((file (yahtml-read-parameter "file" "")))
yuuji@80 1749 (format "%s=\"%s\"--" (if (string-match "/" file) "virtual" "file") file)))
yuuji@80 1750
yuuji@80 1751 (defun yahtml:!--\#exec ()
yuuji@147 1752 (format "cmd=\"%s\"--"
yuuji@147 1753 (yahtml-read-parameter "cmd" "" '(("cmd" . command)))))
yuuji@80 1754
yuuji@57 1755 ;;; ---------- Jump ----------
yuuji@57 1756 (defun yahtml-on-href-p ()
yuuji@57 1757 "Check if point is on href clause."
yuuji@60 1758 (let ((p (point)) e cmd (case-fold-search t))
yuuji@57 1759 (save-excursion
yuuji@69 1760 (and ;;(string= (YaTeX-inner-environment t) "a") ;aでなくても許可にした
yuuji@60 1761 (save-excursion
yuuji@69 1762 ;;(search-forward "</a>" nil t) ;aでなくても許可にした
yuuji@69 1763 (search-forward "[\" \t\n]" nil t)
yuuji@60 1764 (setq e (point)))
yuuji@69 1765 ;(goto-char (get 'YaTeX-inner-environment 'point))
yuuji@69 1766 (re-search-backward "<\\(a\\|link\\)\\>" nil t)
yuuji@60 1767 (search-forward "href" e t)
yuuji@60 1768 (search-forward "=" e t)
yuuji@64 1769 (progn
yuuji@64 1770 (skip-chars-forward " \t\n")
yuuji@64 1771 (looking-at "\"?\\([^\"> \t\n]+\\)\"?"))
yuuji@57 1772 (< p (match-end 0))
yuuji@153 1773 (yahtml-unescape-string (YaTeX-match-string 1))))))
yuuji@57 1774
yuuji@58 1775 (defun yahtml-netscape-sentinel (proc mes)
yuuji@58 1776 (cond
yuuji@58 1777 ((null (buffer-name (process-buffer proc)))
yuuji@58 1778 (set-process-buffer proc nil))
yuuji@58 1779 ((eq (process-status proc) 'exit)
yuuji@58 1780 (let ((cb (current-buffer)))
yuuji@58 1781 (set-buffer (process-buffer proc))
yuuji@58 1782 (goto-char (point-min))
yuuji@58 1783 (if (search-forward "not running" nil t)
yuuji@58 1784 (progn
yuuji@58 1785 (message "Starting netscape...")
yuuji@58 1786 (start-process
yuuji@60 1787 "browser" (process-buffer proc)
yuuji@60 1788 shell-file-name yahtml-shell-command-option
yuuji@60 1789 (format "%s \"%s\"" yahtml-www-browser
yuuji@58 1790 (get 'yahtml-netscape-sentinel 'url)))
yuuji@58 1791 (message "Starting netscape...Done")))
yuuji@58 1792 (set-buffer cb)))))
yuuji@58 1793
yuuji@58 1794 (defvar yahtml-browser-process nil)
yuuji@58 1795
yuuji@58 1796 (defun yahtml-browse-html (href)
yuuji@58 1797 "Call WWW Browser to see HREF."
yuuji@58 1798 (let ((pb "* WWW Browser *") (cb (current-buffer)))
yuuji@58 1799 (cond
yuuji@64 1800 ((string-match "^start\\>" yahtml-www-browser)
yuuji@64 1801 (if (get-buffer pb)
yuuji@64 1802 (progn (set-buffer pb) (erase-buffer) (set-buffer cb)))
yuuji@64 1803 (put 'yahtml-netscape-sentinel 'url href)
yuuji@64 1804 (set-process-sentinel
yuuji@64 1805 (setq yahtml-browser-process
yuuji@64 1806 (start-process
yuuji@64 1807 "browser" pb shell-file-name yahtml-shell-command-option
yuuji@64 1808 (format "%s \"%s\"" yahtml-www-browser href)))
yuuji@64 1809 'yahtml-netscape-sentinel))
yuuji@86 1810 ((and (string-match
yuuji@86 1811 "[Nn]etscape\\|[Ff]irefox\\|[Mm]ozilla" yahtml-www-browser)
yuuji@60 1812 (not (eq system-type 'windows-nt)))
yuuji@58 1813 (if (get-buffer pb)
yuuji@58 1814 (progn (set-buffer pb) (erase-buffer) (set-buffer cb)))
yuuji@58 1815 (put 'yahtml-netscape-sentinel 'url href)
yuuji@58 1816 (set-process-sentinel
yuuji@58 1817 (setq yahtml-browser-process
yuuji@58 1818 (start-process
yuuji@60 1819 "browser" pb shell-file-name yahtml-shell-command-option ;"-c"
yuuji@60 1820 (format "%s -remote \"openURL(%s)\"" yahtml-www-browser href)))
yuuji@58 1821 'yahtml-netscape-sentinel))
yuuji@58 1822 ((and (string= "w3" yahtml-www-browser) (fboundp 'w3-fetch))
yuuji@58 1823 (w3-fetch href))
yuuji@58 1824 ((stringp yahtml-www-browser)
yuuji@60 1825 (if (and yahtml-browser-process
yuuji@60 1826 (eq (process-status yahtml-browser-process) 'run))
yuuji@58 1827 (message "%s is already running" yahtml-www-browser)
yuuji@58 1828 (setq yahtml-browser-process
yuuji@58 1829 (start-process
yuuji@60 1830 "browser" "* WWW Browser *"
yuuji@60 1831 shell-file-name yahtml-shell-command-option
yuuji@60 1832 (format "%s \"%s\"" yahtml-www-browser href)))))
yuuji@58 1833 (t
yuuji@58 1834 (message "Sorry, jump across http is not supported.")))))
yuuji@58 1835
yuuji@57 1836 (defun yahtml-goto-corresponding-href (&optional other)
yuuji@57 1837 "Go to corresponding name."
yuuji@64 1838 (let ((href (yahtml-on-href-p)) file name (parent buffer-file-name))
yuuji@57 1839 (if href
yuuji@57 1840 (cond
yuuji@80 1841 ((string-match "^\\(ht\\|f\\)tps?:" href)
yuuji@58 1842 (yahtml-browse-html href))
yuuji@57 1843 (t (setq file (substring href 0 (string-match "#" href)))
yuuji@57 1844 (if (string-match "#" href)
yuuji@57 1845 (setq name (substring href (1+ (string-match "#" href)))))
yuuji@57 1846 (if (string< "" file)
yuuji@57 1847 (progn
yuuji@57 1848 (if (string-match "/$" file)
yuuji@70 1849 (or (catch 'dirindex
yuuji@70 1850 (mapcar
yuuji@72 1851 (function
yuuji@72 1852 (lambda (f)
yuuji@72 1853 (if (file-exists-p (concat file f))
yuuji@72 1854 (throw 'dirindex
yuuji@72 1855 (setq file (concat file f))))))
yuuji@73 1856 (yahtml-get-directory-index))
yuuji@73 1857 nil)
yuuji@70 1858 (setq file (concat file yahtml-directory-index))))
yuuji@58 1859 (if (string-match "^/" file)
yuuji@58 1860 (setq file (yahtml-url-to-path file)))
yuuji@57 1861 (if other (YaTeX-switch-to-buffer-other-window file)
yuuji@64 1862 (YaTeX-switch-to-buffer file))
yuuji@64 1863 (or YaTeX-parent-file (setq YaTeX-parent-file parent))))
yuuji@57 1864 (if name
yuuji@57 1865 (progn (set-mark-command nil) (yahtml-jump-to-name name)))
yuuji@57 1866 t)))))
yuuji@57 1867
yuuji@57 1868 (defun yahtml-jump-to-name (name)
yuuji@57 1869 "Jump to html's named tag."
yuuji@69 1870 (setq name (format "\\(name\\|id\\)\\s *=\\s *\"?%s\\>\"?" name))
yuuji@57 1871 (or (and (re-search-forward name nil t) (goto-char (match-beginning 0)))
yuuji@57 1872 (and (re-search-backward name nil t) (goto-char (match-beginning 0)))
yuuji@57 1873 (message "Named tag `%s' not found" (substring href 1))))
yuuji@57 1874
yuuji@57 1875 (defun yahtml-on-begend-p (&optional p)
yuuji@57 1876 "Check if point is on begend clause."
yuuji@60 1877 (let ((p (or p (point))) cmd (case-fold-search t))
yuuji@57 1878 (save-excursion
yuuji@60 1879 (goto-char p)
yuuji@58 1880 (if (equal (char-after (point)) ?<) (forward-char 1))
yuuji@57 1881 (if (and (re-search-backward "<" nil t)
yuuji@57 1882 (looking-at
yuuji@70 1883 ;(concat "<\\(/?" yahtml-struct-name-regexp "\\)\\b")
yuuji@102 1884 "<\\(/?[A-Z][A-Z0-9]*\\)\\b")
yuuji@57 1885 (condition-case nil
yuuji@58 1886 (forward-list 1)
yuuji@58 1887 (error nil))
yuuji@57 1888 (< p (point)))
yuuji@57 1889 (YaTeX-match-string 1)))))
yuuji@57 1890
yuuji@58 1891 (defun yahtml-goto-corresponding-begend (&optional noerr)
yuuji@58 1892 "Go to corresponding opening/closing tag.
yuuji@58 1893 Optional argument NOERR causes no error for unballanced tag."
yuuji@58 1894 (let ((cmd (yahtml-on-begend-p)) m0
yuuji@58 1895 (p (point)) (case-fold-search t) func str (nest 0))
yuuji@58 1896 (cond
yuuji@58 1897 (cmd
yuuji@58 1898 (setq m0 (match-beginning 0))
yuuji@58 1899 (if (= (aref cmd 0) ?/) ;on </cmd> line
yuuji@58 1900 (setq cmd (substring cmd 1)
yuuji@58 1901 str (format "\\(<%s\\)\\|\\(</%s\\)" cmd cmd)
yuuji@58 1902 func 're-search-backward)
yuuji@58 1903 (setq str (format "\\(</%s\\)\\|\\(<%s\\)" cmd cmd)
yuuji@58 1904 func 're-search-forward))
yuuji@58 1905 (while (and (>= nest 0) (funcall func str nil t))
yuuji@58 1906 (if (equal m0 (match-beginning 0))
yuuji@58 1907 nil
yuuji@58 1908 (setq nest (+ nest (if (match-beginning 1) -1 1)))))
yuuji@58 1909 (if (< nest 0)
yuuji@58 1910 (goto-char (match-beginning 0))
yuuji@58 1911 (funcall
yuuji@58 1912 (if noerr 'message 'error)
yuuji@58 1913 "Corresponding tag of `%s' not found." cmd)
yuuji@58 1914 (goto-char p)
yuuji@58 1915 nil))
yuuji@58 1916 (t nil))))
yuuji@58 1917
yuuji@58 1918 (defun yahtml-current-tag ()
yuuji@80 1919 "Return the current tag name including #exec and #include."
yuuji@58 1920 (save-excursion
yuuji@58 1921 (let ((p (point)) b tag)
yuuji@58 1922 (or (bobp)
yuuji@58 1923 (looking-at "<")
yuuji@58 1924 (progn (skip-chars-backward "^<") (forward-char -1)))
yuuji@58 1925 (setq b (point))
yuuji@58 1926 (skip-chars-forward "<")
yuuji@80 1927 (setq tag (YaTeX-buffer-substring
yuuji@58 1928 (point) (progn (skip-chars-forward "^ \t\n") (point))))
yuuji@58 1929 (goto-char b)
yuuji@58 1930 (forward-list 1)
yuuji@58 1931 (and (< p (point)) tag))))
yuuji@58 1932
yuuji@68 1933 (defun yahtml-get-attrvalue (attr)
yuuji@68 1934 "Extract current tag's attribute value from buffer."
yuuji@68 1935 (let (e (case-fold-search t))
yuuji@68 1936 (save-excursion
yuuji@68 1937 (or (looking-at "<")
yuuji@68 1938 (progn (skip-chars-backward "^<") (backward-char 1)))
yuuji@68 1939 (setq e (save-excursion (forward-list 1) (point)))
yuuji@68 1940 (if (and
yuuji@68 1941 (re-search-forward (concat "\\b" attr "\\b") e t)
yuuji@68 1942 (progn (skip-chars-forward " \t\n=")
yuuji@68 1943 (looking-at "\"?\\([^\"> \t\n]+\\)\"?")))
yuuji@68 1944 (YaTeX-match-string 1)))))
yuuji@68 1945
yuuji@80 1946 (defun yahtml-goto-corresponding-img ()
yuuji@80 1947 "View image on point"
yuuji@80 1948 (let ((tag (yahtml-current-tag)) image (p (point)) (case-fold-search t))
yuuji@80 1949 (if (and tag
yuuji@80 1950 (string-match "img" tag)
yuuji@153 1951 (setq image
yuuji@153 1952 (yahtml-unescape-string (yahtml-get-attrvalue "src"))))
yuuji@80 1953 (progn
yuuji@80 1954 (message "Invoking %s %s..." yahtml-image-viewer image)
yuuji@80 1955 (start-process
yuuji@80 1956 "Viewer" " * Image Viewer *"
yuuji@80 1957 shell-file-name yahtml-shell-command-option ;"-c"
yuuji@80 1958 (concat yahtml-image-viewer " " image))
yuuji@80 1959 (message "Invoking %s %s...Done" yahtml-image-viewer image)))))
yuuji@80 1960
yuuji@68 1961 (defun yahtml-goto-corresponding-source (&optional other)
yuuji@80 1962 "Goto applet's or script's source."
yuuji@68 1963 (let ((env (yahtml-current-tag)) s (p (point)))
yuuji@68 1964 (cond
yuuji@68 1965 ((string-match "applet" env)
yuuji@153 1966 (if (setq s (yahtml-unescape-string (yahtml-get-attrvalue "code")))
yuuji@68 1967 (progn
yuuji@68 1968 (setq s (YaTeX-match-string 1)
yuuji@68 1969 s (concat
yuuji@68 1970 (substring s 0 (string-match "\\.[A-Za-z]+$" s))
yuuji@68 1971 ".java"))
yuuji@68 1972 (if other (YaTeX-switch-to-buffer-other-window s)
yuuji@68 1973 (YaTeX-switch-to-buffer s))
yuuji@68 1974 s) ;return source file name
yuuji@68 1975 (message "No applet source specified")
yuuji@68 1976 (sit-for 1)
yuuji@68 1977 nil))
yuuji@80 1978 ((string-match "script" env)
yuuji@80 1979 (if (setq s (yahtml-get-attrvalue "src"))
yuuji@80 1980 (progn
yuuji@80 1981 (funcall (if other 'YaTeX-switch-to-buffer-other-window
yuuji@80 1982 'YaTeX-switch-to-buffer)
yuuji@80 1983 (yahtml-url-to-path s))
yuuji@80 1984 s)))
yuuji@68 1985 ((string-match "!--#include" env)
yuuji@68 1986 (cond
yuuji@68 1987 ((setq s (yahtml-get-attrvalue "file")) ;<!--#include file="foo"-->
yuuji@68 1988 (if other (YaTeX-switch-to-buffer-other-window s)
yuuji@68 1989 (YaTeX-switch-to-buffer s))
yuuji@68 1990 s)
yuuji@68 1991 ((setq s (yahtml-get-attrvalue "virtual"));<!--#include virtual="foo"-->
yuuji@68 1992 (setq s (yahtml-url-to-path s))
yuuji@68 1993 (if other (YaTeX-switch-to-buffer-other-window s)
yuuji@68 1994 (YaTeX-switch-to-buffer s))
yuuji@68 1995 s)))
yuuji@68 1996 ((and (string-match "!--#exec" env)
yuuji@68 1997 (setq s (yahtml-get-attrvalue "cmd")))
yuuji@68 1998 (setq s (substring s 0 (string-match " \t\\?" s))) ;get argv0
yuuji@68 1999 (let ((b " *yahtmltmp*")) ;peek a little
yuuji@68 2000 (unwind-protect
yuuji@68 2001 (progn
yuuji@68 2002 (set-buffer (get-buffer-create b))
yuuji@70 2003 (YaTeX-insert-file-contents s nil 0 100)
yuuji@68 2004 (if (looking-at "#!")
yuuji@68 2005 (if other (YaTeX-switch-to-buffer-other-window s)
yuuji@68 2006 (YaTeX-switch-to-buffer s))))
yuuji@68 2007 (kill-buffer (get-buffer b)))
yuuji@68 2008 (get-file-buffer s))))))
yuuji@68 2009
yuuji@57 2010 (defun yahtml-goto-corresponding-* (&optional other)
yuuji@57 2011 "Go to corresponding object."
yuuji@80 2012 (interactive "P")
yuuji@57 2013 (cond
yuuji@57 2014 ((yahtml-goto-corresponding-href other))
yuuji@58 2015 ((yahtml-goto-corresponding-img))
yuuji@80 2016 ((yahtml-goto-corresponding-source other))
yuuji@58 2017 ((yahtml-goto-corresponding-begend))
yuuji@102 2018 (t (message "I don't know where to go."))))
yuuji@57 2019
yuuji@57 2020 (defun yahtml-goto-corresponding-*-other-window ()
yuuji@57 2021 "Go to corresponding object."
yuuji@57 2022 (interactive)
yuuji@57 2023 (yahtml-goto-corresponding-* t))
yuuji@57 2024
yuuji@64 2025 (defun yahtml-visit-main ()
yuuji@64 2026 "Go to parent file from where you visit current file."
yuuji@64 2027 (interactive)
yuuji@64 2028 (if YaTeX-parent-file (YaTeX-switch-to-buffer YaTeX-parent-file)))
yuuji@64 2029
yuuji@58 2030 ;;; ---------- killing ----------
yuuji@58 2031 (defun yahtml-kill-begend (&optional whole)
yuuji@68 2032 (let ((tag (yahtml-on-begend-p)) p q r bbolp)
yuuji@58 2033 (if tag
yuuji@64 2034 (save-excursion
yuuji@58 2035 (or (looking-at "<")
yuuji@58 2036 (progn (skip-chars-backward "^<") (forward-char -1)))
yuuji@64 2037 (setq p (point))
yuuji@58 2038 (yahtml-goto-corresponding-begend)
yuuji@58 2039 (or (looking-at "<")
yuuji@58 2040 (progn (skip-chars-backward "^<") (forward-char -1)))
yuuji@64 2041 (if (< (point) p) ;if on the opening tag
yuuji@64 2042 (progn (setq q p p (point))
yuuji@64 2043 (goto-char q))
yuuji@64 2044 (setq q (point))) ;now q has end-line's (point)
yuuji@64 2045 (if (not whole)
yuuji@64 2046 (kill-region
yuuji@68 2047 (progn (skip-chars-backward " \t")
yuuji@68 2048 (if (setq bbolp (bolp)) (point) q))
yuuji@64 2049 (progn (forward-list 1)
yuuji@64 2050 (setq r (point))
yuuji@64 2051 (skip-chars-forward " \t")
yuuji@68 2052 (if (and bbolp (eolp) (not (eobp))) (1+ (point)) r))))
yuuji@58 2053 (goto-char p)
yuuji@64 2054 (skip-chars-backward " \t")
yuuji@64 2055 (if (not whole)
yuuji@64 2056 (progn
yuuji@64 2057 (kill-append
yuuji@64 2058 (buffer-substring
yuuji@68 2059 (setq p (if (setq bbolp (bolp)) (point) p))
yuuji@64 2060 (setq q (progn
yuuji@64 2061 (forward-list 1)
yuuji@64 2062 (setq r (point))
yuuji@64 2063 (skip-chars-forward " \t")
yuuji@68 2064 (if (and bbolp (eolp) (not (eobp)))
yuuji@68 2065 (1+ (point))
yuuji@68 2066 r))))
yuuji@64 2067 t)
yuuji@64 2068 (delete-region p q))
yuuji@64 2069 (kill-region
yuuji@64 2070 (if (bolp) (point) p)
yuuji@64 2071 (progn (goto-char q)
yuuji@64 2072 (forward-list 1)
yuuji@64 2073 (setq r (point))
yuuji@64 2074 (skip-chars-forward " \t")
yuuji@64 2075 (if (and (eolp) (not (eobp))) (1+ (point)) r))))
yuuji@58 2076 tag))))
yuuji@58 2077
yuuji@58 2078 (defun yahtml-kill-* (whole)
yuuji@58 2079 "Kill current position's HTML tag (set)."
yuuji@58 2080 (interactive "P")
yuuji@58 2081 (cond
yuuji@102 2082 ((yahtml-kill-begend whole))))
yuuji@58 2083
yuuji@58 2084
yuuji@58 2085 ;;; ---------- changing ----------
yuuji@60 2086 (defun yahtml-on-assignment-p ()
yuuji@60 2087 "Return if current point is on parameter assignment.
yuuji@60 2088 If so, return parameter name, otherwise nil.
yuuji@60 2089 This function should be able to treat white spaces in value, but not yet."
yuuji@60 2090 (let ((p (point)))
yuuji@60 2091 (save-excursion
yuuji@60 2092 (put 'yahtml-on-assignment-p 'region nil)
yuuji@70 2093 (skip-chars-backward "^ \t\n")
yuuji@60 2094 (and (looking-at "\\([A-Za-z0-9]+\\)\\s *=\\s *\"?\\([^ \t\"]+\\)\"?")
yuuji@60 2095 (< p (match-end 0))
yuuji@60 2096 (>= p (1- (match-beginning 2)))
yuuji@60 2097 (put 'yahtml-on-assignment-p 'region
yuuji@60 2098 (cons (match-beginning 2) (match-end 2)))
yuuji@60 2099 (YaTeX-match-string 1)))))
yuuji@60 2100
yuuji@58 2101 (defun yahtml-change-begend ()
yuuji@58 2102 (let ((tag (yahtml-on-begend-p))
yuuji@58 2103 (completion-ignore-case t)
yuuji@60 2104 (case-fold-search t)
yuuji@58 2105 (p (point)) (q (make-marker))
yuuji@58 2106 (default (append yahtml-env-table yahtml-typeface-table))
yuuji@58 2107 (user (append yahtml-user-env-table yahtml-user-typeface-table))
yuuji@58 2108 (tmp (append yahtml-tmp-env-table yahtml-tmp-typeface-table))
yuuji@69 2109 href b1 e1 attr new css)
yuuji@59 2110 (cond
yuuji@59 2111 (tag
yuuji@59 2112 (cond
yuuji@60 2113 ((and (string-match "^a$" tag)
yuuji@59 2114 (save-excursion
yuuji@59 2115 (and
yuuji@60 2116 (re-search-backward "<a\\b" nil t)
yuuji@64 2117 (progn
yuuji@64 2118 (goto-char (match-end 0))
yuuji@64 2119 (skip-chars-forward " \t\n")
yuuji@64 2120 (setq b1 (point))
yuuji@64 2121 (search-forward ">" nil t))
yuuji@60 2122 (setq e1 (match-beginning 0))
yuuji@60 2123 (goto-char b1)
yuuji@60 2124 (re-search-forward "href\\s *=" e1 t)
yuuji@59 2125 (>= p (point))
yuuji@64 2126 (progn
yuuji@64 2127 (goto-char (match-end 0))
yuuji@64 2128 (skip-chars-forward " \t\n")
yuuji@64 2129 (looking-at "\"?\\([^\"> \t\n]+\\)\"?"))
yuuji@59 2130 (< p (match-end 0)))))
yuuji@59 2131 (setq b1 (match-beginning 1) e1 (match-end 1)
yuuji@60 2132 yahtml-completing-buffer (current-buffer)
yuuji@64 2133 ;; yahtml-urls-local is buffer-local, so we must put
yuuji@64 2134 ;; that into yahtml-urls here
yuuji@64 2135 yahtml-urls (append yahtml-urls-private yahtml-urls-local)
yuuji@59 2136 href (read-from-minibuffer
yuuji@59 2137 "Change href to: " "" yahtml-url-completion-map))
yuuji@59 2138 (if (string< "" href)
yuuji@59 2139 (progn
yuuji@60 2140 ;;(setq href ;??
yuuji@60 2141 ;; (if yahtml-prefer-upcases (upcase href) (downcase href)))
yuuji@59 2142 (delete-region b1 e1)
yuuji@59 2143 (goto-char b1)
yuuji@59 2144 (insert href))))
yuuji@69 2145 ((setq attr (yahtml-on-assignment-p)) ;if on the assignment to attr
yuuji@69 2146 (if (and (equal attr "class") ;treat "class" attribute specially
yuuji@70 2147 (setq css (yahtml-css-get-element-completion-alist tag)))
yuuji@80 2148
yuuji@396 2149 (setq new (yahtml-read-css css tag))
yuuji@69 2150 ;;other than "class", read parameter normally
yuuji@69 2151 (setq new (yahtml-read-parameter attr)))
yuuji@69 2152 (goto-char (car (get 'yahtml-on-assignment-p 'region)))
yuuji@69 2153 (delete-region (point) (cdr (get 'yahtml-on-assignment-p 'region)))
yuuji@69 2154 (insert new))
yuuji@59 2155 (t
yuuji@58 2156 (save-excursion
yuuji@58 2157 (if (= (aref tag 0) ?/) (setq tag (substring tag 1)))
yuuji@58 2158 (or (= (char-after (point)) ?<) (skip-chars-backward "^<"))
yuuji@58 2159 (skip-chars-forward "^A-Za-z")
yuuji@58 2160 (set-marker q (point))
yuuji@58 2161 (setq p (point))
yuuji@58 2162 (yahtml-goto-corresponding-begend)
yuuji@58 2163 (or (= (char-after (point)) ?<)
yuuji@58 2164 (skip-chars-backward "^<"))
yuuji@58 2165 (skip-chars-forward "^A-Za-z")
yuuji@58 2166 (if (= (char-after (1- (point))) ?/)
yuuji@58 2167 (progn
yuuji@58 2168 (set-marker q (point))
yuuji@58 2169 (goto-char p)))
yuuji@60 2170 (setq tag (let ((completion-ignore-case t))
yuuji@60 2171 (YaTeX-cplread-with-learning
yuuji@60 2172 (format "Change `%s' to(default %s): "
yuuji@60 2173 tag yahtml-last-begend)
yuuji@60 2174 'default 'user 'tmp)))
yuuji@58 2175 (delete-region (point) (progn (skip-chars-forward "^>") (point)))
yuuji@58 2176 (if (string= "" tag) (setq tag yahtml-last-begend))
yuuji@58 2177 (setq yahtml-last-begend
yuuji@58 2178 (or (cdr (assoc tag yahtml-env-table)) tag)
yuuji@58 2179 tag yahtml-last-begend)
yuuji@60 2180 (setq tag (if yahtml-prefer-upcases (upcase tag) (downcase tag)))
yuuji@58 2181 (insert (format "%s%s" tag (yahtml-addin tag)))
yuuji@58 2182 (goto-char q)
yuuji@68 2183 (set-marker q nil)
yuuji@58 2184 (delete-region (point) (progn (skip-chars-forward "^>") (point)))
yuuji@60 2185 (insert tag))))
yuuji@60 2186 t))))
yuuji@60 2187
yuuji@60 2188 (defun yahtml-change-command ()
yuuji@60 2189 (let ((p (point)) (case-fold-search t) cmd par new
yuuji@60 2190 (beg (make-marker)) (end (make-marker)))
yuuji@60 2191 (skip-chars-backward "^<")
yuuji@60 2192 (if (and
yuuji@60 2193 (looking-at yahtml-command-regexp)
yuuji@60 2194 (progn
yuuji@60 2195 (set-marker beg (match-beginning 0))
yuuji@60 2196 (set-marker end (match-end 0))
yuuji@60 2197 t) ;for further work
yuuji@60 2198 (progn
yuuji@60 2199 (forward-char -1)
yuuji@60 2200 (condition-case nil
yuuji@60 2201 (forward-list 1)
yuuji@60 2202 (error nil))
yuuji@60 2203 (< p (point))))
yuuji@60 2204 (progn
yuuji@60 2205 (goto-char p)
yuuji@60 2206 (if (setq par (yahtml-on-assignment-p))
yuuji@60 2207 (progn
yuuji@60 2208 (setq new (yahtml-read-parameter par))
yuuji@60 2209 (set-marker beg (car (get 'yahtml-on-assignment-p 'region)))
yuuji@60 2210 (set-marker end (cdr (get 'yahtml-on-assignment-p 'region))))
yuuji@60 2211 (setq new
yuuji@60 2212 (YaTeX-cplread-with-learning
yuuji@60 2213 "Change form to: "
yuuji@60 2214 'yahtml-form-table 'yahtml-user-form-table
yuuji@60 2215 'yahtml-tmp-form-table)))
yuuji@60 2216 (delete-region beg end)
yuuji@60 2217 (goto-char beg)
yuuji@68 2218 (set-marker beg nil)
yuuji@68 2219 (set-marker end nil)
yuuji@60 2220 (insert new)
yuuji@60 2221 t)
yuuji@60 2222 (goto-char p)
yuuji@60 2223 nil)))
yuuji@58 2224
yuuji@58 2225 (defun yahtml-change-* ()
yuuji@58 2226 "Change current position's HTML tag (set)."
yuuji@58 2227 (interactive)
yuuji@58 2228 (cond
yuuji@58 2229 ((yahtml-change-begend))
yuuji@102 2230 ((yahtml-change-command))))
yuuji@58 2231
yuuji@57 2232 ;;; ---------- commenting ----------
yuuji@69 2233
yuuji@64 2234 (defun yahtml-comment-region (&optional uncom)
yuuji@64 2235 "Comment out region or environment."
yuuji@64 2236 (interactive)
yuuji@72 2237 (let ((e (make-marker)) be beg p)
yuuji@64 2238 (cond
yuuji@72 2239 (;(marker-position (set-marker e (yahtml-on-begend-p)))
yuuji@72 2240 (setq be (yahtml-on-begend-p))
yuuji@64 2241 (save-excursion
yuuji@64 2242 (setq p (point))
yuuji@72 2243 (if (string-match "^/" be)
yuuji@64 2244 (setq beg (progn (forward-line 1) (point)))
yuuji@64 2245 (setq beg (progn (beginning-of-line) (point))))
yuuji@64 2246 (goto-char p)
yuuji@64 2247 (yahtml-goto-corresponding-begend)
yuuji@72 2248 (if (string-match "^/" be)
yuuji@64 2249 (beginning-of-line)
yuuji@64 2250 (forward-line 1))
yuuji@69 2251 (set-marker e (point))
yuuji@102 2252 ;(comment-region beg (point) (if uncom (list 4)))))
yuuji@103 2253 ))
yuuji@69 2254 (t ;(comment-region (region-beginning) (region-end) (if uncom (list 4)))
yuuji@69 2255 (setq beg (region-beginning))
yuuji@69 2256 (set-marker e (region-end))))
yuuji@69 2257 (if yahtml-translate-hyphens-when-comment-region
yuuji@69 2258 (let ((yahtml-entity-reference-chars-alist-default nil)
yuuji@69 2259 (yahtml-entity-reference-chars-alist '((?- . "#45")))
yuuji@69 2260 yahtml-entity-reference-chars-regexp
yuuji@69 2261 yahtml-entity-reference-chars-reverse-regexp)
yuuji@69 2262 (yahtml-entity-reference-chars-setup)
yuuji@69 2263 (funcall
yuuji@69 2264 (if uncom 'yahtml-translate-reverse-region
yuuji@69 2265 'yahtml-translate-region)
yuuji@69 2266 beg e)))
yuuji@69 2267 (comment-region beg e (if uncom (list 4)))
yuuji@69 2268 (set-marker e nil)))
yuuji@57 2269
yuuji@64 2270 (defun yahtml-uncomment-region ()
yuuji@64 2271 (interactive)
yuuji@64 2272 (yahtml-comment-region t))
yuuji@57 2273
yuuji@69 2274 ;;; ---------- translate to entity references ----------
yuuji@69 2275 (defvar yahtml-entity-reference-chars-alist-default
yuuji@69 2276 ;'((?> . "gt") (?< . "lt") (?& . "amp") (?\" . "quot") (?' . "apos"))
yuuji@69 2277 '((?> . "gt") (?< . "lt") (?& . "amp") (?\" . "quot"))
yuuji@69 2278 "Default translation table from character to entity reference")
yuuji@69 2279 (defvar yahtml-entity-reference-chars-alist nil
yuuji@69 2280 "*Translation table from character to entity reference")
yuuji@69 2281 (defvar yahtml-entity-reference-chars-regexp nil)
yuuji@69 2282 (defvar yahtml-entity-reference-chars-reverse-regexp nil)
yuuji@57 2283
yuuji@69 2284 (defun yahtml-entity-reference-chars-setup ()
yuuji@69 2285 (let ((list (append yahtml-entity-reference-chars-alist-default
yuuji@69 2286 yahtml-entity-reference-chars-alist)))
yuuji@69 2287 (setq yahtml-entity-reference-chars-regexp "["
yuuji@69 2288 yahtml-entity-reference-chars-reverse-regexp "&\\(")
yuuji@69 2289 (while list
yuuji@69 2290 (setq yahtml-entity-reference-chars-regexp
yuuji@69 2291 (concat yahtml-entity-reference-chars-regexp
yuuji@69 2292 (char-to-string (car (car list))))
yuuji@69 2293 yahtml-entity-reference-chars-reverse-regexp
yuuji@69 2294 (concat yahtml-entity-reference-chars-reverse-regexp
yuuji@69 2295 (cdr (car list))
yuuji@69 2296 (if (cdr list) "\\|")))
yuuji@69 2297 (setq list (cdr list)))
yuuji@69 2298 (setq yahtml-entity-reference-chars-regexp
yuuji@69 2299 (concat yahtml-entity-reference-chars-regexp "]")
yuuji@69 2300 yahtml-entity-reference-chars-reverse-regexp
yuuji@69 2301 (concat yahtml-entity-reference-chars-reverse-regexp "\\);"))))
yuuji@69 2302
yuuji@69 2303 (yahtml-entity-reference-chars-setup)
yuuji@69 2304
yuuji@69 2305 (defun yahtml-translate-region (beg end)
yuuji@69 2306 "Translate inhibited literals."
yuuji@69 2307 (interactive "r")
yuuji@69 2308 (save-excursion
yuuji@69 2309 (save-restriction
yuuji@69 2310 (narrow-to-region beg end)
yuuji@69 2311 (let ((ct (append yahtml-entity-reference-chars-alist
yuuji@69 2312 yahtml-entity-reference-chars-alist-default)))
yuuji@69 2313 (goto-char beg)
yuuji@69 2314 (while (re-search-forward yahtml-entity-reference-chars-regexp nil t)
yuuji@69 2315 ;(setq c (preceding-char))
yuuji@69 2316 (replace-match
yuuji@69 2317 (concat "&" (cdr (assoc (preceding-char) ct)) ";")))))))
yuuji@69 2318
yuuji@69 2319 (defun yahtml-translate-reverse-region (beg end)
yuuji@69 2320 "Translate entity references to literals."
yuuji@69 2321 (interactive "r")
yuuji@69 2322 (save-excursion
yuuji@69 2323 (save-restriction
yuuji@69 2324 (narrow-to-region beg end)
yuuji@69 2325 (let ((ct (append yahtml-entity-reference-chars-alist
yuuji@69 2326 yahtml-entity-reference-chars-alist-default))
yuuji@69 2327 ec)
yuuji@69 2328 (goto-char beg)
yuuji@69 2329 (while (re-search-forward
yuuji@69 2330 yahtml-entity-reference-chars-reverse-regexp nil t)
yuuji@69 2331 ;(setq c (preceding-char))
yuuji@69 2332 (setq ec (YaTeX-match-string 1))
yuuji@69 2333 (delete-region (match-end 0) (match-beginning 0))
yuuji@69 2334 (insert (car (YaTeX-rassoc ec ct))))))))
yuuji@57 2335
yuuji@60 2336 (defun yahtml-inner-environment-but (exclude &optional quick)
yuuji@60 2337 "Return the inner environment but matches with EXCLUDE tag."
yuuji@64 2338 (let (e (case-fold-search t))
yuuji@60 2339 (save-excursion
yuuji@60 2340 (while (and (setq e (YaTeX-inner-environment quick))
yuuji@60 2341 (string-match exclude e))
yuuji@60 2342 (goto-char (get 'YaTeX-inner-environment 'point))))
yuuji@60 2343 e))
yuuji@60 2344
yuuji@145 2345 (defun yahtml-untranslate-string (str)
yuuji@145 2346 "Untranslate entity reference."
yuuji@145 2347 (let ((md (match-data)) (left "") (right str) b0 ch
yuuji@145 2348 (ct (append yahtml-entity-reference-chars-alist
yuuji@145 2349 yahtml-entity-reference-chars-alist-default))
yuuji@145 2350 (revrex yahtml-entity-reference-chars-reverse-regexp))
yuuji@145 2351 (unwind-protect
yuuji@145 2352 (progn
yuuji@145 2353 (while (string< "" right)
yuuji@145 2354 (cond
yuuji@145 2355 ((string-match revrex right)
yuuji@145 2356 (setq ch (YaTeX-rassoc
yuuji@145 2357 (substring right (match-beginning 1) (match-end 1)))
yuuji@145 2358 b0 (substring right 0 (match-beginning 0))
yuuji@145 2359 right (substring right (match-end 0))
yuuji@145 2360 left (concat left
yuuji@145 2361 (substring right 0 (match-beginning 0))
yuuji@145 2362 (char-to-string ch))))
yuuji@145 2363 ((string-match "\\&#\\(x\\)?\\([0-9a-f]+\\);" right)
yuuji@145 2364 (setq ch (substring right (match-beginning 2) (match-end 2))
yuuji@145 2365 b0 (substring right 0 (match-beginning 0))
yuuji@145 2366 right (substring right (match-end 0))
yuuji@145 2367 left (concat left
yuuji@145 2368 b0
yuuji@145 2369 (char-to-string
yuuji@145 2370 (if (match-beginning 1)
yuuji@145 2371 (YaTeX-hex ch)
yuuji@145 2372 (string-to-number ch))))))
yuuji@145 2373 (t (setq left (concat left right)
yuuji@145 2374 right ""))))
yuuji@145 2375 left)
yuuji@145 2376 (store-match-data md))))
yuuji@145 2377
yuuji@154 2378 ;;; ---------- table-ize region ----------
yuuji@154 2379 (defun yahtml-td-region (e delim beg end)
yuuji@154 2380 "Enclose each item in a region with <td>..</td>.
yuuji@154 2381 Interactive prefix argument consults enclosing element other than td."
yuuji@154 2382 (interactive "P\nsDelimiter(s): \nr")
yuuji@156 2383 (let ((e (cond
yuuji@156 2384 ((null e) "td")
yuuji@156 2385 ((stringp e) e)
yuuji@394 2386 (t (read-string-with-history
yuuji@394 2387 "Enclose with(`thd' means th td td..): " "th"))))
yuuji@157 2388 (ws "[ \t]")
yuuji@157 2389 elm p i)
yuuji@154 2390 (if (string= delim "") (setq delim " \t\n"))
yuuji@157 2391 (setq delim (concat "[" delim "]+")
yuuji@157 2392 elm (if (string= "thd" e)
yuuji@157 2393 (cons "th" "td")
yuuji@157 2394 (cons e e)))
yuuji@154 2395 (save-excursion
yuuji@154 2396 (save-restriction
yuuji@154 2397 (narrow-to-region beg end)
yuuji@154 2398 (goto-char (setq p (point-min)))
yuuji@157 2399 (setq i 0 e (car elm))
yuuji@154 2400 (while (re-search-forward delim nil t)
yuuji@157 2401 (setq e (if (= (setq i (1+ i)) 1) (car elm) (cdr elm)))
yuuji@154 2402 (goto-char (match-beginning 0))
yuuji@154 2403 (insert "</" e ">")
yuuji@154 2404 (save-excursion
yuuji@154 2405 (goto-char p)
yuuji@154 2406 (insert "<" e ">"))
yuuji@154 2407 (setq p (point))
yuuji@155 2408 (while (and (not (eobp)) (looking-at ws))
yuuji@155 2409 (delete-char 1))
yuuji@155 2410 (if (looking-at delim) (delete-char 1)))
yuuji@154 2411 (insert "<" e ">")
yuuji@154 2412 (goto-char (point-max))
yuuji@154 2413 (insert "</" e ">")))))
yuuji@154 2414
yuuji@154 2415 (defun yahtml-tr-region (e delim beg end)
yuuji@154 2416 "Enclose lines in a form tab-sv/csv with <tr><td>..</td></tr>."
yuuji@154 2417 (interactive "P\nsDelimiter(s): \nr")
yuuji@157 2418 (setq e (if (and e (listp e))
yuuji@394 2419 (read-string-with-history
yuuji@394 2420 "Enclose with(td or th, `thd' -> th td td td...: " "th")))
yuuji@156 2421 (save-excursion
yuuji@156 2422 (save-restriction
yuuji@156 2423 (narrow-to-region (point) (mark))
yuuji@156 2424 (goto-char (point-min))
yuuji@156 2425 (while (not (eobp))
yuuji@156 2426 (insert "<tr>")
yuuji@156 2427 (yahtml-td-region e delim (point) (point-end-of-line))
yuuji@156 2428 (end-of-line)
yuuji@156 2429 (insert "</tr>")
yuuji@156 2430 (forward-line 1)))))
yuuji@154 2431
yuuji@58 2432 ;;; ---------- filling ----------
yuuji@60 2433 (defvar yahtml-saved-move-to-column (symbol-function 'move-to-column))
yuuji@60 2434 (defun yahtml-move-to-column (col &optional force)
yuuji@60 2435 (beginning-of-line)
yuuji@60 2436 (let ((ccol 0))
yuuji@60 2437 (while (and (> col ccol) (not (eolp)))
yuuji@60 2438 (if (eq (following-char) ?\<)
yuuji@60 2439 (progn
yuuji@60 2440 (while (and (not (eq (following-char) ?\>))
yuuji@60 2441 (not (eolp)))
yuuji@60 2442 (forward-char))
yuuji@60 2443 (or (eolp) (forward-char)))
yuuji@60 2444 (or (eolp) (forward-char))
yuuji@60 2445 (if (eq (preceding-char) ?\t)
yuuji@60 2446 (let ((wd (- 8 (% (+ ccol 8) 8))))
yuuji@60 2447 (if (and force (< col (+ ccol wd)))
yuuji@60 2448 (progn
yuuji@60 2449 (backward-char 1)
yuuji@60 2450 (insert-char ?\ (- col ccol))
yuuji@60 2451 (setq ccol col))
yuuji@60 2452 (setq ccol (+ ccol wd))))
yuuji@60 2453 (setq ccol (1+ ccol)))
yuuji@60 2454 (if (and YaTeX-japan
yuuji@69 2455 (or
yuuji@69 2456 (and (fboundp 'char-category)
yuuji@69 2457 (string-match "[chj]" (char-category (preceding-char))))
yuuji@69 2458 (and (fboundp 'char-charset)
yuuji@69 2459 (not (eq (char-charset (preceding-char)) 'ascii)))))
yuuji@60 2460 (setq ccol (1+ ccol)))))
yuuji@60 2461 (if (and force (> col ccol))
yuuji@60 2462 (progn
yuuji@60 2463 (insert-char ?\ (- col ccol))
yuuji@60 2464 col)
yuuji@60 2465 ccol)))
yuuji@60 2466
yuuji@58 2467 (defun yahtml-fill-paragraph (arg)
yuuji@58 2468 (interactive "P")
yuuji@68 2469 (let*((case-fold-search t) (p (point)) fill-prefix
yuuji@61 2470 (e (or (yahtml-inner-environment-but "^\\(a\\|p\\)\\b" t) "html"))
yuuji@68 2471 indent
yuuji@68 2472 (startp (get 'YaTeX-inner-environment 'point))
yuuji@60 2473 (prep (string-match "^pre$" e))
yuuji@60 2474 (ps1 (if prep (default-value 'paragraph-start)
yuuji@60 2475 paragraph-start))
yuuji@60 2476 (ps2 (if prep (concat (default-value 'paragraph-start)
yuuji@69 2477 "$\\|^\\s *</?pre>")
yuuji@60 2478 paragraph-start)))
yuuji@58 2479 (save-excursion
yuuji@60 2480 (unwind-protect
yuuji@60 2481 (progn
yuuji@60 2482 (if prep
yuuji@60 2483 (fset 'move-to-column 'yahtml-move-to-column))
yuuji@68 2484 (save-excursion
yuuji@68 2485 (beginning-of-line)
yuuji@68 2486 (indent-to-column (yahtml-this-indent))
yuuji@68 2487 (setq fill-prefix
yuuji@68 2488 (buffer-substring (point) (point-beginning-of-line)))
yuuji@68 2489 (delete-region (point) (point-beginning-of-line)))
yuuji@60 2490 (fill-region-as-paragraph
yuuji@60 2491 (progn (re-search-backward paragraph-start nil t)
yuuji@60 2492 (or (save-excursion
yuuji@64 2493 (goto-char (match-beginning 0))
yuuji@64 2494 (if (looking-at "<")
yuuji@64 2495 (forward-list)
yuuji@64 2496 (goto-char (match-end 0))
yuuji@64 2497 (skip-chars-forward " \t>"))
yuuji@60 2498 (if (looking-at "[ \t]*$")
yuuji@60 2499 (progn (forward-line 1) (point))))
yuuji@60 2500 (point)))
yuuji@60 2501 (progn (goto-char p)
yuuji@60 2502 (re-search-forward ps2 nil t)
yuuji@69 2503 (match-beginning 0))))
yuuji@60 2504 (fset 'move-to-column yahtml-saved-move-to-column)))))
yuuji@60 2505
yuuji@359 2506 ;;;
yuuji@359 2507 ;;; ---------- move forward/backward field ----------
yuuji@359 2508 ;;;
yuuji@359 2509 (defun yahtml-element-path ()
yuuji@359 2510 "Return the element path from <body> at point as a list"
yuuji@359 2511 (let (path elm)
yuuji@359 2512 (save-excursion
yuuji@359 2513 (while (and (YaTeX-beginning-of-environment)
yuuji@359 2514 (looking-at (concat "<\\(" yahtml-command-regexp "\\)\\>"))
yuuji@359 2515 (not (string= (setq elm (downcase (YaTeX-match-string 1)))
yuuji@359 2516 "body")))
yuuji@359 2517 (setq path (cons elm path)
yuuji@359 2518 elm nil))
yuuji@359 2519 (and elm (setq path (cons elm path))))))
yuuji@359 2520
yuuji@359 2521 (defun yahtml-forward-field (arg)
yuuji@359 2522 "Move ARGth forward cell to table element.
yuuji@359 2523 ENVINFO is a cons of target element name and its beginning point."
yuuji@359 2524 (interactive "p")
yuuji@359 2525 (let (inenv elm path sibs)
yuuji@359 2526 (cond
yuuji@359 2527 ((< arg 0) (yahtml-backward-field (- arg)))
yuuji@359 2528 ((= arg 0) nil)
yuuji@359 2529 ((and (setq path (nreverse (yahtml-element-path)))
yuuji@359 2530 (catch 'sibling
yuuji@359 2531 (while path
yuuji@359 2532 (if (setq elm (car-safe
yuuji@359 2533 (member (car path) '("td" "th" "li" "dt" "dd"))))
yuuji@359 2534 (throw 'sibling elm))
yuuji@359 2535 (setq path (cdr path)))))
yuuji@359 2536 (setq inenv (YaTeX-in-environment-p elm)
yuuji@359 2537 sibs (cdr (assoc elm '(("td" . "td\\|th")
yuuji@359 2538 ("th" . "td\\|th")
yuuji@359 2539 ("li" . "li")
yuuji@359 2540 ("dt" . "dt\\|dd")
yuuji@359 2541 ("dd" . "dt\\|dd")))))
yuuji@359 2542 (goto-char (cdr inenv))
yuuji@359 2543 (while (>= (setq arg (1- arg)) 0)
yuuji@359 2544 (yahtml-goto-corresponding-begend)
yuuji@359 2545 (if (looking-at "<") (forward-list 1))
yuuji@359 2546 (skip-chars-forward "^<"))
yuuji@359 2547 (while (looking-at "\\s \\|\\(</\\)")
yuuji@359 2548 (if (match-beginning 1) (forward-list 1)
yuuji@359 2549 (skip-chars-forward "\n\t ")))
yuuji@359 2550 (forward-list 1) ;; step into environment
yuuji@359 2551 (skip-chars-forward " \t\n")
yuuji@359 2552 (if (looking-at (concat "<\\(" sibs "\\)\\>"))
yuuji@359 2553 (forward-list 1))
yuuji@359 2554 ))))
yuuji@359 2555
yuuji@359 2556
yuuji@58 2557 ;;;
yuuji@58 2558 ;;; ---------- indentation ----------
yuuji@58 2559 ;;;
yuuji@359 2560 (defun yahtml-indent-line-1 ()
yuuji@64 2561 "Indent a line (faster wrapper)"
yuuji@58 2562 (interactive)
yuuji@64 2563 (let (indent)
yuuji@64 2564 (if (and (save-excursion
yuuji@64 2565 (beginning-of-line) (skip-chars-forward "\t ")
yuuji@64 2566 (not (looking-at "<")))
yuuji@64 2567 (save-excursion
yuuji@64 2568 (forward-line -1)
yuuji@64 2569 (while (and (not (bobp)) (looking-at "^\\s *$"))
yuuji@64 2570 (forward-line -1))
yuuji@64 2571 (skip-chars-forward "\t ")
yuuji@64 2572 (setq indent (current-column))
yuuji@64 2573 (not (looking-at "<"))))
yuuji@64 2574 (progn
yuuji@64 2575 (save-excursion
yuuji@64 2576 (beginning-of-line)
yuuji@64 2577 (skip-chars-forward " \t")
yuuji@64 2578 (or (= (current-column) indent)
yuuji@64 2579 (YaTeX-reindent indent)))
yuuji@64 2580 (and (bolp) (skip-chars-forward " \t")))
yuuji@64 2581 (yahtml-indent-line-real))))
yuuji@64 2582
yuuji@359 2583 (defun yahtml-indent-line ()
yuuji@359 2584 "Indent a line (Second level wrapper).
yuuji@359 2585 See also yahtml-indent-line-1 and yahtml-indent-line-real."
yuuji@359 2586 (interactive)
yuuji@359 2587 (let ((cc (current-column)) (p (point)))
yuuji@359 2588 (yahtml-indent-line-1)
yuuji@359 2589 (and (= cc (current-column))
yuuji@359 2590 (= p (point))
yuuji@359 2591 (equal last-command 'yahtml-indent-line)
yuuji@359 2592 (yahtml-forward-field 1))))
yuuji@359 2593
yuuji@359 2594
yuuji@68 2595 (defun yahtml-this-indent ()
yuuji@190 2596 (let ((envs "[uod]l\\|table\\|[ht][rhd0-6]\\|select\\|blockquote\\|center\\|menu\\|dir\\|d[td]\\|li")
yuuji@190 2597 (itemizing-envs "^\\([uod]l\\|menu\\|dir\\|li\\|d[td]\\)$")
yuuji@61 2598 (itms "<\\(dt\\|dd\\|li\\|t[rdh]\\|option\\)\\b")
yuuji@70 2599 (excludes
yuuji@190 2600 "\\b\\(a\\|p\\|span\\|code\\|tt\\|em\\|u\\|i\\|big\\|small\\|font\\)\\b")
yuuji@58 2601 inenv p col peol (case-fold-search t))
yuuji@58 2602 (save-excursion
yuuji@58 2603 (beginning-of-line)
yuuji@70 2604 (setq inenv (or (yahtml-inner-environment-but excludes t)
yuuji@61 2605 "html")
yuuji@58 2606 col (get 'YaTeX-inner-environment 'indent)
yuuji@58 2607 p (get 'YaTeX-inner-environment 'point)
yuuji@64 2608 op nil))
yuuji@58 2609 (save-excursion
yuuji@58 2610 (cond
yuuji@70 2611 ((string-match (concat "^\\(" envs "\\)") inenv)
yuuji@58 2612 (save-excursion
yuuji@58 2613 (beginning-of-line)
yuuji@58 2614 (skip-chars-forward " \t")
yuuji@64 2615 (cond ;lookup current line's tag
yuuji@58 2616 ((looking-at (concat "</\\(" envs "\\)>"))
yuuji@68 2617 col)
yuuji@64 2618 ((looking-at itms)
yuuji@68 2619 (+ col yahtml-environment-indent))
yuuji@64 2620 ((and yahtml-hate-too-deep-indentation
yuuji@64 2621 (looking-at (concat "<\\(" envs "\\)")))
yuuji@68 2622 (+ col (* 2 yahtml-environment-indent)))
yuuji@58 2623 ((and (< p (point))
yuuji@64 2624 (string-match itemizing-envs inenv)
yuuji@58 2625 (save-excursion
yuuji@58 2626 (and
yuuji@58 2627 (setq op (point))
yuuji@58 2628 (goto-char p)
yuuji@58 2629 (re-search-forward itms op t)
yuuji@64 2630 (progn
yuuji@73 2631 (if yahtml-indent-listing-constant
yuuji@73 2632 (setq col (+ (current-column)
yuuji@73 2633 (if yahtml-faithful-to-htmllint 1 2)))
yuuji@73 2634 (skip-chars-forward "^>")
yuuji@73 2635 (skip-chars-forward ">")
yuuji@73 2636 (skip-chars-forward " \t")
yuuji@73 2637 (setq col (if (looking-at "$")
yuuji@73 2638 (+ col yahtml-environment-indent)
yuuji@73 2639 (current-column))))))))
yuuji@68 2640 col)
yuuji@58 2641 (t
yuuji@68 2642 (+ col yahtml-environment-indent)))))
yuuji@68 2643 (t col)))))
yuuji@68 2644
yuuji@68 2645 (defun yahtml-indent-line-real ()
yuuji@68 2646 "Indent current line."
yuuji@68 2647 (interactive)
yuuji@68 2648 (YaTeX-reindent (yahtml-this-indent))
yuuji@68 2649 (if (bolp) (skip-chars-forward " \t"))
yuuji@70 2650 (let (peol col inenv)
yuuji@68 2651 (if (and (setq inenv (yahtml-on-begend-p))
yuuji@68 2652 (string-match
yuuji@68 2653 (concat "^\\<\\(" yahtml-struct-name-regexp "\\)") inenv))
yuuji@68 2654 (save-excursion
yuuji@68 2655 (setq peol (point-end-of-line))
yuuji@68 2656 (or (= (char-after (point)) ?<)
yuuji@68 2657 (progn (skip-chars-backward "^<") (forward-char -1)))
yuuji@68 2658 (setq col (current-column))
yuuji@68 2659 (if (and (yahtml-goto-corresponding-begend t)
yuuji@68 2660 (> (point) peol)) ;if on the different line
yuuji@68 2661 (YaTeX-reindent col))))))
yuuji@58 2662
yuuji@58 2663 ;(defun yahtml-fill-item ()
yuuji@58 2664 ; "Fill item HTML version"
yuuji@58 2665 ; (interactive)
yuuji@58 2666 ; (let (inenv p fill-prefix peol (case-fold-search t))
yuuji@58 2667 ; (setq inenv (or (YaTeX-inner-environment) "html")
yuuji@58 2668 ; p (get 'YaTeX-inner-environment 'point))
yuuji@58 2669 ; (cond
yuuji@58 2670 ; ((string-match "^[uod]l" inenv)
yuuji@58 2671 ; (save-excursion
yuuji@58 2672 ; (if (re-search-backward "<\\(d[td]\\|li\\)>[ \t\n]*" p t)
yuuji@58 2673 ; (progn
yuuji@58 2674 ; (goto-char (match-end 0))
yuuji@58 2675 ; (setq col (current-column)))
yuuji@58 2676 ; (error "No <li>, <dt>, <dd>")))
yuuji@58 2677 ; (save-excursion
yuuji@58 2678 ; (end-of-line)
yuuji@58 2679 ; (setq peol (point))
yuuji@58 2680 ; (newline)
yuuji@58 2681 ; (indent-to-column col)
yuuji@58 2682 ; (setq fill-prefix (buffer-substring (point) (1+ peol)))
yuuji@58 2683 ; (delete-region (point) peol)
yuuji@58 2684 ; (fill-region-as-paragraph
yuuji@58 2685 ; (progn (re-search-backward paragraph-start nil t) (point))
yuuji@58 2686 ; (progn (re-search-forward paragraph-start nil t 2)
yuuji@58 2687 ; (match-beginning 0)))))
yuuji@58 2688 ; (t nil))))
yuuji@58 2689
yuuji@58 2690 ;;;
yuuji@60 2691 ;;; ---------- Lint and Browsing ----------
yuuji@58 2692 ;;;
yuuji@58 2693 (defun yahtml-browse-menu ()
yuuji@138 2694 "Browsing or other external process invokation menu."
yuuji@58 2695 (interactive)
yuuji@138 2696 (message "J)weblint p)Browse R)eload N)ewpage...")
yuuji@58 2697 (let ((c (char-to-string (read-char))))
yuuji@58 2698 (cond
yuuji@60 2699 ((string-match "j" c)
yuuji@60 2700 (yahtml-lint-buffer (current-buffer)))
yuuji@60 2701 ((string-match "[bp]" c)
yuuji@58 2702 (yahtml-browse-current-file))
yuuji@58 2703 ((string-match "r" c)
yuuji@138 2704 (yahtml-browse-reload))
yuuji@138 2705 ((string-match "n" c)
yuuji@138 2706 (call-interactively 'yahtml-newpage)))))
yuuji@58 2707
yuuji@72 2708 (if (fboundp 'wrap-function-to-control-ime)
yuuji@72 2709 (wrap-function-to-control-ime 'yahtml-browse-menu t nil))
yuuji@72 2710
yuuji@60 2711 (defvar yahtml-lint-buffer "*weblint*")
yuuji@60 2712
yuuji@60 2713 (defun yahtml-lint-buffer (buf)
yuuji@60 2714 "Call lint on buffer BUF."
yuuji@64 2715 (require 'yatexprc)
yuuji@60 2716 (interactive "bCall lint on buffer: ")
yuuji@60 2717 (setq buf (get-buffer buf))
yuuji@60 2718 (YaTeX-save-buffers)
yuuji@145 2719 (let ((bcmd (YaTeX-get-builtin "lint")))
yuuji@145 2720 (and bcmd (setq bcmd (yahtml-untranslate-string bcmd)))
yuuji@145 2721 (YaTeX-typeset
yuuji@145 2722 (concat (or bcmd yahtml-lint-program)
yuuji@145 2723 " " (file-name-nondirectory (buffer-file-name buf)))
yuuji@145 2724 yahtml-lint-buffer "lint" "lint")))
yuuji@60 2725
yuuji@58 2726 (defun yahtml-file-to-url (file)
yuuji@58 2727 "Convert local unix file name to URL.
yuuji@58 2728 If no matches found in yahtml-path-url-alist, return raw file name."
yuuji@58 2729 (let ((list yahtml-path-url-alist) p url)
yuuji@58 2730 (if (file-directory-p file)
yuuji@58 2731 (setq file (expand-file-name yahtml-directory-index file))
yuuji@58 2732 (setq file (expand-file-name file)))
yuuji@60 2733 (if (string-match "^[A-Za-z]:/" file)
yuuji@60 2734 (progn
yuuji@64 2735 ;; (aset file 1 ?|) ;これは要らないらしい…
yuuji@60 2736 (setq file (concat "///" file))))
yuuji@58 2737 (while list
yuuji@58 2738 (if (string-match (concat "^" (regexp-quote (car (car list)))) file)
yuuji@58 2739 (setq url (cdr (car list))
yuuji@58 2740 file (substring file (match-end 0))
yuuji@58 2741 url (concat url file)
yuuji@58 2742 list nil))
yuuji@58 2743 (setq list (cdr list)))
yuuji@58 2744 (or url (concat "file:" file))))
yuuji@58 2745
yuuji@58 2746 (defun yahtml-url-to-path (file &optional basedir)
yuuji@58 2747 "Convert local URL name to unix file name."
yuuji@58 2748 (let ((list yahtml-path-url-alist) url realpath docroot
yuuji@58 2749 (dirsufp (string-match "/$" file)))
yuuji@58 2750 (setq basedir (or basedir
yuuji@58 2751 (file-name-directory
yuuji@58 2752 (expand-file-name default-directory))))
yuuji@58 2753 (cond
yuuji@58 2754 ((string-match "^/" file)
yuuji@58 2755 (while list
yuuji@59 2756 (if (file-directory-p (car (car list)))
yuuji@58 2757 (progn
yuuji@58 2758 (setq url (cdr (car list)))
yuuji@58 2759 (if (string-match "\\(http://[^/]*\\)/" url)
yuuji@58 2760 (setq docroot (substring url (match-end 1)))
yuuji@58 2761 (setq docroot url))
yuuji@64 2762 (cond
yuuji@64 2763 ((string-match (concat "^" (regexp-quote docroot)) file)
yuuji@64 2764 (setq realpath
yuuji@64 2765 (expand-file-name
yuuji@64 2766 (substring
yuuji@64 2767 file
yuuji@64 2768 (if (= (aref file (1- (match-end 0))) ?/)
yuuji@64 2769 (match-end 0) ; "/foo"
yuuji@64 2770 (min (1+ (match-end 0)) (length file)))) ; "/~foo"
yuuji@64 2771 (car (car list))))))
yuuji@58 2772 (if realpath
yuuji@58 2773 (progn (setq list nil)
yuuji@58 2774 (if (and dirsufp (not (string-match "/$" realpath)))
yuuji@58 2775 (setq realpath (concat realpath "/")))))))
yuuji@58 2776 (setq list (cdr list)))
yuuji@58 2777 realpath)
yuuji@58 2778 (t file))))
yuuji@58 2779
yuuji@58 2780 (defun yahtml-browse-current-file ()
yuuji@58 2781 "Call WWW browser on current file."
yuuji@58 2782 (interactive)
yuuji@58 2783 (basic-save-buffer)
yuuji@58 2784 (yahtml-browse-html (yahtml-file-to-url (buffer-file-name))))
yuuji@58 2785
yuuji@58 2786 (defun yahtml-browse-reload ()
yuuji@115 2787 "Send `reload' event to netscape."
yuuji@58 2788 (let ((pb "* WWW Browser *") (cb (current-buffer)))
yuuji@58 2789 (cond
yuuji@58 2790 ((string-match "[Nn]etscape" yahtml-www-browser)
yuuji@58 2791 (if (get-buffer pb)
yuuji@58 2792 (progn (set-buffer pb) (erase-buffer) (set-buffer cb)))
yuuji@58 2793 ;;(or (get 'yahtml-netscape-sentinel 'url)
yuuji@58 2794 ;; (error "Reload should be called after Browsing."))
yuuji@58 2795 (put 'yahtml-netscape-sentinel 'url
yuuji@58 2796 (yahtml-file-to-url (buffer-file-name)))
yuuji@58 2797 (basic-save-buffer)
yuuji@58 2798 (set-process-sentinel
yuuji@58 2799 (setq yahtml-browser-process
yuuji@58 2800 (start-process
yuuji@60 2801 "browser" pb shell-file-name yahtml-shell-command-option ;"-c"
yuuji@58 2802 (format "%s -remote 'reload'" yahtml-www-browser)))
yuuji@58 2803 'yahtml-netscape-sentinel))
yuuji@58 2804 (t
yuuji@58 2805 (message "Sorry, RELOAD is supported only for Netscape.")))))
yuuji@58 2806
yuuji@58 2807 ;;; ---------- Intelligent newline ----------
yuuji@58 2808 (defun yahtml-intelligent-newline (arg)
yuuji@58 2809 "Intelligent newline for HTML"
yuuji@58 2810 (interactive "P")
yuuji@60 2811 (let (env func)
yuuji@60 2812 (end-of-line)
yuuji@64 2813 (setq env (downcase (or (yahtml-inner-environment-but "^\\(a\\|p\\)\\b" t)
yuuji@64 2814 "html")))
yuuji@58 2815 (setq func (intern-soft (concat "yahtml-intelligent-newline-" env)))
yuuji@58 2816 (newline)
yuuji@58 2817 (if (and env func (fboundp func))
yuuji@64 2818 ;; if intelligent line function is defined, call that
yuuji@64 2819 (funcall func)
yuuji@64 2820 ;; else do the default action
yuuji@64 2821 (if (string-match yahtml-p-prefered-env-regexp env)
yuuji@64 2822 (yahtml-insert-p)))))
yuuji@58 2823
yuuji@58 2824 (defun yahtml-intelligent-newline-ul ()
yuuji@58 2825 (interactive)
yuuji@64 2826 (yahtml-insert-single "li")
yuuji@80 2827 (or yahtml-always-/li yahtml-faithful-to-htmllint (insert " "))
yuuji@58 2828 (yahtml-indent-line))
yuuji@58 2829
yuuji@58 2830 (fset 'yahtml-intelligent-newline-ol 'yahtml-intelligent-newline-ul)
yuuji@58 2831
yuuji@58 2832 (defun yahtml-intelligent-newline-dl ()
yuuji@58 2833 (interactive)
yuuji@58 2834 (let ((case-fold-search t))
yuuji@58 2835 (if (save-excursion
yuuji@73 2836 (re-search-backward "<\\(\\(dt\\)\\|\\(dd\\)\\)[ \t>]"
yuuji@58 2837 (get 'YaTeX-inner-environment 'point) t))
yuuji@58 2838 (cond
yuuji@58 2839 ((match-beginning 2)
yuuji@64 2840 (yahtml-insert-single "dd")
yuuji@80 2841 (or yahtml-always-/dd yahtml-faithful-to-htmllint (insert " "))
yuuji@58 2842 (setq yahtml-last-single-cmd "dt"))
yuuji@58 2843 ((match-beginning 3)
yuuji@64 2844 (yahtml-insert-single "dt")
yuuji@80 2845 (or yahtml-always-/dt yahtml-faithful-to-htmllint (insert " "))
yuuji@58 2846 (setq yahtml-last-single-cmd "dd")))
yuuji@121 2847 (yahtml-insert-single "dt")
yuuji@121 2848 (or yahtml-always-/li yahtml-faithful-to-htmllint (insert " "))
yuuji@64 2849 (setq yahtml-last-single-cmd "dd"))
yuuji@64 2850 (yahtml-indent-line)
yuuji@64 2851 (and (string-match yahtml-p-prefered-env-regexp "dl")
yuuji@64 2852 (string-equal yahtml-last-single-cmd "dt")
yuuji@64 2853 (yahtml-insert-p nil))))
yuuji@58 2854
yuuji@59 2855 (defun yahtml-intelligent-newline-select ()
yuuji@59 2856 (interactive)
yuuji@315 2857 (yahtml-insert-single (if yahtml-prefer-upcases "OPTION" "option"))
yuuji@59 2858 (yahtml-indent-line))
yuuji@59 2859
yuuji@70 2860 (defun yahtml-intelligent-newline-style ()
yuuji@70 2861 (interactive)
yuuji@70 2862 (if (save-excursion
yuuji@70 2863 (and
yuuji@70 2864 (re-search-backward "<style\\|<!-- " nil t)
yuuji@70 2865 (looking-at "<style")))
yuuji@70 2866 (let (c)
yuuji@70 2867 (yahtml-indent-line)
yuuji@70 2868 (setq c (current-column))
yuuji@70 2869 (insert "<!--\n")
yuuji@70 2870 (YaTeX-reindent c)
yuuji@70 2871 (insert "-->")
yuuji@70 2872 (beginning-of-line)
yuuji@70 2873 (open-line 1)
yuuji@70 2874 (YaTeX-reindent c))))
yuuji@70 2875
yuuji@80 2876 (defun yahtml-intelligent-newline-head ()
yuuji@394 2877 (let ((title (read-string-with-history "Document title: "))
yuuji@80 2878 (b "<title>") (e "</title>") p)
yuuji@80 2879 (yahtml-indent-line)
yuuji@80 2880 (insert (format "%s" (if yahtml-prefer-upcases (upcase b) b)))
yuuji@80 2881 (setq p (point))
yuuji@80 2882 (insert (format "%s%s" title (if yahtml-prefer-upcases (upcase e) e)))
yuuji@80 2883 (if (string= "" title) (goto-char p))
yuuji@80 2884 (setq yahtml-last-begend "body")))
yuuji@80 2885
yuuji@80 2886 (defun yahtml-intelligent-newline-script ()
yuuji@80 2887 (let ((p (point)) b)
yuuji@80 2888 (if (save-excursion
yuuji@80 2889 (and
yuuji@80 2890 (setq b (re-search-backward "<script\\>" nil t))
yuuji@80 2891 (re-search-forward
yuuji@80 2892 "\\(javascript\\)\\|\\(tcl\\)\\|\\(vbscript\\)" p t)))
yuuji@80 2893 (let ((js (match-end 1)) (tcl (match-end 2)) (vb (match-end 3))
yuuji@80 2894 c (srcp (re-search-backward "src=" b t)))
yuuji@80 2895 (goto-char p)
yuuji@80 2896 (yahtml-indent-line)
yuuji@80 2897 (setq c (current-column))
yuuji@80 2898 (if srcp
yuuji@80 2899 nil
yuuji@80 2900 (insert "<!--\n" (cond (js "//") (tcl "#") (vb "'")) " -->")
yuuji@80 2901 (beginning-of-line)
yuuji@80 2902 (open-line 1)
yuuji@80 2903 (YaTeX-reindent c))))))
yuuji@80 2904
yuuji@86 2905 (defun yahtml-intelligent-newline-table ()
yuuji@86 2906 (let ((cp (point)) (p (point)) tb rb (cols 0) th line (i 0) fmt
yuuji@86 2907 (ptn "\\(<t[dh]\\>\\)\\|<t\\(r\\|head\\|body\\)\\>"))
yuuji@86 2908 (cond
yuuji@86 2909 ((save-excursion (setq tb (YaTeX-beginning-of-environment "table")))
yuuji@86 2910 (while (and (setq rb (re-search-backward ptn tb t))
yuuji@86 2911 (match-beginning 1))
yuuji@86 2912 (setq th (looking-at "<th")) ;Remember if first-child is tr or not
yuuji@86 2913 (goto-char (match-end 0))
yuuji@86 2914 (skip-chars-forward " \t\n")
yuuji@86 2915 (if (and (search-forward "colspan\\s *=" p t)
yuuji@86 2916 (progn
yuuji@86 2917 (skip-chars-forward "\"' \t\n")
yuuji@86 2918 (looking-at "[0-9]+")))
yuuji@86 2919 (setq cols (+ (string-to-int (YaTeX-match-string 0)) cols))
yuuji@86 2920 (setq cols (1+ cols)))
yuuji@86 2921 (goto-char rb)
yuuji@86 2922 (setq p (point)))
yuuji@86 2923 (if (> cols 0)
yuuji@86 2924 (message "%s columns found. %s"
yuuji@86 2925 cols (if YaTeX-japan "新しいtr(N)? 前のtrの複写?(D)?: "
yuuji@86 2926 "New tr?(N) or Duplicate")))
yuuji@86 2927 (cond
yuuji@86 2928 ((and (> cols 0)
yuuji@86 2929 (memq (read-char) '(?d ?D))) ;Duplication mode
yuuji@135 2930 (setq line (YaTeX-buffer-substring (point) (1- cp))))
yuuji@86 2931 (t ;empty cells
yuuji@86 2932 (setq line "<tr>" i 0)
yuuji@86 2933 (if (> cols 0)
yuuji@86 2934 (while (> cols i)
yuuji@86 2935 (setq line (concat line (if (and (= i 0) th) "<th></th>"
yuuji@86 2936 "<td></td>"))
yuuji@86 2937 th nil i (1+ i)))
yuuji@394 2938 (setq fmt (read-string-with-history
yuuji@394 2939 "`th' or `td' format: " "th td td"))
yuuji@86 2940 (while (string-match "t\\(h\\)\\|td" fmt i)
yuuji@86 2941 (setq line (concat line (if (match-beginning 1) "<th></th>"
yuuji@86 2942 "<td></td>"))
yuuji@86 2943 i (match-end 0))))
yuuji@86 2944 (setq line (concat line "</tr>"))))
yuuji@86 2945 (goto-char cp)
yuuji@86 2946 (if th
yuuji@86 2947 (message
yuuji@86 2948 "Type `%s' to change td from/to th."
yuuji@86 2949 (key-description (car (where-is-internal 'yahtml-change-*)))))
yuuji@86 2950 (if (string< "" line)
yuuji@86 2951 (progn
yuuji@86 2952 (insert line)
yuuji@86 2953 (goto-char (+ 8 cp))
yuuji@86 2954 (yahtml-indent-line)))))))
yuuji@86 2955
yuuji@58 2956 ;;; ---------- Marking ----------
yuuji@58 2957 (defun yahtml-mark-begend ()
yuuji@58 2958 "Mark current tag"
yuuji@58 2959 (interactive)
yuuji@58 2960 (YaTeX-beginning-of-environment)
yuuji@58 2961 (let ((p (point)))
yuuji@58 2962 (save-excursion
yuuji@58 2963 (skip-chars-backward " \t" (point-beginning-of-line))
yuuji@58 2964 (if (bolp) (setq p (point))))
yuuji@58 2965 (push-mark p t))
yuuji@58 2966 (yahtml-goto-corresponding-begend)
yuuji@58 2967 (forward-list 1)
yuuji@58 2968 (if (eolp) (forward-char 1)))
yuuji@58 2969
yuuji@59 2970 ;;; ---------- complete marks ----------
yuuji@59 2971 (defun yahtml-complete-mark ()
yuuji@60 2972 "Complete &gt, &lt, &ampersand, and &quote."
yuuji@59 2973 (interactive)
yuuji@69 2974 (message "1:< 2:> 3:& 4:\" 5:' 6:nbsp")
yuuji@59 2975 (let ((c (read-char)))
yuuji@69 2976 (setq c (if (or (< c ?0) (> c ?7))
yuuji@59 2977 (string-match (regexp-quote (char-to-string c)) "<>&\"")
yuuji@59 2978 (- c ?1)))
yuuji@69 2979 (if (or (< c 0) (> c 6))
yuuji@59 2980 nil
yuuji@69 2981 (insert (format "&%s;"
yuuji@69 2982 (nth c '("lt" "gt" "amp" "quot" "apos" "nbsp")))))))
yuuji@59 2983
yuuji@59 2984
yuuji@60 2985 ;;; ---------- jump to error line ----------
yuuji@60 2986 (defun yahtml-prev-error ()
yuuji@60 2987 "Jump to previous error seeing lint buffer."
yuuji@60 2988 (interactive)
yuuji@60 2989 (or (get-buffer yahtml-lint-buffer)
yuuji@60 2990 (error "No lint program ran."))
yuuji@60 2991 (YaTeX-showup-buffer yahtml-lint-buffer nil t)
yuuji@64 2992 (yahtml-jump-to-error-line t))
yuuji@60 2993
yuuji@64 2994 (defun yahtml-jump-to-error-line (&optional sit)
yuuji@64 2995 (interactive "P")
yuuji@60 2996 (let ((p (point)) (e (point-end-of-line)))
yuuji@60 2997 (end-of-line)
yuuji@60 2998 (if (re-search-backward yahtml-error-line-regexp nil t)
yuuji@72 2999 (let ((f (if (string= "" (YaTeX-match-string 1))
yuuji@72 3000 YaTeX-current-file-name
yuuji@72 3001 (YaTeX-match-string 1)))
yuuji@72 3002 (l (string-to-int (or (YaTeX-match-string 2)
yuuji@72 3003 (YaTeX-match-string 3)))))
yuuji@64 3004 (if sit (sit-for 1))
yuuji@60 3005 (forward-line -1)
yuuji@64 3006 (YaTeX-showup-buffer (YaTeX-switch-to-buffer f t) nil t)
yuuji@60 3007 (goto-line l))
yuuji@60 3008 (message "No line number usage"))))
yuuji@69 3009
yuuji@69 3010 ;;; ---------- Style Sheet Support ----------
yuuji@69 3011 (defvar yahtml-css-class-alist nil
yuuji@69 3012 "Alist of elements vs. their classes")
yuuji@69 3013
yuuji@69 3014 (defun yahtml-css-collect-classes-region (beg end &optional initial)
yuuji@70 3015 (save-excursion
yuuji@70 3016 (save-restriction
yuuji@69 3017 (narrow-to-region beg end)
yuuji@69 3018 (goto-char (point-min))
yuuji@70 3019 (let ((alist initial) b e element class a)
yuuji@69 3020 (setq b (point))
yuuji@80 3021 (while (re-search-forward "\\({\\)\\|\\(@import\\)" nil t)
yuuji@80 3022 (if (match-beginning 2)
yuuji@80 3023 (let ((f (YaTeX-buffer-substring
yuuji@80 3024 (progn (skip-chars-forward "^\"")(1+ (point)))
yuuji@80 3025 (progn (forward-char 1)
yuuji@80 3026 (skip-chars-forward "^\"")(point)))))
yuuji@80 3027 (if (file-exists-p f)
yuuji@80 3028 (setq alist
yuuji@286 3029 (append alist (yahtml-css-collect-classes-file
yuuji@286 3030 f initial)))))
yuuji@80 3031 (setq e (point))
yuuji@80 3032 (goto-char b)
yuuji@80 3033 (while (re-search-forward ;ちょといい加減なREGEXP
yuuji@86 3034 "\\([a-z*][-a-z0-9]*\\)?\\.\\([-a-z0-9][-a-z0-9]*\\)\\>"
yuuji@80 3035 e t)
yuuji@80 3036 (setq element (YaTeX-match-string 1)
yuuji@80 3037 class (YaTeX-match-string 2))
yuuji@80 3038 ;;if starts with period (match-string 1 is nil),
yuuji@80 3039 ;;this is global class
yuuji@86 3040 (setq element (downcase (or element "*")))
yuuji@80 3041 (if (setq a (assoc element alist))
yuuji@80 3042 (or (assoc class (cdr a))
yuuji@80 3043 (setcdr a (cons (list class) (cdr a))))
yuuji@80 3044 (setq alist (cons (list element (list class)) alist))))
yuuji@80 3045 (goto-char (1- e))
yuuji@199 3046 (search-forward "}" nil 1) ;1=move to limit when not found.
yuuji@80 3047 (setq b (point))))
yuuji@70 3048 alist))))
yuuji@69 3049
yuuji@69 3050 (defun yahtml-css-collect-classes-buffer (&optional initial)
yuuji@69 3051 (interactive)
yuuji@69 3052 (yahtml-css-collect-classes-region (point-min) (point-max) initial))
yuuji@69 3053
yuuji@69 3054 (defun yahtml-css-collect-classes-file (file &optional initial)
yuuji@70 3055 (let*((hilit-auto-highlight nil)
yuuji@86 3056 (buf (get-buffer-create
yuuji@86 3057 (format " *css-collection*%s" (file-name-nondirectory file))))
yuuji@86 3058 (cb (current-buffer)))
yuuji@86 3059 (unwind-protect
yuuji@86 3060 (progn
yuuji@86 3061 (set-buffer buf)
yuuji@86 3062 (insert-file-contents file)
yuuji@86 3063 (cd (or (file-name-directory file) "."))
yuuji@86 3064 (yahtml-css-collect-classes-buffer initial))
yuuji@86 3065 (if (eq buf cb)
yuuji@86 3066 nil
yuuji@86 3067 (kill-buffer buf)
yuuji@86 3068 (set-buffer cb)))))
yuuji@69 3069
yuuji@69 3070 (defun yahtml-css-scan-styles ()
yuuji@69 3071 (save-excursion
yuuji@69 3072 (goto-char (point-min))
yuuji@69 3073 (set (make-local-variable 'yahtml-css-class-alist) nil)
yuuji@72 3074 (let (b tag type e href alist)
yuuji@72 3075 (while (re-search-forward "<\\(style\\|link\\)" nil t)
yuuji@72 3076 (setq b (match-beginning 0)
yuuji@72 3077 tag (YaTeX-match-string 1))
yuuji@69 3078 (cond
yuuji@69 3079 ((string-match "style" tag)
yuuji@69 3080 (goto-char b)
yuuji@69 3081 (save-excursion (forward-list 1) (setq e (point)))
yuuji@69 3082 (cond
yuuji@69 3083 ((search-forward "text/css" e 1) ;css definition starts
yuuji@69 3084 (setq alist
yuuji@69 3085 (yahtml-css-collect-classes-region
yuuji@69 3086 (point) (progn (search-forward "</style>") (point))
yuuji@69 3087 alist)))))
yuuji@69 3088 ((and (string-match "link" tag)
yuuji@72 3089 (stringp (setq type (yahtml-get-attrvalue "type")))
yuuji@72 3090 (string-match "text/css" type)
yuuji@69 3091 (setq href (yahtml-get-attrvalue "href"))
yuuji@69 3092 (file-exists-p (yahtml-url-to-path href)))
yuuji@69 3093 (setq alist
yuuji@69 3094 (yahtml-css-collect-classes-file
yuuji@69 3095 (yahtml-url-to-path href) alist))))
yuuji@69 3096 (setq yahtml-css-class-alist alist)))))
yuuji@69 3097
yuuji@70 3098 (defun yahtml-css-get-element-completion-alist (element)
yuuji@73 3099 (let ((alist (cdr-safe (assoc (downcase element) yahtml-css-class-alist)))
yuuji@86 3100 (global (cdr-safe (assoc "*" yahtml-css-class-alist))))
yuuji@70 3101 (and (or alist global)
yuuji@70 3102 (append alist global))))
yuuji@70 3103
yuuji@57 3104 ;;; ---------- ----------
yuuji@57 3105
yuuji@57 3106 ;;;
yuuji@57 3107 ;;hilit19
yuuji@57 3108 ;;;
yuuji@57 3109 (defvar yahtml-default-face-table
yuuji@57 3110 '(
yuuji@57 3111 (form black/ivory white/hex-442233 italic)
yuuji@57 3112 ))
yuuji@57 3113 (defvar yahtml-hilit-patterns-alist
yuuji@57 3114 '(
yuuji@70 3115 'case-fold
yuuji@57 3116 ;; comments
yuuji@57 3117 ("<!--\\s " "-->" comment)
yuuji@57 3118 ;; include&exec
yuuji@69 3119 ("<!--#\\(include\\|exec\\|config\\|fsize\\|flastmod\\)" "-->" include)
yuuji@57 3120 ;; string
yuuji@68 3121 (hilit-string-find ?\\ string)
yuuji@80 3122 (yahtml-hilit-region-tag "<\\(strong\\|b\\)\\>" bold)
yuuji@57 3123 ("</?[uod]l>" 0 decl)
yuuji@57 3124 ("<\\(di\\|dt\\|li\\|dd\\)>" 0 label)
yuuji@80 3125 (yahtml-hilit-region-tag "<\\(em\\|i\\>\\)" italic)
yuuji@72 3126 ;("<a\\s +href" "</a>" crossref) ;good for hilit19, but odd for font-lock..
yuuji@72 3127 (yahtml-hilit-region-tag "<\\(a\\)\\s +href" crossref)
yuuji@64 3128 (yahtml-hilit-region-tag-itself "</?\\sw+\\>" decl)
yuuji@57 3129 ))
yuuji@57 3130
yuuji@57 3131 (defun yahtml-hilit-region-tag (tag)
yuuji@57 3132 "Return list of start/end point of <TAG> form."
yuuji@72 3133 (if (re-search-forward tag nil t)
yuuji@72 3134 (let ((m0 (match-beginning 0)) (e0 (match-end 0))
yuuji@72 3135 (elm (YaTeX-match-string 1)))
yuuji@72 3136 (skip-chars-forward "^>")
yuuji@72 3137 (prog1
yuuji@72 3138 (cons (1+ (point))
yuuji@72 3139 (progn (re-search-forward (concat "</" elm ">") nil t)
yuuji@72 3140 (match-beginning 0)))
yuuji@72 3141 (goto-char e0)))))
yuuji@57 3142
yuuji@64 3143 (defun yahtml-hilit-region-tag-itself (ptn)
yuuji@64 3144 "Return list of start/end point of <tag options...> itself."
yuuji@64 3145 (if (re-search-forward ptn nil t)
yuuji@73 3146 (let ((m0 (match-beginning 0)) (e0 (match-end 0)))
yuuji@73 3147 (skip-chars-forward "^<>")
yuuji@73 3148 (if (eq (char-after (point)) ?<) nil
yuuji@73 3149 (prog1
yuuji@73 3150 (cons m0 (min (point-max) (1+ (point))))
yuuji@73 3151 (goto-char e0))))))
yuuji@64 3152
yuuji@57 3153 ;(setq hilit-patterns-alist (delq (assq 'yahtml-mode hilit-patterns-alist) hilit-patterns-alist))
yuuji@70 3154 (and yahtml-use-hilit19
yuuji@64 3155 (or (assq 'yahtml-mode hilit-patterns-alist)
yuuji@64 3156 (setq hilit-patterns-alist
yuuji@64 3157 (cons (cons 'yahtml-mode yahtml-hilit-patterns-alist)
yuuji@64 3158 hilit-patterns-alist))))
yuuji@72 3159 ;;;
yuuji@72 3160 ;; for font-lock
yuuji@72 3161 ;;;
yuuji@72 3162
yuuji@72 3163 ; <<STATIC KEYWORDS BELOW NOT USED>>
yuuji@72 3164 ;(defvar yahtml-font-lock-keywords
yuuji@72 3165 ; '(
yuuji@72 3166 ; ;; comments
yuuji@72 3167 ; ("<!--\\s .* -->" . font-lock-comment-face)
yuuji@72 3168 ; ;; include&exec
yuuji@72 3169 ; ("<!--#\\(include\\|exec\\|config\\|fsize\\|flastmod\\).*-->"
yuuji@72 3170 ; 0 font-lock-include-face keep)
yuuji@72 3171 ; ;; string
yuuji@72 3172 ; ;(hilit-string-find ?\\ string)
yuuji@72 3173 ; ;(yahtml-hilit-region-tag "\\(em\\|strong\\)" bold)
yuuji@72 3174 ; ("</?[uod]l>" 0 font-lock-keyword-face)
yuuji@72 3175 ; ("<\\(di\\|dt\\|li\\|dd\\)>" 0 font-lock-label-face)
yuuji@72 3176 ; ("<a\\s +href=.*</a>" (0 font-lock-crossref-face keep))
yuuji@72 3177 ; ;(yahtml-hilit-region-tag-itself "</?\\sw+\\>" decl)
yuuji@72 3178 ; ("</?\\sw+\\>" (yahtml-fontify-to-tagend nil nil))
yuuji@72 3179 ; )
yuuji@72 3180 ; "*Defualt font-lock-keywords for yahtml-mode.")
yuuji@72 3181 (defvar yahtml-font-lock-keywords
yuuji@72 3182 (YaTeX-convert-pattern-hilit2fontlock yahtml-hilit-patterns-alist)
yuuji@72 3183 "Default fontifying patterns for yahtml-mode")
yuuji@72 3184
yuuji@72 3185 (defun yahtml-font-lock-set-default-keywords ()
yuuji@72 3186 (put 'yahtml-mode 'font-lock-defaults
yuuji@72 3187 '(yahtml-font-lock-keywords nil t)))
yuuji@72 3188
yuuji@72 3189 (if yahtml-use-font-lock
yuuji@72 3190 (progn
yuuji@72 3191 (if (and (boundp 'hilit-mode-enable-list) hilit-mode-enable-list)
yuuji@72 3192 ;;for those who use both hilit19 and font-lock
yuuji@72 3193 (if (eq (car hilit-mode-enable-list) 'not)
yuuji@72 3194 (or (member 'yahtml-mode hilit-mode-enable-list)
yuuji@72 3195 (nconc hilit-mode-enable-list (list 'yahtml-mode)))
yuuji@72 3196 (setq hilit-mode-enable-list
yuuji@72 3197 (delq 'yahtml-mode hilit-mode-enable-list))))
yuuji@72 3198 (yahtml-font-lock-set-default-keywords)))
yuuji@72 3199
yuuji@73 3200 (defun yahtml-font-lock-recenter (&optional arg)
yuuji@73 3201 (interactive "P")
yuuji@73 3202 (font-lock-mode -1) ;is stupid, but sure.
yuuji@73 3203 (font-lock-mode 1))
yuuji@73 3204
yuuji@330 3205 ;;;
yuuji@330 3206 ;; Drag-n-Drop
yuuji@330 3207 ;;;
yuuji@330 3208 (defun yahtml-dnd-handler (uri action)
yuuji@330 3209 "DnD handler for yahtml mode
yuuji@330 3210 Convert image URI to img-src and others to a-href."
yuuji@330 3211 (let*((file (dnd-get-local-file-name uri))
yuuji@330 3212 (path (if file (file-relative-name file) uri))
yuuji@330 3213 (case-fold-search t)
yuuji@330 3214 (geom ""))
yuuji@330 3215 (cond
yuuji@330 3216 ((memq action '(copy link move private))
yuuji@330 3217 (cond
yuuji@330 3218 ((string-match "\\.\\(jpe?g\\|png\\|gif\\|bmp\\|tiff?\\)$" path)
yuuji@330 3219 (if file
yuuji@330 3220 (setq geom (yahtml-get-image-info path)
yuuji@330 3221 geom (if (car geom)
yuuji@330 3222 (apply 'format " width=\"%s\" height=\"%s\"" geom)
yuuji@330 3223 "")))
yuuji@330 3224 (insert (format "<img src=\"%s\" alt=\"%s\"%s>"
yuuji@330 3225 path (file-name-nondirectory path) geom)))
yuuji@330 3226
yuuji@330 3227 (t (insert (format "<a href=\"%s\"></a>" path))
yuuji@330 3228 (forward-char -4))))
yuuji@330 3229 (t (message "No handler for action `%s'" action))))
yuuji@330 3230 action)
yuuji@330 3231
yuuji@68 3232 (run-hooks 'yahtml-load-hook)
yuuji@54 3233 (provide 'yahtml)
yuuji@54 3234
yuuji@54 3235 ; Local variables:
yuuji@54 3236 ; fill-prefix: ";;; "
yuuji@54 3237 ; paragraph-start: "^$\\| \\|;;;$"
yuuji@54 3238 ; paragraph-separate: "^$\\| \\|;;;$"
yuuji@80 3239 ; coding: sjis
yuuji@54 3240 ; End: