php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #45892 $dom_xml->relaxNGValidate()
Submitted: 2008-08-22 10:09 UTC Modified: 2008-08-25 13:25 UTC
From: mangal dot varshney at gmail dot com Assigned:
Status: Not a bug Package: DOM XML related
PHP Version: 5.2.6 OS: Windows/Linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
32 + 12 = ?
Subscribe to this entry?

 
 [2008-08-22 10:09 UTC] mangal dot varshney at gmail dot com
Description:
------------
I am trying to validate a DocBook having namest and nameend attribute in entry element with RelexNg (http://docbook.org/xml/5.0/rng/docbook.rng). I am using following php code for validation. It is displaying errors in xml file but xml file (DocBook) is valid. I have checked this XMl file on some tool whixh says it valid like oXygen.
 
$dom_xml = new DomDocument;
$dom_xml->load("textExample.xml");
                     
if ($dom_xml->relaxNGValidate("docbook.rng") )
{
               echo "Good\n";
}
else
{
    echo $php_errormsg . "\n";
}

I am attaching sample DocBook in the mail.

Reproduce code:
---------------
XML File (DocBook) file:

<?xml version="1.0" encoding="UTF-8"?>
<book xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0">
    <info>
        <title>Book Template Title</title>
        <author>
            <orgname>Organization Name</orgname>
            <address>
                <city>City</city>
                <street>Street</street>
                <postcode>000000</postcode>
                <country>Country</country>
            </address>
            <email>user@example.com</email>
        </author>
    </info>
    <part>
        <title>First Part</title>
        <subtitle>Subtitle of First Part</subtitle>
        <chapter>
            <title>Chapter Title</title>
            <subtitle>Subtitle of Chapter</subtitle>
             <table frame="none">
                    <title>Table1</title>
                    <tgroup cols="2">
                        <colspec colname="c1" colnum="1"/>
                        <colspec colname="c2" colnum="2"/>
                        <thead>
                            <row>
                                <entry namest="c1" nameend="c2">Header 1</entry>
                            </row>
                        </thead>
                        <tbody>
                            <row>
                                <entry/>
                                <entry/>
                            </row>
                            <row>
                                <entry/>
                                <entry/>
                            </row>
                            <row>
                                <entry/>
                                <entry/>
                            </row>
                        </tbody>
                    </tgroup>
               </table>
            <sect1>
                <title>Section1 Title</title>
                <subtitle>Subtitle of Section 1</subtitle>
                <para>Text</para>
            </sect1>
        </chapter>
    </part>
</book>

Expected result:
----------------
It should be Good.

Actual result:
--------------
Displaying Errors.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2008-08-22 15:10 UTC] rrichards@php.net
Try a newer version of libxml2. It works fine when I test it
 [2008-08-22 16:03 UTC] mangal dot varshney at gmail dot com
I am using libxml2.6.32. can you suggest me that on which libxml version you have checked ?

libXML support 	active
libXML Version 	2.6.32
libXML streams 	enabled
 [2008-08-22 16:40 UTC] rrichards@php.net
Please add a link to your phpinfo as well show the errors you are 
getting.
It is testing fine for me using various libxml2 versions (.30 up to 
current CVS) as well as different OS's
 [2008-08-22 16:58 UTC] mangal dot varshney at gmail dot com
PHP Info

http://www.epubnow.com/ePubNowWeb/phpinfo.php

Getting Following Error:

Element book has extra content: info
 [2008-08-25 13:25 UTC] rrichards@php.net
Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.



 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Apr 24 02:01:30 2024 UTC