OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [Elist Home]


Subject: Re: DOCBOOK-APPS: psgml: how to set sgml-validate-command?


On 2002-04-05 08:41 (Friday), Gunnar Sigurdsson wrote:
> Looking at the psgml source code reveals:
> 
>     (setq sgml-validate-command "nsgmls -wxml -s %s %s")
> 
> all I want to do is to change the command to:
> 
>     nsgmls -wxml -wno-idref -s %s %s
> 
> I have tried the obvious, putting this in the .emacs file:
> 
>     (setq sgml-validate-command "nsgmls -wxml -wno-idref -s %s %s")
> 
> and doing the corresponding thing inside individual docbook files
> with no luck. The problem is that the above change has no effect
> the value of the remains the same ("nsgmls -wxml -s %s %s"). 

Here is what I advise you to do to change psgml variables :

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
(defun custom-xml-behavior() "Sets custom behavior for sgml mode"
  (interactive)
  (setq sgml-indent-data t)
  (setq
   sgml-validate-command "nsgmls -wxml -wno-idref -s %s %s"
   ))

(add-hook 'xml-mode-hook 'custom-xml-behavior)
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

I didn't find any other way to set psgml variables than creating a function.
Listed below is the function that I use :

(defun custom-sgml-behavior() "Sets custom behavior for sgml mode"
  (interactive)
  (setq sgml-indent-data t)
  (setq
   sgml-always-quote-attributes t
   sgml-auto-insert-required-elements t
   sgml-auto-activate-dtd t
   sgml-indent-data t
   sgml-indent-step             2
   sgml-minimize-attributes     "max"
   ;;sgml-minimize-attributes     nil
   sgml-omittag                 t
   sgml-shortag                 t))

(add-hook 'sgml-mode-hook 'custom-sgml-behavior)


Let me know if it helps.
And of course if someone knows a better way to do it, let it be known.


Cheers,

-- 
Marc-Aurčle DARCHE  <http://www.cynode.org>
AFUL <http://www.aful.org>
Association Francophone des Utilisateurs de Linux/Logiciels Libres
French speaking Linux and Libre Software Users' Association


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [Elist Home]


Powered by eList eXpress LLC