From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tak Ota Newsgroups: gmane.emacs.devel Subject: table.el downcase HTML tags Date: Tue, 30 May 2006 10:13:35 -0700 (PDT) Organization: Sony Electronics Inc. Message-ID: <20060530.101335.127866384.Takaaki.Ota@am.sony.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1149015225 5679 80.91.229.2 (30 May 2006 18:53:45 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 30 May 2006 18:53:45 +0000 (UTC) Cc: carsten.dominik@gmail.com Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue May 30 20:53:42 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Fl9LV-0007u9-BT for ged-emacs-devel@m.gmane.org; Tue, 30 May 2006 20:53:37 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fl9LU-00084U-RC for ged-emacs-devel@m.gmane.org; Tue, 30 May 2006 14:53:36 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Fl7mn-0004nW-NS for emacs-devel@gnu.org; Tue, 30 May 2006 13:13:41 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Fl7ml-0004nK-5K for emacs-devel@gnu.org; Tue, 30 May 2006 13:13:40 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fl7ml-0004nH-03 for emacs-devel@gnu.org; Tue, 30 May 2006 13:13:39 -0400 Original-Received: from [160.33.98.75] (helo=mail8.fw-bc.sony.com) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1Fl7sa-0003QR-T2 for emacs-devel@gnu.org; Tue, 30 May 2006 13:19:40 -0400 Original-Received: from mail1.sgo.in.sel.sony.com (mail1.sgo.in.sel.sony.com [43.130.1.111]) by mail8.fw-bc.sony.com (8.12.11/8.12.11) with ESMTP id k4UHDahW009119; Tue, 30 May 2006 17:13:36 GMT Original-Received: from localhost (us00065bd5fa01.am.sony.com [43.191.36.137]) by mail1.sgo.in.sel.sony.com (8.12.11/8.12.11) with ESMTP id k4UHDaaa018229; Tue, 30 May 2006 17:13:36 GMT Original-To: emacs-devel@gnu.org X-Telephone: +1-858-942-3239 X-Fax------: +1-858-942-9142 X-SnailMail: 16450 West Bernardo Drive MZ7205, San Diego, CA 92127-1804 X-Mailer: Mew-5.0.53 on Emacs-22.0.50.1 (i386-mingw-nt5.1.2600 built on 2006-05-15) X-Mailman-Approved-At: Tue, 30 May 2006 14:52:08 -0400 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:55489 Archived-At: This has been requested for many times that HTML tags that table.el generates to be downcased to be compatible with XHTML standard. If no one objects could someone check the following change into the repository. Thanks. -Tak 2006-05-30 Takaaki Ota * textmodes/table.el: Convert all HTML tags to lower case for XHTML compatibility. bash-3.1$ diff ../../../../d/pub/emacs/pure/emacs/lisp/textmodes/table.el table.el 9c9 < ;; Revised: Sat Aug 06 2005 19:42:54 (CEST) --- > ;; Revised: Tue May 30 2006 10:01:43 (PDT) 3107c3107 < (format "\n" table-html-table-attribute) --- > (format "
\n" table-html-table-attribute) 3110c3110 < (format " \n" caption) --- > (format " \n" caption) 3134c3134 < (insert "
%s%s
\n")) --- > (insert "\n")) 3155c3155 < (insert " \n")) --- > (insert " \n")) 3163c3163 < (insert " \n")) --- > (insert " \n")) 3210c3210 < "TH" "TD")))) --- > "th" "td")))) 3269c3269 < (insert "
") --- > (insert "
")