Mercurial > emacs
annotate lisp/textmodes/po.el @ 52242:f5ada28bb9f0
Patch by Michael Mauger <mmaug@yahoo.com>
Version 1.8.0 of sql-mode.
Simplify selection of SQL products to define highlighting and
interactive mode. Includes detailed instructions on adding
support for new products.
* sql.el (sql-product): New variable. Identifies SQL product for
use in highlighting and interactive mode.
(sql-interactive-product): New variable. SQL product for
sql-interactive-mode.
(sql-product-support): New variable. Specifies product-specific
parameters to drive highlighting and interactive mode.
(sql-imenu-generic-expression): Add more object types.
(sql-sqlite-options): Correct comment.
(sql-ms-program): Use "osql" rather than "isql".
(sql-prompt-regexp, sql-prompt-length): Update comment.
(sql-mode-menu): Add "Start SQLi session" entry. Replace
Highlighting submenu with Product menu. Fix Send Region entry.
(sql-mode-abbrev-table): Add abbreviations. Support of
SYSTEM-FLAG on define-abbrev. Support was removed with last
check-in; it now handles older Emacsen without the SYSTEM-FLAG.
(sql-mode-font-lock-object-name): Add font-lock pattern for object
names.
(sql-mode-ansi-font-lock-keywords): Set as default value.
(sql-mode-oracle-font-lock-keywords): Set as default value.
Support Oracle 9i keywords.
(sql-mode-postgres-font-lock-keywords): Set as default value.
(sql-mode-linter-font-lock-keywords): Set as default value.
(sql-mode-ms-font-lock-keywords): New variable. Support Microsoft
SQLServer 2000.
(sql-mode-sybase-font-lock-keywords)
(sql-mode-interbase-font-lock-keywords)
(sql-mode-sqlite-font-lock-keywords)
(sql-mode-strong-font-lock-keywords)
(sql-mode-mysql-font-lock-keywords)
(sql-mode-db2-font-lock-keywords): New variables. Default to ANSI
keywords.
(sql-mode-font-lock-defaults): Update comment.
(sql-product-feature): New function. Returns feature associated
with a product from `sql-product-support' alist.
(sql-product-font-lock): New function. Set font-lock support
based on `sql-product'.
(sql-add-product-keywords): New function. Add font-lock rules to
product-specific keyword variables.
(sql-set-product): New function. Set `sql-product' and apply
appropriate font-lock highlighting.
(sql-highlight-product): New function. Set font-lock support
based on a product. Also set mode name to include product name.
(sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
(sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
Use `sql-set-product'.
(sql-highlight-ms-keywords)
(sql-highlight-sybase-keywords)
(sql-highlight-interbase-keywords)
(sql-highlight-strong-keywords)
(sql-highlight-mysql-keywords)
(sql-highlight-sqlite-keywords)
(sql-highlight-db2-keywords): New functions. Use
`sql-set-product'.
(sql-get-login): Prompt in the same order as the tokens.
(sql-mode): Uses `sql-product-highlight' and
`sql-product-font-lock'.
(sql-product-interactive): New function. Common portions of
product-specific interactive mode wrappers.
(sql-interactive-mode): Rewritten to use product features.
(sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
(sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
(sql-db2, sql-linter): Use `sql-product-interactive'.
(sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
(sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
(sql-connect-ingres, sql-connect-postgres)
(sql-connect-interbase, sql-connect-db2, sql-connect-linter): New
functions. Format command line parameters and invoke comint on
the appropriate interpreter. Code was in the corresponding
`sql-xyz' function before.
(sql-connect-ms): New function. Support -E argument to use
operating system credentials for authentication.
author | Alex Schroeder <alex@gnu.org> |
---|---|
date | Mon, 18 Aug 2003 17:29:23 +0000 |
parents | 9b78d0da1a28 |
children | 695cf19ef79e |
rev | line source |
---|---|
43926 | 1 ;;; po.el --- basic support of PO translation files -*- coding: latin-1; -*- |
2 | |
3 ;; Copyright (C) 1995-1998, 2000-2002 Free Software Foundation, Inc. | |
4 | |
5 ;; Authors: François Pinard <pinard@iro.umontreal.ca>, | |
6 ;; Greg McGary <gkm@magilla.cichlid.com>, | |
7 ;; Bruno Haible <bruno@clisp.org>. | |
8 ;; Keywords: i18n, files | |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
26 | |
27 ;;; Commentary: | |
28 | |
29 ;; This package makes sure visiting PO files decodes them correctly, | |
30 ;; according to the Charset= header in the PO file. For more support | |
31 ;; for editing PO files, see po-mode.el. | |
32 | |
33 ;;; Code: | |
34 | |
35 (defconst po-content-type-charset-alist | |
48092
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
36 '(("ASCII" . undecided) |
43958
2479ec7d435b
(po-content-type-charset-alist): Convert the
Eli Zaretskii <eliz@gnu.org>
parents:
43954
diff
changeset
|
37 ("ANSI_X3.4-1968" . undecided) |
48092
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
38 ("US-ASCII" . undecided)) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
39 "Alist of coding system versus GNU libc/libiconv canonical charset name. |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
40 Contains canonical charset names that don't correspond to coding systems.") |
43926 | 41 |
42 (defun po-find-charset (filename) | |
48092
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
43 "Return PO charset value for FILENAME." |
43926 | 44 (let ((charset-regexp |
51890
9b78d0da1a28
(po-find-charset): White space at the start of the Content-Type field body is
Juanma Barranquero <lekktu@gmail.com>
parents:
48092
diff
changeset
|
45 "^\"Content-Type:[ \t]*text/plain;[ \t]*charset=\\(.*\\)\\\\n\"") |
43926 | 46 (short-read nil)) |
47 ;; Try the first 4096 bytes. In case we cannot find the charset value | |
48 ;; within the first 4096 bytes (the PO file might start with a long | |
49 ;; comment) try the next 4096 bytes repeatedly until we'll know for sure | |
50 ;; we've checked the empty header entry entirely. | |
51 (while (not (or short-read (re-search-forward "^msgid" nil t))) | |
52 (save-excursion | |
53 (goto-char (point-max)) | |
54 (let ((pair (insert-file-contents-literally filename nil | |
55 (1- (point)) | |
56 (1- (+ (point) 4096))))) | |
57 (setq short-read (< (nth 1 pair) 4096))))) | |
43952
bd36495e6ade
(po-find-charset): Search for Charset= header even if we've read less than
Eli Zaretskii <eliz@gnu.org>
parents:
43937
diff
changeset
|
58 (cond ((re-search-forward charset-regexp nil t) (match-string 1)) |
bd36495e6ade
(po-find-charset): Search for Charset= header even if we've read less than
Eli Zaretskii <eliz@gnu.org>
parents:
43937
diff
changeset
|
59 (short-read nil) |
43926 | 60 ;; We've found the first msgid; maybe, only a part of the msgstr |
61 ;; value was loaded. Load the next 1024 bytes; if charset still | |
62 ;; isn't available, give up. | |
63 (t (save-excursion | |
64 (goto-char (point-max)) | |
65 (insert-file-contents-literally filename nil | |
66 (1- (point)) | |
67 (1- (+ (point) 1024)))) | |
68 (if (re-search-forward charset-regexp nil t) | |
69 (match-string 1)))))) | |
70 | |
71 (defun po-find-file-coding-system-guts (operation filename) | |
48092
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
72 "Return a (DECODING . ENCODING) pair for OPERATION on PO file FILENAME. |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
73 Do so according to FILENAME's declared charset." |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
74 (and |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
75 (eq operation 'insert-file-contents) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
76 (file-exists-p filename) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
77 (with-temp-buffer |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
78 (let* ((coding-system-for-read 'no-conversion) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
79 (charset (or (po-find-charset filename) "ascii")) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
80 assoc) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
81 (list (cond |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
82 ((setq assoc |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
83 (assoc-ignore-case charset |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
84 po-content-type-charset-alist)) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
85 (cdr assoc)) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
86 ((or (setq assoc (assoc-ignore-case charset coding-system-alist)) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
87 (setq assoc |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
88 (assoc-ignore-case (subst-char-in-string ?_ ?- |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
89 charset) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
90 coding-system-alist))) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
91 (intern (car assoc))) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
92 ;; In principle we should also check the `mime-charset' |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
93 ;; property of everything in the base coding system |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
94 ;; list, but there should always be a coding system |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
95 ;; corresponding to the MIME name. |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
96 ((featurep 'code-pages) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
97 ;; Give up. |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
98 'raw-text) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
99 (t |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
100 ;; Try again with code-pages loaded. Maybe it's best |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
101 ;; to require it initially? |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
102 (require 'code-pages nil t) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
103 (if (or |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
104 (setq assoc (assoc-ignore-case charset coding-system-alist)) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
105 (setq assoc (assoc-ignore-case (subst-char-in-string |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
106 ?_ ?- charset) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
107 coding-system-alist))) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
108 (intern (car assoc)) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
109 'raw-text)))))))) |
43926 | 110 |
111 ;;;###autoload | |
112 (defun po-find-file-coding-system (arg-list) | |
48092
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
113 "Return a (DECODING . ENCODING) pair, according to PO file's charset. |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
114 Called through `file-coding-system-alist', before the file is visited for real." |
43926 | 115 (po-find-file-coding-system-guts (car arg-list) (car (cdr arg-list)))) |
116 ;; This is for XEmacs. | |
117 ;(defun po-find-file-coding-system (operation filename) | |
118 ; "\ | |
119 ;Return a Mule (DECODING . ENCODING) pair, according to PO file charset. | |
120 ;Called through file-coding-system-alist, before the file is visited for real." | |
121 ; (po-find-file-coding-system-guts operation filename)) | |
48092
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
122 |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
123 (provide 'po) |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
124 |
10d4bf044393
(po-content-type-charset-alist): Delete most
Dave Love <fx@gnu.org>
parents:
47655
diff
changeset
|
125 ;;; po.el ends here |