has anyone produced a schema translation fileset for <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> I'd be...
It is a FREE 3-4 page full-color weekly newsletter that talks about current trends, opportunities, and challenges in the global IT industry. Articles are...
Hi. I'd like to use nxml to edit RSS 1.0 (RDF Site Summary 1.0) with nxml. Whenever I open such a document, the rdf schema will be loaded. Also there is...
... There is no RSS schema in the nXML distribution. I don't know if nXML can use multiple schemas at the same time, via multiple namespace prefixes (I think...
... Thanks. That's also the conclusion I've reached although I didn't try and check in the code. I found some relax-ng schema for RSS which seem to fit...
... If you write a grammar with multiple namespaces, it'll work just fine. And it's easy to import grammars so if you want RSS+x+y+z it shouldn't be too hard...
... Of course it would not be such a hassle to add what's missing from the grammar. But it would be so great to have some way (like trang) to automatically ...
Norman Walsh writes: Hi ... So if I want to use X+Y+Z, I have to write a specific grammar explicitly importing all these three sub-grammars, is it right? And...
... There are folks actively looking into this problem. I expect NVDL will be the way to go (see dsdl.org), but I don't have any processors that understand it...
Hiya, Just wondering if it is possible to edit RNC (Compact format) files using nxml mode. Thanks, -- Sean LeBlanc:seanleblanc@... I used to think that...
... No, because they aren't XML. But there is an rnc-mode out there somewhere. My copy doesn't have a URI, though it does have an author's address. This looks...
... For anybody running Debian, there's an "rnc-mode" package (maintained by Chris Lawrence) in stable. There's also an rnc.vim syntax file for Vim that...
Hi I just had the following message from nXML: Internal error in rng-validate-mode triggered at buffer position 148. Invalid regexp: "Range striding over...
... Here too. But I didn't explain the whole thing, sorry. After pasting the text above in a fresh buffer, you have to be in validation mode ('C-c C-v' if...
Hi, I have a schema locating file schemas.xml. I am getting the following error when that file is being loaded. 'File mode specification error: (error "XML ...
... No, comments should not be ignored, but processed as comments. It is an error to have a comment before the XML declaration: the XML declaration must always...
... We have our own xml document format. And we use Perl CPAN's XML::Parser module with a wrapper around it to parse files. That module parses even if we have...
Hi all, Is there a way to have our own custom key combinations for nxml-mode. I want to have TAB for completion instead of C-<RET>. Is there any hook which...
... This should help (in your ~/.emacs.el): (add-hook 'nxml-mode-hook (lambda () (interactive) (local-set-key (kbd "<TAB>") 'nxml-complete))) You can see (info...
... Then you can't call it XML, since it's no longer XML. ... If the comments are followed by an XML declaration, then this module is buggy. For instance,...
... I've not tried, but the standard way to do is to add a hook and change the bindings: (defun my-nxml-mode-keys () (local-set-key [tab] 'nxml-complete) ...
... Yes. Comments or even white spaces. If you have an XML declaration (BTW it's NOT a processing instruction), the five first characters of the document...
... There's no need for 'interactive': (add-hook 'nxml-mode-hook (lambda () (local-set-key (kbd "<TAB>") 'nxml-complete))) Sorry for the misinformation, --drkm...