Bug #3208
Mis à jour par Serge Heiden il y a environ 3 ans
HTML pages marked as transitional are not displayed and the internal browser asks ask to save it.
<pre>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
</pre>
h3. Solution 1
TXM 0.8.2 import modules don't use the Transitional DTD but XSL pager step can use it or an older version of TXM may produce the corpus without it.
Document the usage of
<pre>
<!DOCTYPE html>
</pre>
h3. Solution 2
1- read the HTML page content first
2- then provide the web page HTML content to the internal browser (b.setContent(...) instead of b.setURL())
<pre>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
</pre>
h3. Solution 1
TXM 0.8.2 import modules don't use the Transitional DTD but XSL pager step can use it or an older version of TXM may produce the corpus without it.
Document the usage of
<pre>
<!DOCTYPE html>
</pre>
h3. Solution 2
1- read the HTML page content first
2- then provide the web page HTML content to the internal browser (b.setContent(...) instead of b.setURL())