yatex

annotate yahtml.el @ 613:38b311149463

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