emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#17002: closed (24.3.50; nextstep/templates/Info.pl


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#17002: closed (24.3.50; nextstep/templates/Info.plist.in is not a valid XML document)
Date: Thu, 13 Mar 2014 00:45:02 +0000

Your message dated Wed, 12 Mar 2014 20:44:09 -0400
with message-id <address@hidden>
and subject line Re: bug#17002: 24.3.50; nextstep/templates/Info.plist.in is 
not a valid XML document
has caused the debbugs.gnu.org bug report #17002,
regarding 24.3.50; nextstep/templates/Info.plist.in is not a valid XML document
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
17002: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17002
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: 24.3.50; nextstep/templates/Info.plist.in is not a valid XML document Date: Wed, 12 Mar 2014 14:18:36 -0700
Hello,

The Info.plist file for Mac OS X is not a valid XML document. The file
is in the source code here:

  nextstep/templates/Info.plist.in

Running xmllint on it gives the following error:

  $ xmllint -valid -noout nextstep/templates/Info.plist.in
  nextstep/templates/Info.plist.in:20: parser error : XML declaration allowed 
only at the start of the document
  <?xml version="1.0" encoding="UTF-8"?>
       ^

Luckily, this is an easy fix:

=== modified file 'nextstep/templates/Info.plist.in'
--- nextstep/templates/Info.plist.in    2014-01-01 07:43:34 +0000
+++ nextstep/templates/Info.plist.in    2014-03-12 21:05:16 +0000
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <!--
 Copyright (C) 2008-2014 Free Software Foundation, Inc.
 
@@ -17,7 +18,6 @@ You should have received a copy of the G
 along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
 -->
 
-<?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" 
"http://www.apple.com/DTDs/PropertyList-1.0.dtd";>
 <plist version="1.0">
 <dict>

After this change xmllint is happy:

  $ xmllint -valid -noout nextstep/templates/Info.plist.in
  $

-David



--- End Message ---
--- Begin Message --- Subject: Re: bug#17002: 24.3.50; nextstep/templates/Info.plist.in is not a valid XML document Date: Wed, 12 Mar 2014 20:44:09 -0400 User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)
Version: 24.4

Thanks; fixed.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]