Search the web
Sign In
New User? Sign Up
emacs-nxml-mode · New XML Mode for Emacs
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 966 - 995 of 1979   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
966
I'm a recent user of nxml-mode and a less recent user of Docbook customization. I do things like: <!ELEMENT rfc EMPTY> <!ATTLIST rfc num CDATA #IMPLIED> ...
Stephane Bortzmeyer
bortzmeyer@...
Send Email
Apr 27, 2005
10:03 am
967
... Yes, this is what I do. For instance, to add an attribute: local.<elementname>.attrib |= attribute <attributename> { ... } -- Vincent Lefèvre...
Vincent Lefevre
vinc17fr
Offline Send Email
Apr 27, 2005
10:27 am
968
... Yes, you can customize a RNG schema; big time! Particularly if it's designed to be customized. Here's my own example: # customization for scholarly...
Bruce D'Arcus
bdarcus@...
Send Email
Apr 27, 2005
11:31 am
969
On Wed, Apr 27, 2005 at 12:27:26PM +0200, Vincent Lefevre <vincent@...> wrote ... OK, many thanks, it works for me. And I prefer to edit RNC than DTD, ...
Stephane Bortzmeyer
bortzmeyer@...
Send Email
Apr 27, 2005
11:55 am
970
Hello! Now, Ihave this xhtml file: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN" ...
gattocarlo2000
Offline Send Email
May 8, 2005
10:10 am
971
I recently installed the 'carbon' version of emacs on my powerbook. (GNU Emacs 22.0.50.1 (powerpc-apple-darwin7.8.0) of 2005-03-27 on iBookG4.local) Naturally...
Michiel Meeuwissen
mihxil
Offline Send Email
May 20, 2005
11:41 am
972
... I don't really understand how it all works, but I have this in my .emacs, and I don't have any encoding issues: ;; fonts and keyboard encoding ...
Bruce D'Arcus
bdarcus@...
Send Email
May 20, 2005
12:47 pm
973
... i've read that a lot of OS X users are very happy with this Carbon Emacs distribution (i haven't made the switch to Mac yet), especially when it comes to...
Vidar Gundersen
ilteph
Offline Send Email
May 20, 2005
2:57 pm
974
... I recommend: http://www.emacswiki.org/cgi-bin/emacs-en/EmacsForMacOS I was using the first one, and tried several others. I ended up with Enhanced Carbon...
Michiel Meeuwissen
mihxil
Offline Send Email
May 20, 2005
5:08 pm
975
Hi All, I'm running emacs under X11 on Mac OS X 10.4.1 ("Tiger"). I have this: (setq auto-mode-alist (cons '("\\.\\(xml\\|xsl\\|rng\\|xhtml\\|tei\\)\\'" ....
John Walsh
jawalsh_sink
Offline Send Email
May 28, 2005
10:59 pm
976
... There were some discussions on the list a few months ago about the problem of nxml-mode not getting loaded by default for certain file extensions. One...
Michael Smith
xmldoc
Offline Send Email
May 29, 2005
12:21 am
977
... Or, with a recent GNU Emacs: (push '("\\`<\\?xml" . nxml-mode) magic-mode-alist) See <URL:http://groups.yahoo.com/group/emacs-nxml-mode/message/893> for...
drkm
darkman_spam
Offline Send Email
May 29, 2005
1:08 am
978
Mike and drkm, Thanks! I used: (push '("\\`<\\?xml" . nxml-mode) magic-mode-alist), and that did the trick! John...
John A. Walsh
jawalsh_sink
Offline Send Email
May 29, 2005
12:16 pm
979
while trying to show the actual non-breaking space character after the &#160; entity, emacs-nxml-mode goes into an eternal loop of \ \ \ \ \ \ characters and...
Vidar Gundersen
ilteph
Offline Send Email
May 29, 2005
4:07 pm
980
... Workaround (disabling the feature): (setq nxml-char-ref-display-glyph-flag nil) Gruesse, Carsten...
Carsten Bormann
knurfel
Offline Send Email
May 29, 2005
9:08 pm
981
Is there any way to either get xincludes to be valid or to ignore them? Please? :) Misty...
mstanleyjones
Offline Send Email
Jun 7, 2005
4:48 pm
982
Test message. -- Dave Pawson XSLT XSL-FO FAQ. http://www.dpawson.co.uk...
Dave Pawson
dpawson2000
Offline Send Email
Jun 8, 2005
9:03 am
983
... Neither. I think it's on the todo list -- Michael Smith http://logopoeia.com/ http://www.oreillynet.com/pub/au/890...
Michael Smith
xmldoc
Offline Send Email
Jun 10, 2005
4:08 am
984
Michael Smith <smith@...> wrote on Fri, 10 Jun 2005 13:08:38 ... Well, you can quite easily "ignore them" by writing a Relax NG customization layer...
Justus Piater
jpiater
Offline Send Email
Jun 10, 2005
7:21 am
985
I am using nxml-mode for all my XHTML editing and I like it very much (though I might miss some features for that particular purpose). Now I want to edit...
Lennart Borgman
nlborgman
Offline Send Email
Jun 12, 2005
7:39 pm
986
... You don't need to make extensive changes to the RELAX NG grammar. You only need to change one line that defines the "start" pattern ... +++...
Michael Smith
xmldoc
Offline Send Email
Jun 13, 2005
1:34 am
987
... Thanks Mike. That nearly did the trick. There seems to be two more issues: - Now nxml is saying "No document element". - And if I add <?xml version="1.0"?>...
Lennart Borgman
nlborgman
Offline Send Email
Jun 13, 2005
1:52 am
988
... That's probably because you don't have a document element :-) Your document is empty at the point where it's saying that, right? I mean you don't have an...
Michael Smith
xmldoc
Offline Send Email
Jun 13, 2005
3:37 am
989
... Another problem is that you can no longer use the standard XHTML DTDs, because only html can have an xmlns attribute. I got really annoyed by that when I...
Vincent Lefevre
vinc17fr
Offline Send Email
Jun 13, 2005
8:43 am
990
... If anyone is interested I decided to write a module for editing a fragment of an XML document. This works by putting the missing parts of the XML document...
Lennart Borgman
nlborgman
Offline Send Email
Jun 14, 2005
6:07 am
991
... Nice idea. Did you consider using the 'intangible overlay property to keep point out of the header and footer, instead of using a post-command hook? Peter...
usenet@...
peterjheslin
Offline Send Email
Jun 14, 2005
9:25 pm
992
... Thanks for your kind teaching ;-) I will of course try that instead....
Lennart Borgman
nlborgman
Offline Send Email
Jun 14, 2005
9:33 pm
993
... I tested 'intangible, but unfortunately I need the hook also. You can not "stick" 'intangible to the beginning and end of the buffer (as far as I can see)....
Lennart Borgman
nlborgman
Offline Send Email
Jun 14, 2005
10:31 pm
994
Bored? Want to meet someone new? Chat with Real Women in YOUR AREA 1-800-335-9396 Only $0.99 min with a major credit card. NO CONNECT FEES! No credit card? No...
nina0oyw
Offline Send Email
Jun 15, 2005
2:09 pm
995
Hey I just wanted to tell you about a great company I found! I applyed for a lower mortgage rate and i only had to fill in a simple form. This month alone I...
nina0oyw
Offline Send Email
Jun 15, 2005
2:10 pm
Messages 966 - 995 of 1979   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help