yatex

annotate yahtml.el @ 366:77a2fd4fd634

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