1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
************************************
How can I test gurlchecker from SVN?
************************************
-----
$ svn checkout svn://labs.libre-entreprise.org/svnroot/gurlchecker/trunk gurlchecker
$ cd gurlchecker/
$ ./autogen.sh --prefix=/usr
$ make
$ su -c "make install"
$ /usr/bin/gurlchecker
-----
*************************************************************************
When I try to compile CVS files I have a error from autogen.sh telling me
that my automake/autoconf/libtool/gtkdoc version if not ok!
*************************************************************************
If you have some problems with "autogen.sh", just delete the
following last lines:
-----
REQUIRED_AUTOMAKE_VERSION=1.8 \
REQUIRED_AUTOCONF_VERSION=2.50 \
REQUIRED_LIBTOOL_VERSION=1.5 \
REQUIRED_GTK_DOC_VERSION=1.1 \
-----
and try again.
************************************************************
How can I build gurlchecker with/without libsqlite3 support?
************************************************************
Just pass "--disable-sqlite3" to ./configure.
****************************************************
How can I build gurlchecker without gtk-doc support?
****************************************************
Just pass "--disable-gtk-doc" to ./configure.
***********************************************************
How can I build gurlchecker with/without libclamav support?
***********************************************************
Just pass "--disable-clamav" to ./configure.
*****************************************************
How can I build gurlchecker without libcroco support?
*****************************************************
Just pass "--disable-croco" to ./configure.
****************************************************
How can I build gurlchecker without libtidy support?
****************************************************
Just pass "--disable-tidy" to ./configure.
************************************************
How can I build gurlchecker without SSL support?
************************************************
Just pass "--disable-gnutls" to ./configure.
*****************************************************************************
Why gurlchecker does not correctly handle the RECTANGLE attribute of IMG tag?
*****************************************************************************
The RECTANGLE attribute is not in HTML 4 specification.
Response from xml@gnome.org (gurlchecker use libxml2 to parse HTML)
where:
----- from Malcolm Tredinnick
Reading the HTML specification (for HTML 4.01), it looks to me like img
elements can take precisely zero rectangle attributes (i.e. it is not a
valid attribute). So anything you get back in the above situation would
be purely a bonus.
-----
----- from Morus Walter
depends what you call HTML.
If you look at the html 4.01 spec you won't find any rectangle attribute
on img at all.
And, since HTML is based on SGML you can never have any element hanging
more than one instance of any attribute.
On the other hand, HTML as it is found on the web often is just tag soup
and I wouldn't be surprised if some browsers recognice such constructs
or some browser vendors suggested such syntax in the past.
OTOH I didn't find a rectangle attribute for any element in the rather
long list of html dtds on my system. The only occurences of rectangle
is found in ie-2.0.dtd and ie-3.0.dtd where it is used as an attribute
value.
You cannot expect libxml2 to parse that.
-----
*************************************************************
I have installed libxml2 I still have errors at compile time!
*************************************************************
You must have a libxml2 >= 2.6
|