From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Pavel SRB Newsgroups: gmane.emacs.help Subject: text underline in html template for django Date: Sat, 17 Nov 2007 18:49:57 +0100 Message-ID: <473F29C5.5090900@heckler-koch.cz> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1195322109 25434 80.91.229.12 (17 Nov 2007 17:55:09 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 17 Nov 2007 17:55:09 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Nov 17 18:55:14 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1ItRsj-0003Yh-IA for geh-help-gnu-emacs@m.gmane.org; Sat, 17 Nov 2007 18:55:01 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ItRsW-0003vk-4b for geh-help-gnu-emacs@m.gmane.org; Sat, 17 Nov 2007 12:54:48 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ItRsI-0003vV-44 for help-gnu-emacs@gnu.org; Sat, 17 Nov 2007 12:54:34 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ItRsE-0003q9-Ki for help-gnu-emacs@gnu.org; Sat, 17 Nov 2007 12:54:33 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ItRsE-0003pm-FV for help-gnu-emacs@gnu.org; Sat, 17 Nov 2007 12:54:30 -0500 Original-Received: from smtpa.forpsi.com ([81.2.195.204] helo=psi1.forpsi.com) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1ItRsD-0002xj-KO for help-gnu-emacs@gnu.org; Sat, 17 Nov 2007 12:54:30 -0500 Original-Received: (qmail 24667 invoked by uid 89); 17 Nov 2007 17:54:25 -0000 Original-Received: from unknown (HELO ?192.168.1.110?) (srbanator@heckler-koch.cz@213.180.38.152) by psi1 with ESMTPA; 17 Nov 2007 17:54:25 -0000 User-Agent: Icedove 1.5.0.14pre (X11/20071018) X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:49307 Archived-At: hi all as all of you i am very happily writting code in emacs, in all bunch of modes. I just started to learn django, and i did not find solution for my problem anywhere. In django we are writting html templates like this: Muzikanti z lekce 4 {% for muzikant in people %} {% endfor %}
{{ muzikant.name }} {% if muzikant.nemamezeru %}*{% endif %} {{ muzikant.genre }}
My problem is that emacs, is underlining my code. As it is not happy with {}. I believe this is not matter of some mode, but some different settings as abbrev. Here is my dotEmacs. (custom-set-variables ;; custom-set-variables was added by Custom -- don't edit or cut/paste it! ;; Your init file should contain only one such instance. '(case-fold-search t) '(current-language-environment "czech") '(default-input-method "czech") '(global-font-lock-mode t nil (font-lock))) (custom-set-faces ;; custom-set-faces was added by Custom -- don't edit or cut/paste it! ;; Your init file should contain only one such instance. ) (load "/home/conan/.emacs.d/nxml-mode-20041004/rng-auto.el") (load "/usr/share/emacs21/site-lisp/xslide.el") (load "/usr/share/emacs21/site-lisp/xslide-abbrev.el") (load "/usr/share/emacs21/site-lisp/xslide-data.el") (load "/usr/share/emacs21/site-lisp/xslide-font.el") (load "/usr/share/emacs21/site-lisp/xslide-process.el") (add-hook 'comint-output-filter-functions 'comint-watch-for-password-prompt) (global-font-lock-mode t) (setq auto-mode-alist (append (list '("\\.xml$" . nxml-mode) '("\\.xhtml$" . nxml-mode) '("\\.html$" . nxml-mode) '("\\.xsd$" . nxml-mode) '("\\.rng$" . nxml-mode) '("\\.kml$" . nxml-mode) ) auto-mode-alist)) ;; buffer switching (require 'tabbar) (global-set-key [(f9)] 'tabbar-mode) (global-set-key [(f10)] 'tabbar-local-mode) (global-set-key [(shift left)] 'tabbar-backward) (global-set-key [(shift right)] 'tabbar-forward) (set-language-environment "czech") (set-input-method "czech-qwerty") (prefer-coding-system 'utf-8) (add-hook 'xsl-mode-hook 'turn-on-font-lock) (autoload 'xsl-mode "xslide" "major mode for xsl stylesheets." t) (setq auto-mode-alist (append (list '("\\.xsl" . xsl-mode) '("\\.xslt" . xsl-mode)) auto-mode-alist)) (add-hook 'xsl-mode-hook '(lambda () (abbrev-mode 1))) (setq load-path `("/home/conan/.emacs.d/python-mode-1.0/" . ,load-path)) (load-library "python-mode") (setq auto-mode-alist (cons '("\\.py$" . python-mode) auto-mode-alist)) (defun pocesti () "" (interactive) (let ((beg (point))) (beginning-of-buffer) (replace-regexp "Å" "ř") (replace-regexp "ÃÂ" "č") (replace-regexp "á" "š") (replace-regexp "ï" "ů") (goto-char beg) ) ) (setq-default abbrev-mode t) (read-abbrev-file "~/.abbrev_defs") (setq save-abbrevs t) (custom-set-variables '(transient-mark-mode nil) '(pc-select-meta-moves-sexps t) '(show-paren-delay 0.25) '(show-paren-mode t nil (paren)) '(pc-select-selection-keys-only t) '(column-number-mode t) '(pc-selection-mode nil nil (pc-select)) '(visible-bell t)) (custom-set-faces '(show-paren-match-face ((((class color)) (:bold t))))) (setq-default indent-tabs-mode nil) (desktop-load-default) (desktop-read) (setq scroll-step 1) ; ********** Haskell mode ********** (add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode) (add-hook 'haskell-mode-hook 'turn-on-haskell-indent) (add-hook 'haskell-mode-hook 'font-lock-mode) (load "/usr/share/emacs/site-lisp/haskell-mode/haskell-site-file.el") ;;(add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode) ;;(add-hook 'haskell-mode-hook 'turn-on-haskell-indent) ;;(add-hook 'haskell-mode-hook 'turn-on-haskell-simple-indent) So please, what should i use to stop this? Thank you very much for advice Pavel SRB From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Lennart Borgman (gmail)" Newsgroups: gmane.emacs.help Subject: Re: text underline in html template for django Date: Sun, 18 Nov 2007 13:05:11 +0100 Message-ID: <47402A77.404@gmail.com> References: <473F29C5.5090900@heckler-koch.cz> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1195387571 8879 80.91.229.12 (18 Nov 2007 12:06:11 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 18 Nov 2007 12:06:11 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Pavel SRB Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Nov 18 13:06:17 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Itium-00061r-71 for geh-help-gnu-emacs@m.gmane.org; Sun, 18 Nov 2007 13:06:16 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ItiuZ-0001DW-1S for geh-help-gnu-emacs@m.gmane.org; Sun, 18 Nov 2007 07:06:03 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ititx-00011m-6I for help-gnu-emacs@gnu.org; Sun, 18 Nov 2007 07:05:25 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ititv-0000zr-86 for help-gnu-emacs@gnu.org; Sun, 18 Nov 2007 07:05:24 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ititv-0000zj-30 for help-gnu-emacs@gnu.org; Sun, 18 Nov 2007 07:05:23 -0500 Original-Received: from ch-smtp01.sth.basefarm.net ([80.76.149.212]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Ititu-0003zB-F1 for help-gnu-emacs@gnu.org; Sun, 18 Nov 2007 07:05:22 -0500 Original-Received: from c83-254-148-228.bredband.comhem.se ([83.254.148.228]:60217 helo=[127.0.0.1]) by ch-smtp01.sth.basefarm.net with esmtp (Exim 4.68) (envelope-from ) id 1Ititq-0002u0-3V; Sun, 18 Nov 2007 13:05:18 +0100 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.9) Gecko/20071031 Thunderbird/2.0.0.9 Mnenhy/0.7.5.666 In-Reply-To: <473F29C5.5090900@heckler-koch.cz> X-Antivirus: avast! (VPS 071118-0, 2007-11-18), Outbound message X-Antivirus-Status: Clean X-Originating-IP: 83.254.148.228 X-Scan-Result: No virus found in message 1Ititq-0002u0-3V. X-Scan-Signature: ch-smtp01.sth.basefarm.net 1Ititq-0002u0-3V 6cbaa69dde49f40a8b1be593a105187d X-detected-kernel: by monty-python.gnu.org: Linux 2.6? (barebone, rare!) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:49321 Archived-At: Pavel SRB wrote: > hi all > > as all of you i am very happily writting code in emacs, in all bunch of > modes. > I just started to learn django, and i did not find solution for my > problem anywhere. > > In django we are writting html templates like this: > > > > Muzikanti z lekce 4 > > > > {% for muzikant in people %} > > > > > {% endfor %} >
> > {{ muzikant.name }} > {% if muzikant.nemamezeru %}*{% endif %} > > > > {{ muzikant.genre }} > >
> > > My problem is that emacs, is underlining my code. As it is not happy > with {}. I believe this is not matter of some mode, but some different > settings as abbrev. Here is my dotEmacs. How does the underlining look? Is is red? Is it one or several characters in a row that are underlined? From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Pavel SRB Newsgroups: gmane.emacs.help Subject: Re: text underline in html template for django Date: Sun, 18 Nov 2007 15:13:38 +0100 Message-ID: <47404892.7020802@heckler-koch.cz> References: <473F29C5.5090900@heckler-koch.cz> <47402A77.404@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1195395520 29805 80.91.229.12 (18 Nov 2007 14:18:40 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 18 Nov 2007 14:18:40 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Nov 18 15:18:45 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Itkyx-00070u-Qg for geh-help-gnu-emacs@m.gmane.org; Sun, 18 Nov 2007 15:18:44 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Itkyk-00008P-FS for geh-help-gnu-emacs@m.gmane.org; Sun, 18 Nov 2007 09:18:30 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ItkyT-00007m-Rf for help-gnu-emacs@gnu.org; Sun, 18 Nov 2007 09:18:13 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ItkyS-00007P-Mc for help-gnu-emacs@gnu.org; Sun, 18 Nov 2007 09:18:13 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ItkyS-00007K-J3 for help-gnu-emacs@gnu.org; Sun, 18 Nov 2007 09:18:12 -0500 Original-Received: from smtpa.forpsi.com ([81.2.195.204] helo=psi1.forpsi.com) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1ItkyS-0001yH-1o for help-gnu-emacs@gnu.org; Sun, 18 Nov 2007 09:18:12 -0500 Original-Received: (qmail 15239 invoked by uid 89); 18 Nov 2007 14:18:08 -0000 Original-Received: from unknown (HELO ?192.168.1.110?) (srbanator@heckler-koch.cz@213.180.38.152) by psi1 with ESMTPA; 18 Nov 2007 14:18:08 -0000 User-Agent: Icedove 1.5.0.14pre (X11/20071018) In-Reply-To: <47402A77.404@gmail.com> X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:49322 Archived-At: Lennart Borgman (gmail) wrote: > Pavel SRB wrote: >> hi all >> >> as all of you i am very happily writting code in emacs, in all bunch >> of modes. >> I just started to learn django, and i did not find solution for my >> problem anywhere. >> >> In django we are writting html templates like this: >> >> >> >> Muzikanti z lekce 4 >> >> >> >> {% for muzikant in people %} >> >> >> >> >> {% endfor %} >>
>> >> {{ muzikant.name }} >> {% if muzikant.nemamezeru %}*{% endif %} >> >> >> >> {{ muzikant.genre }} >> >>
>> >> >> My problem is that emacs, is underlining my code. As it is not happy >> with {}. I believe this is not matter of some mode, but some >> different settings as abbrev. Here is my dotEmacs. > > How does the underlining look? Is is red? Is it one or several > characters in a row that are underlined? > hi here is my screenshot: http://heckler-koch.cz/emacs_django_template_underline.png You can see i have nxml-mode enable, but it does the same in text-mode even when abbrev-mode is disable. From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Pavel SRB Newsgroups: gmane.emacs.help Subject: Re: text underline in html template for django Date: Tue, 20 Nov 2007 18:59:12 +0100 Message-ID: <47432070.30409@heckler-koch.cz> References: <473F29C5.5090900@heckler-koch.cz> <47402A77.404@gmail.com> <47404892.7020802@heckler-koch.cz> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1195581864 30292 80.91.229.12 (20 Nov 2007 18:04:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 20 Nov 2007 18:04:24 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Nov 20 19:04:29 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IuXSU-0000Tc-Ux for geh-help-gnu-emacs@m.gmane.org; Tue, 20 Nov 2007 19:04:27 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IuXSH-0001qB-99 for geh-help-gnu-emacs@m.gmane.org; Tue, 20 Nov 2007 13:04:13 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IuXRz-0001nM-Fd for help-gnu-emacs@gnu.org; Tue, 20 Nov 2007 13:03:55 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IuXRw-0001h9-Dd for help-gnu-emacs@gnu.org; Tue, 20 Nov 2007 13:03:55 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IuXRw-0001gs-7v for help-gnu-emacs@gnu.org; Tue, 20 Nov 2007 13:03:52 -0500 Original-Received: from smtpa.forpsi.com ([81.2.195.204] helo=psi3.forpsi.com) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1IuXRv-0001Gw-Hi for help-gnu-emacs@gnu.org; Tue, 20 Nov 2007 13:03:51 -0500 Original-Received: (qmail 13202 invoked by uid 89); 20 Nov 2007 18:03:47 -0000 Original-Received: from unknown (HELO ?192.168.1.110?) (srbanator@heckler-koch.cz@213.180.38.152) by psi3 with ESMTPA; 20 Nov 2007 18:03:45 -0000 User-Agent: Icedove 1.5.0.14pre (X11/20071018) In-Reply-To: <47404892.7020802@heckler-koch.cz> X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:49363 Archived-At: Pavel SRB wrote: > Lennart Borgman (gmail) wrote: >> Pavel SRB wrote: >>> hi all >>> >>> as all of you i am very happily writting code in emacs, in all bunch >>> of modes. >>> I just started to learn django, and i did not find solution for my >>> problem anywhere. >>> >>> In django we are writting html templates like this: >>> >>> >>> >>> Muzikanti z lekce 4 >>> >>> >>> >>> {% for muzikant in people %} >>> >>> >>> >>> >>> {% endfor %} >>>
>>> >>> {{ muzikant.name }} >>> {% if muzikant.nemamezeru %}*{% endif %} >>> >>> >>> >>> {{ muzikant.genre }} >>> >>>
>>> >>> >>> My problem is that emacs, is underlining my code. As it is not happy >>> with {}. I believe this is not matter of some mode, but some >>> different settings as abbrev. Here is my dotEmacs. >> >> How does the underlining look? Is is red? Is it one or several >> characters in a row that are underlined? >> > hi > > here is my screenshot: > http://heckler-koch.cz/emacs_django_template_underline.png > > You can see i have nxml-mode enable, but it does the same in text-mode > even when abbrev-mode is disable. > > > > > _______________________________________________ > help-gnu-emacs mailing list > help-gnu-emacs@gnu.org > http://lists.gnu.org/mailman/listinfo/help-gnu-emacs > hi, nobody got any idea? thank you very much From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Lennart Borgman (gmail)" Newsgroups: gmane.emacs.help Subject: Re: text underline in html template for django Date: Tue, 20 Nov 2007 19:35:33 +0100 Message-ID: <474328F5.7000004@gmail.com> References: <473F29C5.5090900@heckler-koch.cz> <47402A77.404@gmail.com> <47404892.7020802@heckler-koch.cz> <47432070.30409@heckler-koch.cz> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1195583798 5261 80.91.229.12 (20 Nov 2007 18:36:38 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 20 Nov 2007 18:36:38 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Pavel SRB Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Nov 20 19:36:34 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IuXxP-0005GH-84 for geh-help-gnu-emacs@m.gmane.org; Tue, 20 Nov 2007 19:36:23 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IuXxB-0000fA-Dy for geh-help-gnu-emacs@m.gmane.org; Tue, 20 Nov 2007 13:36:09 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IuXwv-0000f5-2M for help-gnu-emacs@gnu.org; Tue, 20 Nov 2007 13:35:53 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IuXwt-0000cX-4L for help-gnu-emacs@gnu.org; Tue, 20 Nov 2007 13:35:52 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IuXwt-0000cK-1E for help-gnu-emacs@gnu.org; Tue, 20 Nov 2007 13:35:51 -0500 Original-Received: from ch-smtp01.sth.basefarm.net ([80.76.149.212]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IuXws-00044q-52 for help-gnu-emacs@gnu.org; Tue, 20 Nov 2007 13:35:50 -0500 Original-Received: from c83-254-148-228.bredband.comhem.se ([83.254.148.228]:60149 helo=[127.0.0.1]) by ch-smtp01.sth.basefarm.net with esmtp (Exim 4.68) (envelope-from ) id 1IuXwo-0003Lr-4v; Tue, 20 Nov 2007 19:35:48 +0100 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.9) Gecko/20071031 Thunderbird/2.0.0.9 Mnenhy/0.7.5.666 In-Reply-To: <47432070.30409@heckler-koch.cz> X-Antivirus: avast! (VPS 071120-0, 2007-11-20), Outbound message X-Antivirus-Status: Clean X-Originating-IP: 83.254.148.228 X-Scan-Result: No virus found in message 1IuXwo-0003Lr-4v. X-Scan-Signature: ch-smtp01.sth.basefarm.net 1IuXwo-0003Lr-4v f31bb1b7ff18bd95784ec643cecd8bb4 X-detected-kernel: by monty-python.gnu.org: Linux 2.6? (barebone, rare!) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:49367 Archived-At: Pavel SRB wrote: > Pavel SRB wrote: >> Lennart Borgman (gmail) wrote: >>> Pavel SRB wrote: >>>> hi all >>>> >>>> as all of you i am very happily writting code in emacs, in all bunch >>>> of modes. >>>> I just started to learn django, and i did not find solution for my >>>> problem anywhere. >>>> >>>> In django we are writting html templates like this: >>>> >>>> >>>> >>>> Muzikanti z lekce 4 >>>> >>>> ... >>>> >>>> My problem is that emacs, is underlining my code. As it is not happy >>>> with {}. I believe this is not matter of some mode, but some >>>> different settings as abbrev. Here is my dotEmacs. >>> >>> How does the underlining look? Is is red? Is it one or several >>> characters in a row that are underlined? >>> >> hi >> >> here is my screenshot: >> http://heckler-koch.cz/emacs_django_template_underline.png >> >> You can see i have nxml-mode enable, but it does the same in text-mode >> even when abbrev-mode is disable. > > hi, nobody got any idea? thank you very much Oh, yes, no problem removing those underlines. See nXhtml: http://ourcomments.org/Emacs/nXhtml/doc/nxhtml.html On that page is an explanation of how to get rid of the red underlinging (and why it is there). You have to change to use nxhtml-mode instead though. I just tried to add Django to nXhtml, but found a small problem which makes me hesitating to release that addition right now. From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Pavel SRB Newsgroups: gmane.emacs.help Subject: Re: text underline in html template for django Date: Tue, 20 Nov 2007 20:41:21 +0100 Message-ID: <47433861.2010706@heckler-koch.cz> References: <473F29C5.5090900@heckler-koch.cz> <47402A77.404@gmail.com> <47404892.7020802@heckler-koch.cz> <47432070.30409@heckler-koch.cz> <474328F5.7000004@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1195588014 21223 80.91.229.12 (20 Nov 2007 19:46:54 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 20 Nov 2007 19:46:54 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Nov 20 20:47:00 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IuZ3a-00023E-TI for geh-help-gnu-emacs@m.gmane.org; Tue, 20 Nov 2007 20:46:51 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IuZ3M-0005Lv-Np for geh-help-gnu-emacs@m.gmane.org; Tue, 20 Nov 2007 14:46:36 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IuZ31-0005ID-Ns for help-gnu-emacs@gnu.org; Tue, 20 Nov 2007 14:46:15 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IuZ2z-0005BD-9g for help-gnu-emacs@gnu.org; Tue, 20 Nov 2007 14:46:15 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IuZ2y-0005Ah-RG for help-gnu-emacs@gnu.org; Tue, 20 Nov 2007 14:46:12 -0500 Original-Received: from smtpa.forpsi.com ([81.2.195.204] helo=psi1.forpsi.com) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1IuZ2x-00014z-JF for help-gnu-emacs@gnu.org; Tue, 20 Nov 2007 14:46:12 -0500 Original-Received: (qmail 16368 invoked by uid 89); 20 Nov 2007 19:45:58 -0000 Original-Received: from unknown (HELO ?192.168.1.110?) (srbanator@heckler-koch.cz@213.180.38.152) by psi1 with ESMTPA; 20 Nov 2007 19:45:57 -0000 User-Agent: Icedove 1.5.0.14pre (X11/20071018) In-Reply-To: <474328F5.7000004@gmail.com> X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:49372 Archived-At: Lennart Borgman (gmail) wrote: > Pavel SRB wrote: >> Pavel SRB wrote: >>> Lennart Borgman (gmail) wrote: >>>> Pavel SRB wrote: >>>>> hi all >>>>> >>>>> as all of you i am very happily writting code in emacs, in all >>>>> bunch of modes. >>>>> I just started to learn django, and i did not find solution for my >>>>> problem anywhere. >>>>> >>>>> In django we are writting html templates like this: >>>>> >>>>> >>>>> >>>>> Muzikanti z lekce 4 >>>>> >>>>> > ... >>>>> >>>>> My problem is that emacs, is underlining my code. As it is not >>>>> happy with {}. I believe this is not matter of some mode, but some >>>>> different settings as abbrev. Here is my dotEmacs. >>>> >>>> How does the underlining look? Is is red? Is it one or several >>>> characters in a row that are underlined? >>>> >>> hi >>> >>> here is my screenshot: >>> http://heckler-koch.cz/emacs_django_template_underline.png >>> >>> You can see i have nxml-mode enable, but it does the same in >>> text-mode even when abbrev-mode is disable. >> >> hi, nobody got any idea? thank you very much > > > Oh, yes, no problem removing those underlines. See nXhtml: > > http://ourcomments.org/Emacs/nXhtml/doc/nxhtml.html > > On that page is an explanation of how to get rid of the red > underlinging (and why it is there). You have to change to use > nxhtml-mode instead though. > > I just tried to add Django to nXhtml, but found a small problem which > makes me hesitating to release that addition right now. > oooh, thank you for these informations. I just have to get emacs22 to my debian etch. Will tell results later. thankx again From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Lennart Borgman (gmail)" Newsgroups: gmane.emacs.help Subject: Re: text underline in html template for django Date: Fri, 23 Nov 2007 01:34:29 +0100 Message-ID: <47462015.4030105@gmail.com> References: <473F29C5.5090900@heckler-koch.cz> <47402A77.404@gmail.com> <47404892.7020802@heckler-koch.cz> <47432070.30409@heckler-koch.cz> <474328F5.7000004@gmail.com> <47433861.2010706@heckler-koch.cz> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1195778115 3454 80.91.229.12 (23 Nov 2007 00:35:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 23 Nov 2007 00:35:15 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Pavel SRB Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Nov 23 01:35:21 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IvMVm-0002Bu-UU for geh-help-gnu-emacs@m.gmane.org; Fri, 23 Nov 2007 01:35:15 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IvMVY-00021q-LY for geh-help-gnu-emacs@m.gmane.org; Thu, 22 Nov 2007 19:35:00 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IvMVL-00021Z-2u for help-gnu-emacs@gnu.org; Thu, 22 Nov 2007 19:34:47 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IvMVJ-00021J-KR for help-gnu-emacs@gnu.org; Thu, 22 Nov 2007 19:34:46 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IvMVJ-00021E-FW for help-gnu-emacs@gnu.org; Thu, 22 Nov 2007 19:34:45 -0500 Original-Received: from ch-smtp01.sth.basefarm.net ([80.76.149.212]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IvMVI-00065w-UW for help-gnu-emacs@gnu.org; Thu, 22 Nov 2007 19:34:45 -0500 Original-Received: from c83-254-148-228.bredband.comhem.se ([83.254.148.228]:59443 helo=[127.0.0.1]) by ch-smtp01.sth.basefarm.net with esmtp (Exim 4.68) (envelope-from ) id 1IvMVE-0001hD-5x; Fri, 23 Nov 2007 01:34:43 +0100 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.9) Gecko/20071031 Thunderbird/2.0.0.9 Mnenhy/0.7.5.666 In-Reply-To: <47433861.2010706@heckler-koch.cz> X-Antivirus: avast! (VPS 071122-0, 2007-11-22), Outbound message X-Antivirus-Status: Clean X-Originating-IP: 83.254.148.228 X-Scan-Result: No virus found in message 1IvMVE-0001hD-5x. X-Scan-Signature: ch-smtp01.sth.basefarm.net 1IvMVE-0001hD-5x 48fbcb0c514652b6559b1e1f96607a6a X-detected-kernel: by monty-python.gnu.org: Linux 2.6? (barebone, rare!) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:49416 Archived-At: Pavel SRB wrote: >> Oh, yes, no problem removing those underlines. See nXhtml: >> >> http://ourcomments.org/Emacs/nXhtml/doc/nxhtml.html >> >> On that page is an explanation of how to get rid of the red >> underlinging (and why it is there). You have to change to use >> nxhtml-mode instead though. >> >> I just tried to add Django to nXhtml, but found a small problem which >> makes me hesitating to release that addition right now. >> > oooh, thank you for these informations. I just have to get emacs22 to my > debian etch. Will tell results later. > > thankx again Pavel, I have put up a beta version of nXhtml that includes support for django and has the bug above fixed. I would be glad if you tested and gave some simple feedback. You can find the beta here http://ourcomments.org/Emacs/DL/elisp/nxhtml/beta/ From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Pavel SRB Newsgroups: gmane.emacs.help Subject: Re: text underline in html template for django Date: Fri, 23 Nov 2007 08:50:42 +0100 Message-ID: <47468652.4070607@heckler-koch.cz> References: <473F29C5.5090900@heckler-koch.cz> <47402A77.404@gmail.com> <47404892.7020802@heckler-koch.cz> <47432070.30409@heckler-koch.cz> <474328F5.7000004@gmail.com> <47433861.2010706@heckler-koch.cz> <47462015.4030105@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1195808158 690 80.91.229.12 (23 Nov 2007 08:55:58 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 23 Nov 2007 08:55:58 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Nov 23 09:56:05 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IvUKQ-00044E-CJ for geh-help-gnu-emacs@m.gmane.org; Fri, 23 Nov 2007 09:56:02 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IvUKB-0006th-MA for geh-help-gnu-emacs@m.gmane.org; Fri, 23 Nov 2007 03:55:47 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IvUJu-0006rS-Eq for help-gnu-emacs@gnu.org; Fri, 23 Nov 2007 03:55:30 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IvUJr-0006qs-WF for help-gnu-emacs@gnu.org; Fri, 23 Nov 2007 03:55:29 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IvUJr-0006qp-R5 for help-gnu-emacs@gnu.org; Fri, 23 Nov 2007 03:55:27 -0500 Original-Received: from smtpa.forpsi.com ([81.2.195.204] helo=psi4.forpsi.com) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1IvUJr-0002zy-4z for help-gnu-emacs@gnu.org; Fri, 23 Nov 2007 03:55:27 -0500 Original-Received: (qmail 28380 invoked by uid 89); 23 Nov 2007 07:55:20 -0000 Original-Received: from unknown (HELO ?192.168.1.110?) (srbanator@heckler-koch.cz@213.180.38.152) by psi4 with ESMTPA; 23 Nov 2007 07:55:20 -0000 User-Agent: Icedove 1.5.0.14pre (X11/20071018) In-Reply-To: <47462015.4030105@gmail.com> X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:49427 Archived-At: Lennart Borgman (gmail) wrote: > Pavel SRB wrote: >>> Oh, yes, no problem removing those underlines. See nXhtml: >>> >>> http://ourcomments.org/Emacs/nXhtml/doc/nxhtml.html >>> >>> On that page is an explanation of how to get rid of the red >>> underlinging (and why it is there). You have to change to use >>> nxhtml-mode instead though. >>> >>> I just tried to add Django to nXhtml, but found a small problem >>> which makes me hesitating to release that addition right now. >>> >> oooh, thank you for these informations. I just have to get emacs22 to my >> debian etch. Will tell results later. >> >> thankx again > > Pavel, I have put up a beta version of nXhtml that includes support > for django and has the bug above fixed. I would be glad if you tested > and gave some simple feedback. > > You can find the beta here > > http://ourcomments.org/Emacs/DL/elisp/nxhtml/beta/ > dear Lennart thank you very much for your help. Before few days i have installed debian-etch package emacs22 and tested your nxhtml-mode [nxhtml-1.03-070525.zip]. After successful start nxhtml-mode was present and i was able to turn off underlining by nXhtml->Compleition->Displ.Extr.Xhtml validator header. So perfect. This morning i also tested your newest nxhtml-mode [ nxhtml-1.04-071123-02_40_20.zip ]. As before, firstly i had to switch my django template to xhtml-mode, to have nXhtml menu available, and be was to switch underlining off. Then i just switch to django-mode, and itworks perfectly. So again thank you very much for your help, i will post any comments as i will be learning django. Have nice weekend Pavel From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Lennart Borgman (gmail)" Newsgroups: gmane.emacs.help Subject: Re: text underline in html template for django Date: Fri, 23 Nov 2007 10:05:43 +0100 Message-ID: <474697E7.1050905@gmail.com> References: <473F29C5.5090900@heckler-koch.cz> <47402A77.404@gmail.com> <47404892.7020802@heckler-koch.cz> <47432070.30409@heckler-koch.cz> <474328F5.7000004@gmail.com> <47433861.2010706@heckler-koch.cz> <47462015.4030105@gmail.com> <47468652.4070607@heckler-koch.cz> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1195808782 2569 80.91.229.12 (23 Nov 2007 09:06:22 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 23 Nov 2007 09:06:22 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Pavel SRB Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Nov 23 10:06:29 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IvUUN-0006wt-Sl for geh-help-gnu-emacs@m.gmane.org; Fri, 23 Nov 2007 10:06:20 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IvUU9-0006vy-By for geh-help-gnu-emacs@m.gmane.org; Fri, 23 Nov 2007 04:06:05 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IvUTt-0006ul-Er for help-gnu-emacs@gnu.org; Fri, 23 Nov 2007 04:05:49 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IvUTs-0006uY-Q7 for help-gnu-emacs@gnu.org; Fri, 23 Nov 2007 04:05:49 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IvUTs-0006uV-Lr for help-gnu-emacs@gnu.org; Fri, 23 Nov 2007 04:05:48 -0500 Original-Received: from ch-smtp02.sth.basefarm.net ([80.76.149.213]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IvUTs-0005wE-3G for help-gnu-emacs@gnu.org; Fri, 23 Nov 2007 04:05:48 -0500 Original-Received: from c83-254-148-228.bredband.comhem.se ([83.254.148.228]:61833 helo=[127.0.0.1]) by ch-smtp02.sth.basefarm.net with esmtp (Exim 4.68) (envelope-from ) id 1IvUTp-0006Qx-8Z; Fri, 23 Nov 2007 10:05:46 +0100 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.9) Gecko/20071031 Thunderbird/2.0.0.9 Mnenhy/0.7.5.666 In-Reply-To: <47468652.4070607@heckler-koch.cz> X-Antivirus: avast! (VPS 071122-0, 2007-11-22), Outbound message X-Antivirus-Status: Clean X-Originating-IP: 83.254.148.228 X-Scan-Result: No virus found in message 1IvUTp-0006Qx-8Z. X-Scan-Signature: ch-smtp02.sth.basefarm.net 1IvUTp-0006Qx-8Z 903d1ca3001e05cc79c62400ac091c03 X-detected-kernel: by monty-python.gnu.org: Linux 2.6? (barebone, rare!) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:49428 Archived-At: Pavel SRB wrote: >> Pavel, I have put up a beta version of nXhtml that includes support >> for django and has the bug above fixed. I would be glad if you tested >> and gave some simple feedback. >> >> You can find the beta here >> >> http://ourcomments.org/Emacs/DL/elisp/nxhtml/beta/ >> > dear Lennart > > thank you very much for your help. Before few days i have installed > debian-etch package emacs22 and tested your nxhtml-mode > [nxhtml-1.03-070525.zip]. After successful start nxhtml-mode was present > and i was able to turn off underlining by > nXhtml->Compleition->Displ.Extr.Xhtml validator header. So perfect. > > This morning i also tested your newest nxhtml-mode [ > nxhtml-1.04-071123-02_40_20.zip ]. As before, firstly i had to switch my > django template to xhtml-mode, to have nXhtml menu available, and be was > to switch underlining off. Then i just switch to django-mode, and > itworks perfectly. > > So again thank you very much for your help, i will post any comments as > i will be learning django. > > Have nice weekend > > Pavel The same to you. Thanks for testing.