[libvirt] [libvirt-php] Build failure with v0.4.7 due to malformatted html

Stefan Kuhn stefan.kuhn at foss-group.ch
Thu Jan 31 13:31:44 UTC 2013


I had a problem with the file "docs/distros.html.in" in
libvirt-php-0.4.7 - The file is not in the repository!

The error is:
###
distros.html.tmp:96: element table: validity error : No declaration for
attribute align of element table
        <table align="center" width="75%">
                                         ^
make[2]: *** [distros.html] Error 1
###

This patch would fix it:
###
--- ./docs/distros.html.in
+++ ./docs/distros.html.in
@@ -4,8 +4,8 @@
     <p>
       There are several distributions that supports the libvirt-php in
it's repositories. You can see the list in here:<br />
 
-      <table align="center" width="75%">
-        <tr>
+      <table width="75%">
+        <tr align="center">
           <th>Distribution</th>
           <th>Installer command</th>
           <th>Link</th>
###

Thanks - Regards
Stefan Kuhn


On Tue, 2013-01-29 at 15:24 +0100, Michal Novotny wrote:
> Thanks for the patches! They's working fine and they're looking good so
> I've applied it, also, I've added your name & e-mail to the AUTHORS file.
> 
> Thanks again!
> Michal
> 
> On 01/29/2013 12:47 PM, stefan.kuhn at foss-group.ch wrote:
> > *** Please add new function libvirt_domain_migrate_to_uri2 for libirts virDomainMigrateToURI2(). ***
> >
> > Stefan Kuhn (2):
> >   Implement libvirt_domain_migrate_to_uri2 for virDomainMigrateToURI2
> >   Document new funct. libvirt_domain_migrate_to_uri2
> >
> >  .../functions/libvirt-domain-get-job-info.xml      |   1 +
> >  .../functions/libvirt-domain-migrate-to-uri.xml    |   5 +-
> >  .../functions/libvirt-domain-migrate-to-uri2.xml   | 134 +++++++++++++++++++++
> >  .../libvirt/functions/libvirt-domain-migrate.xml   |   3 +-
> >  doc/source/libvirt/versions.xml                    |   1 +
> >  src/libvirt-php.c                                  |  53 ++++++++
> >  src/libvirt-php.h                                  |   1 +
> >  7 files changed, 195 insertions(+), 3 deletions(-)
> >  create mode 100644 doc/source/libvirt/functions/libvirt-domain-migrate-to-uri2.xml
> >
> 




More information about the libvir-list mailing list