Questions
| Newsgroups | gmane.comp.web.html-tidy.user |
|---|---|
| Message-ID | <[email protected]> |
Hi,
I am currently working at the OECD in Paris and for my current project, I
need to convert HTML files to XHTML files.
I have found on the Internet that "HTML Tidy" is a good tool to do it. It was
originally written by Dave Raggett of the World Wide Web Consortium (W3C).
The software is now maintained by a group of volunteers working as an Open
Source Community at Source Forge.
So I have downloaded the EXE Version from 24 jul 2007:
http://www.paehl.com/open_source/?HTML_Tidy_for_Windows
I have created a configuration file.
Command line: tidy -config config.txt index_HTML
The log file "err.txt" only indicates warnings.
But using http://validator.w3.org/ tool, I have discovered some errors like:
1°) required attribute "alt" not specified for the "img" element
Q1: Why "HTML Tidy" do not create automatically required attributes ?
2°) required attribute "action" not specified for the "form" element
HTML:
<form name=switchit><input type=hidden
value=0 name=switchedselector></form>
XHTML:
<form name="switchit" id="switchit"><input
type="hidden" value="0" name="switchedselector" /></form>
Q2: Why does HTML Tidy create the attribute id="switchit" ?
3°) ID X already defined
HTML:
<br />
<br><br></p><p></p>
</span></td>
</tr>
XHTML:
<br />
<br />
<br />
<br />
<br /></span>
<p><span id="06" style="display:
none;"></span></p>
</td>
</tr>
Q3: Why does HTML Tidy create a span element with an id (06) which
already exists ?
4) value of attribute "id" invalid: "0" cannot start a name (For example, id
and name attributes must begin with a letter, not a digit)
HTML
<img src="plusminusimages/01plus.gif"
border="0" id="01_image" onclick="javascript:changePlusMinus('01');"
style="cursor:pointer;cursor:hand" name="01_image" />
...
<span id="01" style="display: none
....
Q4: Do you think it is more a warning than an error ? (It does not
seem to provoke any problem when browsing the XHTML file ...)
5°) there is no attribute "width" for the "div" element
HTML:
<div id="showhideText" width="100"
class="normal">Show all indicators</div>
XHTML:
<div id="showhideText" width="100"
class="normal">Show all indicators</div>
Q5: Why does "HTML Tidy" keep the "width" attribute ? Why not delete
it ?
Afterwards I have checked with Internet Explorer browser the difference
between the HTML and the XHTML
I do not understand these following transformations done by "HTML Tidy":
I) - A link does not work anymore.
HTML:
<a
href="javascript:openAll('01','02','03','04','05','06','07','08','09','10','1
1','12')" class="Text"><div id="showhideText" width="100" class="normal">Show
all indicators</div></a>
XHTML:
<a
href="javascript:openAll('01','02','03','04','05','06','07','08','09','10','1
1','12')" class="Text"></a>
<div id="showhideText" width="100"
class="normal">Show all indicators</div>
Q6: Why does "HTML Tidy" change the imbrication of tags ?
II) - More line breaks.
HTML:
• <a class='Text'
href='01-02-02.htm'>Elderly population by region</a><br />
<br><br></p>
</span></td>
</tr>
XHTML:
• <a class='Text'
href='01-02-02.htm'>Elderly population by
region</a><br />
<br />
<br />
<br />
<br /></span></td>
</tr>
Q7: Why does "HTML Tidy" generate additional <br /> elements ?
See attached HTML, XHTML, log and configuration files:
<<index_HTML.htm>> <<index_XHTML.htm>>
<<err.txt>> <<config.txt>>
Thank you a lot for your help. May be some parameters have to be added in the
configuration file ....
Best regards,
Charles VILLEPREUX
Technical Assistant
R&D
OECD, PAC
Tel: +33 (0)1 49 10 43 66
[email protected]
HTML Tidy is a tool that was originally written by Dave Raggett of the World
Wide Web Consortium (W3C). It is designed to fix mistakes in HTML, tidy up
the layout (hence the name), assist with web accessibility, convert HTML to
XHTML and many other things.
The software is now maintained by a group of volunteers working as an Open
Source Community at Source Forge and this is the place to go for more
information.
HTML Tidy Documentation:
http://tidy.sourceforge.net/
index_HTML.htm
(text/html, 15.6 KB)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html id="canvas">
<head>
<meta name="Pagetype" content="TOC"/>
<title>SourceOECD: Factbook 2007 - Table of Contents</title>
<LINK href="css/standard.css" type=text/css rel=stylesheet></LINK>
<LINK href="css/webook.css" type=text/css rel=stylesheet></LINK>
</head>
<body>
<!-- MAIN TABLE STARTS -->
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td colspan="7" id="WBID01" class="MainHeading">OECD Factbook 2007 - Economic, Environmental and Social Statistics</td>
</tr>
<tr><td width="15"><img src="icons/white.gif" border="0" width="15" height="5"></td></tr>
<tr>
<td width="15"><img src="icons/white.gif" border="0" width="15" height="15"></td>
<td width="15"><img src="icons/back-0.gif" border="0" width="15" height="15"></td>
<td colspan="2" id="WBID05" class="SubHeading">Table of Contents</td>
</tr>
<tr>
<td width="15"><img src="icons/white.gif" border="0" width="15" height="15"></td>
<td width="15"><img src="icons/white.gif" border="0" width="15" height="15"></td>
<td width="100%" valign="top" colspan="2"><br>
<script>
function openAll()
{
var ArraySections = openAll.arguments;
var ArraySectionslength = ArraySections.length;
var switched = document.switchit.switchedselector.value;
if (switched == "0")
{
for (var i = 0; i < ArraySectionslength; i++)
{
//alert("Section: " + i + " = " + ArraySections[i]);
number=document.getElementById(ArraySections[i]).style;
number.display="block";
//swap the image for -
imageChange = ArraySections[i]+"_image";
document.getElementById(imageChange).src = "plusminusimages/"+ArraySections[i]+"minus.gif";
}
document.switchit.switchedselector.value=1;
x = document.getElementById('showhideText');
x.innerHTML = 'Hide all indicators';
}
else
{
for (var i = 0; i < ArraySectionslength; i++)
{
//alert("Section: " + i + " = " + ArraySections[i]);
number=document.getElementById(ArraySections[i]).style;
number.display="none";
//swap the image for +
imageChange = ArraySections[i]+"_image";
document.getElementById(imageChange).src = "plusminusimages/"+ArraySections[i]+"plus.gif";
}
document.switchit.switchedselector.value=0;
x = document.getElementById('showhideText');
x.innerHTML = 'Show all indicators';
}
}
function changePlusMinus(sectionname)
{
var elementID = sectionname+"_image"; // create ID string from the image tag
var currentImage = document.getElementById(elementID).src; // obtain current image URL
var pos = currentImage.indexOf("plus.");
if (pos>=0)
{
number=document.getElementById(sectionname).style;
number.display="block";
document.getElementById(elementID).src = "plusminusimages/"+sectionname+"minus.gif";
}
else
{
number=document.getElementById(sectionname).style;
number.display="none";
document.getElementById(elementID).src = "plusminusimages/"+sectionname+"plus.gif";
}
}
</script>
<!-- start main page -->
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan=2>
<a href="javascript:openAll('01','02','03','04','05','06','07','08','09','10','11','12')" class="Text"><div id="showhideText" width="100" class="normal">Show all indicators</div></a>
<form name=switchit><input type=hidden value=0 name=switchedselector></form>
<br /></td></tr>
<tr valign=top><td>
<!-- SUB-TABLE COL 1 -->
<table width="275" border="0" cellpadding="0" cellspacing="0">
<tr><td height='33' colspan='2' valign='top'><img src="plusminusimages/01plus.gif" border="0" id="01_image" onclick="javascript:changePlusMinus('01');" style="cursor:pointer;cursor:hand">
<tr>
<td width='31'> </td><td width='244' valign='top' class='DHMenuList'><span id="01" style="display: none;">
TOTAL POPULATION<br />
• <a class='Text' href='01-01-01.htm'>Evolution of the population</a><br />
• <a class='Text' href='01-01-02.htm'>Regional population</a><br />
ELDERLY POPULATION<br />
• <a class='Text' href='01-02-01.htm'>Ageing societies</a><br />
• <a class='Text' href='01-02-02.htm'>Elderly population by region</a><br />
<br><br></p>
</span></td>
</tr>
<tr><td height='33' colspan='2' valign='top'><img src="plusminusimages/02plus.gif" border="0" id="02_image" onclick="javascript:changePlusMinus('02');" style="cursor:pointer;cursor:hand">
<tr>
<td width='31'> </td><td width='244' valign='top' class='DHMenuList'><span id="02" style="display: none;">
GROSS DOMESTIC PRODUCT (GDP)<br />
• <a class='Text' href='02-01-01.htm'>Size of GDP</a><br />
• <a class='Text' href='02-01-02.htm'>National income per capita</a><br />
• <a class='Text' href='02-01-03.htm'>Regional GDP</a><br />
ECONOMIC GROWTH<br />
• <a class='Text' href='02-02-01.htm'>Evolution of GDP</a><br />
• <a class='Text' href='02-02-02.htm'>Household saving</a><br />
• <a class='Text' href='02-02-03.htm'>Investment rates</a><br />
• <a class='Text' href='02-02-04.htm'>Inflation</a><br />
• <a class='Text' href='02-02-05.htm'>Steel production</a><br />
PRODUCTIVITY<br />
• <a class='Text' href='02-03-01.htm'>Labour productivity</a><br />
• <a class='Text' href='02-03-02.htm'>Multi-factor productivity</a><br />
ECONOMIC STRUCTURE<br />
• <a class='Text' href='02-04-01.htm'>Value added by activity</a><br />
• <a class='Text' href='02-04-02.htm'>Evolution of value added by activity</a><br />
• <a class='Text' href='02-04-03.htm'>Small and medium-sized enterprises</a><br />
<br><br></p>
</span></td>
</tr>
<tr><td height='33' colspan='2' valign='top'><img src="plusminusimages/03plus.gif" border="0" id="03_image" onclick="javascript:changePlusMinus('03');" style="cursor:pointer;cursor:hand">
<tr>
<td width='31'> </td><td width='244' valign='top' class='DHMenuList'><span id="03" style="display: none;">
TRADE<br />
• <a class='Text' href='03-01-01.htm'>Share of trade in GDP</a><br />
• <a class='Text' href='03-01-02.htm'>Trade in goods</a><br />
• <a class='Text' href='03-01-03.htm'>Trade in services</a><br />
• <a class='Text' href='03-01-04.htm'>Trading partners</a><br />
• <a class='Text' href='03-01-05.htm'>Balance of payments</a><br />
FOREIGN DIRECT INVESTMENT (FDI)<br />
• <a class='Text' href='03-02-01.htm'>FDI flows and stocks</a><br />
• <a class='Text' href='03-02-02.htm'>Activities of multinationals</a><br />
<br><br></p>
</span></td>
</tr>
<tr><td height='33' colspan='2' valign='top'><img src="plusminusimages/04plus.gif" border="0" id="04_image" onclick="javascript:changePlusMinus('04');" style="cursor:pointer;cursor:hand">
<tr>
<td width='31'> </td><td width='244' valign='top' class='DHMenuList'><span id="04" style="display: none;">
PRICES AND INTEREST RATES<br />
• <a class='Text' href='04-01-01.htm'>Consumer price indices (CPI)</a><br />
• <a class='Text' href='04-01-02.htm'>Producer price indices (PPI)</a><br />
• <a class='Text' href='04-01-03.htm'>Long-term interest rates</a><br />
PURCHASING POWER AND EXCHANGE RATES<br />
• <a class='Text' href='04-02-01.htm'>Rates of conversion</a><br />
• <a class='Text' href='04-02-02.htm'>Effective exchange rates</a><br />
<br><br></p>
</span></td>
</tr>
<tr><td height='33' colspan='2' valign='top'><img src="plusminusimages/05plus.gif" border="0" id="05_image" onclick="javascript:changePlusMinus('05');" style="cursor:pointer;cursor:hand">
<tr>
<td width='31'> </td><td width='244' valign='top' class='DHMenuList'><span id="05" style="display: none;">
ENERGY SUPPLY<br />
• <a class='Text' href='05-01-01.htm'>Primary Energy supply</a><br />
• <a class='Text' href='05-01-02.htm'>Energy supply and economic growth</a><br />
• <a class='Text' href='05-01-03.htm'>Energy supply per capita</a><br />
• <a class='Text' href='05-01-04.htm'>Electricity generation</a><br />
• <a class='Text' href='05-01-05.htm'>Renewable energy</a><br />
ENERGY PRODUCTION AND PRICES<br />
• <a class='Text' href='05-02-01.htm'>Energy production</a><br />
• <a class='Text' href='05-02-02.htm'>Oil production</a><br />
• <a class='Text' href='05-02-03.htm'>Oil prices</a><br />
<br><br></p>
</span></td>
</tr>
<tr><td height='33' colspan='2' valign='top'><img src="plusminusimages/06plus.gif" border="0" id="06_image" onclick="javascript:changePlusMinus('06');" style="cursor:pointer;cursor:hand">
<tr>
<td width='31'> </td><td width='244' valign='top' class='DHMenuList'><span id="06" style="display: none;">
EMPLOYMENT<br />
• <a class='Text' href='06-01-01.htm'>Employment rates by gender</a><br />
• <a class='Text' href='06-01-02.htm'>Employment rates by age group</a><br />
• <a class='Text' href='06-01-03.htm'>Part-time employment</a><br />
• <a class='Text' href='06-01-04.htm'>Self-employment</a><br />
• <a class='Text' href='06-01-05.htm'>Hours worked</a><br />
UNEMPLOYMENT<br />
• <a class='Text' href='06-02-01.htm'>Unemployment rates</a><br />
• <a class='Text' href='06-02-02.htm'>Long-term unemployment</a><br />
• <a class='Text' href='06-02-03.htm'>Regional unemployment</a><br />
<br><br></p><p></p>
</span></td>
</tr>
<!-- Change MAIN column, new table -->
</table>
<td><img src="icons/white.gif" border="0" width="15" height="5"></td>
<td>
<!-- SUB-TABLE COL 2 -->
<table width="275" border="0" cellpadding="0" cellspacing="0">
<tr><td height='33' colspan='2' valign='top'><img src="plusminusimages/07plus.gif" border="0" id="07_image" onclick="javascript:changePlusMinus('07');" style="cursor:pointer;cursor:hand">
<tr>
<td width='31'> </td><td width='244' valign='top' class='DHMenuList'><span id="07" style="display: none;">
RESEARCH AND DEVELOPMENT (R&D)<br />
• <a class='Text' href='07-01-01.htm'>Expenditure on R&D</a><br />
• <a class='Text' href='07-01-02.htm'>Researchers</a><br />
• <a class='Text' href='07-01-03.htm'>Patents</a><br />
ICT<br />
• <a class='Text' href='07-02-01.htm'>Size of the ICT sector</a><br />
• <a class='Text' href='07-02-02.htm'>Investment in ICT</a><br />
• <a class='Text' href='07-02-03.htm'>Computer and internet access by households</a><br />
COMMUNICATIONS<br />
• <a class='Text' href='07-03-01.htm'>Exports of information and communications equipment</a><br />
• <a class='Text' href='07-03-02.htm'>Telephone access</a><br />
<br><br></p>
</span></td>
</tr>
<tr><td height='33' colspan='2' valign='top'><img src="plusminusimages/08plus.gif" border="0" id="08_image" onclick="javascript:changePlusMinus('08');" style="cursor:pointer;cursor:hand">
<tr>
<td width='31'> </td><td width='244' valign='top' class='DHMenuList'><span id="08" style="display: none;">
WATER AND NATURAL RESOURCES<br />
• <a class='Text' href='08-01-01.htm'>Water consumption</a><br />
• <a class='Text' href='08-01-02.htm'>Fisheries</a><br />
EMISSIONS AND WASTE<br />
• <a class='Text' href='08-02-01.htm'>Emissions of carbon dioxide (CO<sub>2</sub>)</a><br />
• <a class='Text' href='08-02-02.htm'>Municipal waste</a><br />
<br><br></p>
</span></td>
</tr>
<tr><td height='33' colspan='2' valign='top'><img src="plusminusimages/09plus.gif" border="0" id="09_image" onclick="javascript:changePlusMinus('09');" style="cursor:pointer;cursor:hand">
<tr>
<td width='31'> </td><td width='244' valign='top' class='DHMenuList'><span id="09" style="display: none;">
OUTCOMES<br />
• <a class='Text' href='09-01-01.htm'>International student assessment</a><br />
• <a class='Text' href='09-01-02.htm'>Tertiary attainment</a><br />
EXPENDITURE ON EDUCATION<br />
• <a class='Text' href='09-02-01.htm'>Expenditure on tertiary education</a><br />
• <a class='Text' href='09-02-02.htm'>Public and private education expenditure</a><br />
<br><br></p>
</span></td>
</tr>
<tr><td height='33' colspan='2' valign='top'><img src="plusminusimages/10plus.gif" border="0" id="10_image" onclick="javascript:changePlusMinus('10');" style="cursor:pointer;cursor:hand">
<tr>
<td width='31'> </td><td width='244' valign='top' class='DHMenuList'><span id="10" style="display: none;">
GOVERNMENT DEFICITS AND DEBT<br />
• <a class='Text' href='10-01-01.htm'>Government deficits</a><br />
• <a class='Text' href='10-01-02.htm'>Government debt</a><br />
PUBLIC EXPENDITURE AND AID<br />
• <a class='Text' href='10-02-01.htm'>Social expenditure</a><br />
• <a class='Text' href='10-02-02.htm'>Law, order and defence expenditure</a><br />
• <a class='Text' href='10-02-03.htm'>Agricultural support estimates</a><br />
• <a class='Text' href='10-02-04.htm'>Government support for fishing</a><br />
• <a class='Text' href='10-02-05.htm'>Official development assistance</a><br />
TAXES<br />
• <a class='Text' href='10-03-01.htm'>Total tax revenue</a><br />
• <a class='Text' href='10-03-02.htm'>Taxes on the average worker</a><br />
<br><br></p>
</span></td>
</tr>
<tr><td height='33' colspan='2' valign='top'><img src="plusminusimages/11plus.gif" border="0" id="11_image" onclick="javascript:changePlusMinus('11');" style="cursor:pointer;cursor:hand">
<tr>
<td width='31'> </td><td width='244' valign='top' class='DHMenuList'><span id="11" style="display: none;">
HEALTH<br />
• <a class='Text' href='11-01-01.htm'>Life expectancy</a><br />
• <a class='Text' href='11-01-02.htm'>Infant mortality</a><br />
• <a class='Text' href='11-01-03.htm'>Obesity</a><br />
• <a class='Text' href='11-01-04.htm'>Public and private health expenditure</a><br />
LEISURE<br />
• <a class='Text' href='11-02-01.htm'>Tourism: hotel nights</a><br />
• <a class='Text' href='11-02-02.htm'>Recreation and culture</a><br />
SOCIETY<br />
• <a class='Text' href='11-03-01.htm'>Youth inactivity</a><br />
• <a class='Text' href='11-03-02.htm'>Income inequality</a><br />
• <a class='Text' href='11-03-03.htm'>Prison population</a><br />
TRANSPORT<br />
• <a class='Text' href='11-04-01.htm'>Road network</a><br />
• <a class='Text' href='11-04-02.htm'>Road motor vehicles and road fatalities</a><br />
<br><br></p>
</span></td>
</tr>
<tr><td height='33' colspan='2' valign='top'><img src="plusminusimages/12plus.gif" border="0" id="12_image" onclick="javascript:changePlusMinus('12');" style="cursor:pointer;cursor:hand">
<tr>
<td width='31'> </td><td width='244' valign='top' class='DHMenuList'><span id="12" style="display: none;">
• <a class='Text' href='12-01-00.htm'>INTRODUCTION</a><br />
FLOWS OF IMMIGRANTS<br />
• <a class='Text' href='12-01-01.htm'>Trends in Inflows of foreign nationals</a><br />
• <a class='Text' href='12-01-02.htm'>Immigration by category of entry</a><br />
• <a class='Text' href='12-01-03.htm'>Inflows of asylum seekers</a><br />
• <a class='Text' href='12-01-04.htm'>Trends in migration</a><br />
STOCKS OF IMMIGRANTS<br />
• <a class='Text' href='12-02-01.htm'>Immigrant population</a><br />
• <a class='Text' href='12-02-02.htm'>Immigrant population by region of origin and gender</a><br />
EDUCATION<br />
• <a class='Text' href='12-03-01.htm'>Educational outcomes for children of immigrants</a><br />
• <a class='Text' href='12-03-02.htm'>Education attainment of immigrants</a><br />
• <a class='Text' href='12-03-03.htm'>Migration of the highly educated</a><br />
LABOUR FORCE AND REMITTANCES<br />
• <a class='Text' href='12-04-01.htm'>Employment rates of the foreign- and the native-born</a><br />
• <a class='Text' href='12-04-02.htm'>Unemployment rates of the foreign- and the native-born</a><br />
• <a class='Text' href='12-04-03.htm'>Remittances</a><br />
</table>
</td>
</tr>
</table>
</body>
</html>
index_XHTML.htm
(text/html, 17.3 KB)
<?xml version="1.0" encoding="us-ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html id="canvas" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="generator" content=
"HTML Tidy for Windows (vers 24 July 2007), see www.w3.org" />
<meta name="Pagetype" content="TOC" />
<title>SourceOECD: Factbook 2007 - Table of Contents</title>
<link href="css/standard.css" type="text/css" rel="stylesheet" />
<link href="css/webook.css" type="text/css" rel="stylesheet" />
</head>
<body>
<!-- MAIN TABLE STARTS -->
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td colspan="7" id="WBID01" class="MainHeading">OECD Factbook 2007
- Economic, Environmental and Social Statistics</td>
</tr>
<tr>
<td width="15"><img src="icons/white.gif" border="0" width="15"
height="5" /></td>
</tr>
<tr>
<td width="15"><img src="icons/white.gif" border="0" width="15"
height="15" /></td>
<td width="15"><img src="icons/back-0.gif" border="0" width="15"
height="15" /></td>
<td colspan="2" id="WBID05" class="SubHeading">Table of
Contents</td>
</tr>
<tr>
<td width="15"><img src="icons/white.gif" border="0" width="15"
height="15" /></td>
<td width="15"><img src="icons/white.gif" border="0" width="15"
height="15" /></td>
<td width="100%" valign="top" colspan="2"><br />
<script type="text/javascript">
//<![CDATA[
function openAll()
{
var ArraySections = openAll.arguments;
var ArraySectionslength = ArraySections.length;
var switched = document.switchit.switchedselector.value;
if (switched == "0")
{
for (var i = 0; i < ArraySectionslength; i++)
{
//alert("Section: " + i + " = " + ArraySections[i]);
number=document.getElementById(ArraySections[i]).style;
number.display="block";
//swap the image for -
imageChange = ArraySections[i]+"_image";
document.getElementById(imageChange).src = "plusminusimages/"+ArraySections[i]+"minus.gif";
}
document.switchit.switchedselector.value=1;
x = document.getElementById('showhideText');
x.innerHTML = 'Hide all indicators';
}
else
{
for (var i = 0; i < ArraySectionslength; i++)
{
//alert("Section: " + i + " = " + ArraySections[i]);
number=document.getElementById(ArraySections[i]).style;
number.display="none";
//swap the image for +
imageChange = ArraySections[i]+"_image";
document.getElementById(imageChange).src = "plusminusimages/"+ArraySections[i]+"plus.gif";
}
document.switchit.switchedselector.value=0;
x = document.getElementById('showhideText');
x.innerHTML = 'Show all indicators';
}
}
function changePlusMinus(sectionname)
{
var elementID = sectionname+"_image"; // create ID string from the image tag
var currentImage = document.getElementById(elementID).src; // obtain current image URL
var pos = currentImage.indexOf("plus.");
if (pos>=0)
{
number=document.getElementById(sectionname).style;
number.display="block";
document.getElementById(elementID).src = "plusminusimages/"+sectionname+"minus.gif";
}
else
{
number=document.getElementById(sectionname).style;
number.display="none";
document.getElementById(elementID).src = "plusminusimages/"+sectionname+"plus.gif";
}
}
//]]>
</script> <!-- start main page -->
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2"><a href=
"javascript:openAll('01','02','03','04','05','06','07','08','09','10','11','12')"
class="Text"></a>
<div id="showhideText" width="100" class="normal">Show all
indicators</div>
<form name="switchit" id="switchit"><input type="hidden" value="0"
name="switchedselector" /></form>
<br /></td>
</tr>
<tr valign="top">
<td><!-- SUB-TABLE COL 1 -->
<table width="275" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height='33' colspan='2' valign='top'><img src=
"plusminusimages/01plus.gif" border="0" id="01_image" onclick=
"javascript:changePlusMinus('01');" style=
"cursor:pointer;cursor:hand" name="01_image" /></td>
</tr>
<tr>
<td width='31'> </td>
<td width='244' valign='top' class='DHMenuList'><span id="01"
style="display: none;">TOTAL POPULATION<br />
• <a class='Text' href='01-01-01.htm'>Evolution of the
population</a><br />
• <a class='Text' href='01-01-02.htm'>Regional
population</a><br />
ELDERLY POPULATION<br />
• <a class='Text' href='01-02-01.htm'>Ageing
societies</a><br />
• <a class='Text' href='01-02-02.htm'>Elderly population by
region</a><br />
<br />
<br />
<br />
<br /></span></td>
</tr>
<tr>
<td height='33' colspan='2' valign='top'><img src=
"plusminusimages/02plus.gif" border="0" id="02_image" onclick=
"javascript:changePlusMinus('02');" style=
"cursor:pointer;cursor:hand" name="02_image" /></td>
</tr>
<tr>
<td width='31'> </td>
<td width='244' valign='top' class='DHMenuList'><span id="02"
style="display: none;">GROSS DOMESTIC PRODUCT (GDP)<br />
• <a class='Text' href='02-01-01.htm'>Size of GDP</a><br />
• <a class='Text' href='02-01-02.htm'>National income per
capita</a><br />
• <a class='Text' href='02-01-03.htm'>Regional GDP</a><br />
ECONOMIC GROWTH<br />
• <a class='Text' href='02-02-01.htm'>Evolution of
GDP</a><br />
• <a class='Text' href='02-02-02.htm'>Household
saving</a><br />
• <a class='Text' href='02-02-03.htm'>Investment
rates</a><br />
• <a class='Text' href='02-02-04.htm'>Inflation</a><br />
• <a class='Text' href='02-02-05.htm'>Steel
production</a><br />
PRODUCTIVITY<br />
• <a class='Text' href='02-03-01.htm'>Labour
productivity</a><br />
• <a class='Text' href='02-03-02.htm'>Multi-factor
productivity</a><br />
ECONOMIC STRUCTURE<br />
• <a class='Text' href='02-04-01.htm'>Value added by
activity</a><br />
• <a class='Text' href='02-04-02.htm'>Evolution of value
added by activity</a><br />
• <a class='Text' href='02-04-03.htm'>Small and medium-sized
enterprises</a><br />
<br />
<br />
<br />
<br /></span></td>
</tr>
<tr>
<td height='33' colspan='2' valign='top'><img src=
"plusminusimages/03plus.gif" border="0" id="03_image" onclick=
"javascript:changePlusMinus('03');" style=
"cursor:pointer;cursor:hand" name="03_image" /></td>
</tr>
<tr>
<td width='31'> </td>
<td width='244' valign='top' class='DHMenuList'><span id="03"
style="display: none;">TRADE<br />
• <a class='Text' href='03-01-01.htm'>Share of trade in
GDP</a><br />
• <a class='Text' href='03-01-02.htm'>Trade in
goods</a><br />
• <a class='Text' href='03-01-03.htm'>Trade in
services</a><br />
• <a class='Text' href='03-01-04.htm'>Trading
partners</a><br />
• <a class='Text' href='03-01-05.htm'>Balance of
payments</a><br />
FOREIGN DIRECT INVESTMENT (FDI)<br />
• <a class='Text' href='03-02-01.htm'>FDI flows and
stocks</a><br />
• <a class='Text' href='03-02-02.htm'>Activities of
multinationals</a><br />
<br />
<br />
<br />
<br /></span></td>
</tr>
<tr>
<td height='33' colspan='2' valign='top'><img src=
"plusminusimages/04plus.gif" border="0" id="04_image" onclick=
"javascript:changePlusMinus('04');" style=
"cursor:pointer;cursor:hand" name="04_image" /></td>
</tr>
<tr>
<td width='31'> </td>
<td width='244' valign='top' class='DHMenuList'><span id="04"
style="display: none;">PRICES AND INTEREST RATES<br />
• <a class='Text' href='04-01-01.htm'>Consumer price indices
(CPI)</a><br />
• <a class='Text' href='04-01-02.htm'>Producer price indices
(PPI)</a><br />
• <a class='Text' href='04-01-03.htm'>Long-term interest
rates</a><br />
PURCHASING POWER AND EXCHANGE RATES<br />
• <a class='Text' href='04-02-01.htm'>Rates of
conversion</a><br />
• <a class='Text' href='04-02-02.htm'>Effective exchange
rates</a><br />
<br />
<br />
<br />
<br /></span></td>
</tr>
<tr>
<td height='33' colspan='2' valign='top'><img src=
"plusminusimages/05plus.gif" border="0" id="05_image" onclick=
"javascript:changePlusMinus('05');" style=
"cursor:pointer;cursor:hand" name="05_image" /></td>
</tr>
<tr>
<td width='31'> </td>
<td width='244' valign='top' class='DHMenuList'><span id="05"
style="display: none;">ENERGY SUPPLY<br />
• <a class='Text' href='05-01-01.htm'>Primary Energy
supply</a><br />
• <a class='Text' href='05-01-02.htm'>Energy supply and
economic growth</a><br />
• <a class='Text' href='05-01-03.htm'>Energy supply per
capita</a><br />
• <a class='Text' href='05-01-04.htm'>Electricity
generation</a><br />
• <a class='Text' href='05-01-05.htm'>Renewable
energy</a><br />
ENERGY PRODUCTION AND PRICES<br />
• <a class='Text' href='05-02-01.htm'>Energy
production</a><br />
• <a class='Text' href='05-02-02.htm'>Oil
production</a><br />
• <a class='Text' href='05-02-03.htm'>Oil prices</a><br />
<br />
<br />
<br />
<br /></span></td>
</tr>
<tr>
<td height='33' colspan='2' valign='top'><img src=
"plusminusimages/06plus.gif" border="0" id="06_image" onclick=
"javascript:changePlusMinus('06');" style=
"cursor:pointer;cursor:hand" name="06_image" /></td>
</tr>
<tr>
<td width='31'> </td>
<td width='244' valign='top' class='DHMenuList'><span id="06"
style="display: none;">EMPLOYMENT<br />
• <a class='Text' href='06-01-01.htm'>Employment rates by
gender</a><br />
• <a class='Text' href='06-01-02.htm'>Employment rates by age
group</a><br />
• <a class='Text' href='06-01-03.htm'>Part-time
employment</a><br />
• <a class='Text' href=
'06-01-04.htm'>Self-employment</a><br />
• <a class='Text' href='06-01-05.htm'>Hours worked</a><br />
UNEMPLOYMENT<br />
• <a class='Text' href='06-02-01.htm'>Unemployment
rates</a><br />
• <a class='Text' href='06-02-02.htm'>Long-term
unemployment</a><br />
• <a class='Text' href='06-02-03.htm'>Regional
unemployment</a><br />
<br />
<br />
<br />
<br /></span>
<p><span id="06" style="display: none;"></span></p>
</td>
</tr>
<!-- Change MAIN column, new table --></table>
</td>
<td><img src="icons/white.gif" border="0" width="15" height=
"5" /></td>
<td><!-- SUB-TABLE COL 2 -->
<table width="275" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height='33' colspan='2' valign='top'><img src=
"plusminusimages/07plus.gif" border="0" id="07_image" onclick=
"javascript:changePlusMinus('07');" style=
"cursor:pointer;cursor:hand" name="07_image" /></td>
</tr>
<tr>
<td width='31'> </td>
<td width='244' valign='top' class='DHMenuList'><span id="07"
style="display: none;">RESEARCH AND DEVELOPMENT (R&D)<br />
• <a class='Text' href='07-01-01.htm'>Expenditure on
R&D</a><br />
• <a class='Text' href='07-01-02.htm'>Researchers</a><br />
• <a class='Text' href='07-01-03.htm'>Patents</a><br />
ICT<br />
• <a class='Text' href='07-02-01.htm'>Size of the ICT
sector</a><br />
• <a class='Text' href='07-02-02.htm'>Investment in
ICT</a><br />
• <a class='Text' href='07-02-03.htm'>Computer and internet
access by households</a><br />
COMMUNICATIONS<br />
• <a class='Text' href='07-03-01.htm'>Exports of information
and communications equipment</a><br />
• <a class='Text' href='07-03-02.htm'>Telephone
access</a><br />
<br />
<br />
<br />
<br /></span></td>
</tr>
<tr>
<td height='33' colspan='2' valign='top'><img src=
"plusminusimages/08plus.gif" border="0" id="08_image" onclick=
"javascript:changePlusMinus('08');" style=
"cursor:pointer;cursor:hand" name="08_image" /></td>
</tr>
<tr>
<td width='31'> </td>
<td width='244' valign='top' class='DHMenuList'><span id="08"
style="display: none;">WATER AND NATURAL RESOURCES<br />
• <a class='Text' href='08-01-01.htm'>Water
consumption</a><br />
• <a class='Text' href='08-01-02.htm'>Fisheries</a><br />
EMISSIONS AND WASTE<br />
• <a class='Text' href='08-02-01.htm'>Emissions of carbon
dioxide (CO<sub>2</sub>)</a><br />
• <a class='Text' href='08-02-02.htm'>Municipal
waste</a><br />
<br />
<br />
<br />
<br /></span></td>
</tr>
<tr>
<td height='33' colspan='2' valign='top'><img src=
"plusminusimages/09plus.gif" border="0" id="09_image" onclick=
"javascript:changePlusMinus('09');" style=
"cursor:pointer;cursor:hand" name="09_image" /></td>
</tr>
<tr>
<td width='31'> </td>
<td width='244' valign='top' class='DHMenuList'><span id="09"
style="display: none;">OUTCOMES<br />
• <a class='Text' href='09-01-01.htm'>International student
assessment</a><br />
• <a class='Text' href='09-01-02.htm'>Tertiary
attainment</a><br />
EXPENDITURE ON EDUCATION<br />
• <a class='Text' href='09-02-01.htm'>Expenditure on tertiary
education</a><br />
• <a class='Text' href='09-02-02.htm'>Public and private
education expenditure</a><br />
<br />
<br />
<br />
<br /></span></td>
</tr>
<tr>
<td height='33' colspan='2' valign='top'><img src=
"plusminusimages/10plus.gif" border="0" id="10_image" onclick=
"javascript:changePlusMinus('10');" style=
"cursor:pointer;cursor:hand" name="10_image" /></td>
</tr>
<tr>
<td width='31'> </td>
<td width='244' valign='top' class='DHMenuList'><span id="10"
style="display: none;">GOVERNMENT DEFICITS AND DEBT<br />
• <a class='Text' href='10-01-01.htm'>Government
deficits</a><br />
• <a class='Text' href='10-01-02.htm'>Government
debt</a><br />
PUBLIC EXPENDITURE AND AID<br />
• <a class='Text' href='10-02-01.htm'>Social
expenditure</a><br />
• <a class='Text' href='10-02-02.htm'>Law, order and defence
expenditure</a><br />
• <a class='Text' href='10-02-03.htm'>Agricultural support
estimates</a><br />
• <a class='Text' href='10-02-04.htm'>Government support for
fishing</a><br />
• <a class='Text' href='10-02-05.htm'>Official development
assistance</a><br />
TAXES<br />
• <a class='Text' href='10-03-01.htm'>Total tax
revenue</a><br />
• <a class='Text' href='10-03-02.htm'>Taxes on the average
worker</a><br />
<br />
<br />
<br />
<br /></span></td>
</tr>
<tr>
<td height='33' colspan='2' valign='top'><img src=
"plusminusimages/11plus.gif" border="0" id="11_image" onclick=
"javascript:changePlusMinus('11');" style=
"cursor:pointer;cursor:hand" name="11_image" /></td>
</tr>
<tr>
<td width='31'> </td>
<td width='244' valign='top' class='DHMenuList'><span id="11"
style="display: none;">HEALTH<br />
• <a class='Text' href='11-01-01.htm'>Life
expectancy</a><br />
• <a class='Text' href='11-01-02.htm'>Infant
mortality</a><br />
• <a class='Text' href='11-01-03.htm'>Obesity</a><br />
• <a class='Text' href='11-01-04.htm'>Public and private
health expenditure</a><br />
LEISURE<br />
• <a class='Text' href='11-02-01.htm'>Tourism: hotel
nights</a><br />
• <a class='Text' href='11-02-02.htm'>Recreation and
culture</a><br />
SOCIETY<br />
• <a class='Text' href='11-03-01.htm'>Youth
inactivity</a><br />
• <a class='Text' href='11-03-02.htm'>Income
inequality</a><br />
• <a class='Text' href='11-03-03.htm'>Prison
population</a><br />
TRANSPORT<br />
• <a class='Text' href='11-04-01.htm'>Road network</a><br />
• <a class='Text' href='11-04-02.htm'>Road motor vehicles and
road fatalities</a><br />
<br />
<br />
<br />
<br /></span></td>
</tr>
<tr>
<td height='33' colspan='2' valign='top'><img src=
"plusminusimages/12plus.gif" border="0" id="12_image" onclick=
"javascript:changePlusMinus('12');" style=
"cursor:pointer;cursor:hand" name="12_image" /></td>
</tr>
<tr>
<td width='31'> </td>
<td width='244' valign='top' class='DHMenuList'><span id="12"
style="display: none;">• <a class='Text' href=
'12-01-00.htm'>INTRODUCTION</a><br />
FLOWS OF IMMIGRANTS<br />
• <a class='Text' href='12-01-01.htm'>Trends in Inflows of
foreign nationals</a><br />
• <a class='Text' href='12-01-02.htm'>Immigration by category
of entry</a><br />
• <a class='Text' href='12-01-03.htm'>Inflows of asylum
seekers</a><br />
• <a class='Text' href='12-01-04.htm'>Trends in
migration</a><br />
STOCKS OF IMMIGRANTS<br />
• <a class='Text' href='12-02-01.htm'>Immigrant
population</a><br />
• <a class='Text' href='12-02-02.htm'>Immigrant population by
region of origin and gender</a><br />
EDUCATION<br />
• <a class='Text' href='12-03-01.htm'>Educational outcomes
for children of immigrants</a><br />
• <a class='Text' href='12-03-02.htm'>Education attainment of
immigrants</a><br />
• <a class='Text' href='12-03-03.htm'>Migration of the highly
educated</a><br />
LABOUR FORCE AND REMITTANCES<br />
• <a class='Text' href='12-04-01.htm'>Employment rates of the
foreign- and the native-born</a><br />
• <a class='Text' href='12-04-02.htm'>Unemployment rates of
the foreign- and the native-born</a><br />
• <a class='Text' href=
'12-04-03.htm'>Remittances</a><br /></span></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
err.txt
(text/plain, 5.8 KB)
line 3 column 1 - Warning: discarding unexpected <!DOCTYPE> line 11 column 60 - Warning: discarding unexpected </link> line 12 column 59 - Warning: discarding unexpected </link> line 100 column 1 - Warning: missing </a> before <div> line 100 column 179 - Warning: discarding unexpected </a> line 119 column 9 - Warning: replacing </p> by <br> line 145 column 9 - Warning: replacing </p> by <br> line 163 column 9 - Warning: replacing </p> by <br> line 179 column 9 - Warning: replacing </p> by <br> line 198 column 9 - Warning: replacing </p> by <br> line 217 column 9 - Warning: replacing </p> by <br> line 206 column 75 - Warning: missing </span> before <p> line 217 column 16 - Warning: inserting implicit <span> line 219 column 1 - Warning: discarding unexpected </span> line 236 column 28 - Warning: unescaped & or unknown entity "&D" line 247 column 9 - Warning: replacing </p> by <br> line 262 column 9 - Warning: replacing </p> by <br> line 277 column 9 - Warning: replacing </p> by <br> line 298 column 9 - Warning: replacing </p> by <br> line 322 column 9 - Warning: replacing </p> by <br> line 330 column 75 - Warning: missing </span> before </table> line 21 column 9 - Warning: missing </table> line 21 column 9 - Warning: <table> lacks "summary" attribute line 26 column 36 - Warning: <img> lacks "alt" attribute line 29 column 33 - Warning: <img> lacks "alt" attribute line 30 column 33 - Warning: <img> lacks "alt" attribute line 35 column 22 - Warning: <img> lacks "alt" attribute line 36 column 22 - Warning: <img> lacks "alt" attribute line 39 column 1 - Warning: <script> inserting "type" attribute line 98 column 1 - Warning: <table> lacks "summary" attribute line 100 column 104 - Warning: <div> proprietary attribute "width" line 101 column 1 - Warning: <form> lacks "action" attribute line 107 column 1 - Warning: <table> lacks "summary" attribute line 110 column 46 - Warning: <img> attribute "id" has invalid value "01_image" line 110 column 46 - Warning: <img> lacks "alt" attribute line 112 column 75 - Warning: <span> attribute "id" has invalid value "01" line 125 column 46 - Warning: <img> attribute "id" has invalid value "02_image" line 125 column 46 - Warning: <img> lacks "alt" attribute line 127 column 75 - Warning: <span> attribute "id" has invalid value "02" line 151 column 46 - Warning: <img> attribute "id" has invalid value "03_image" line 151 column 46 - Warning: <img> lacks "alt" attribute line 153 column 75 - Warning: <span> attribute "id" has invalid value "03" line 169 column 46 - Warning: <img> attribute "id" has invalid value "04_image" line 169 column 46 - Warning: <img> lacks "alt" attribute line 171 column 75 - Warning: <span> attribute "id" has invalid value "04" line 185 column 46 - Warning: <img> attribute "id" has invalid value "05_image" line 185 column 46 - Warning: <img> lacks "alt" attribute line 187 column 75 - Warning: <span> attribute "id" has invalid value "05" line 204 column 46 - Warning: <img> attribute "id" has invalid value "06_image" line 204 column 46 - Warning: <img> lacks "alt" attribute line 206 column 75 - Warning: <span> attribute "id" has invalid value "06" line 217 column 16 - Warning: <span> attribute "id" has invalid value "06" line 217 column 16 - Warning: <span> anchor "06" already defined line 227 column 5 - Warning: <img> lacks "alt" attribute line 231 column 1 - Warning: <table> lacks "summary" attribute line 233 column 46 - Warning: <img> attribute "id" has invalid value "07_image" line 233 column 46 - Warning: <img> lacks "alt" attribute line 235 column 75 - Warning: <span> attribute "id" has invalid value "07" line 253 column 46 - Warning: <img> attribute "id" has invalid value "08_image" line 253 column 46 - Warning: <img> lacks "alt" attribute line 255 column 75 - Warning: <span> attribute "id" has invalid value "08" line 268 column 46 - Warning: <img> attribute "id" has invalid value "09_image" line 268 column 46 - Warning: <img> lacks "alt" attribute line 270 column 75 - Warning: <span> attribute "id" has invalid value "09" line 283 column 46 - Warning: <img> attribute "id" has invalid value "10_image" line 283 column 46 - Warning: <img> lacks "alt" attribute line 285 column 75 - Warning: <span> attribute "id" has invalid value "10" line 304 column 46 - Warning: <img> attribute "id" has invalid value "11_image" line 304 column 46 - Warning: <img> lacks "alt" attribute line 306 column 75 - Warning: <span> attribute "id" has invalid value "11" line 328 column 46 - Warning: <img> attribute "id" has invalid value "12_image" line 328 column 46 - Warning: <img> lacks "alt" attribute line 330 column 75 - Warning: <span> attribute "id" has invalid value "12" Info: Doctype given is "-//W3C//DTD HTML 4.01 Transitional//EN" Info: Document content looks like HTML Proprietary 73 warnings, 0 errors were found! The table summary attribute should be used to describe the table structure. It is very helpful for people using non-visual browsers. The scope and headers attributes for table cells are useful for specifying which headers apply to each table cell, enabling non-visual browsers to provide a meaningful context for each cell. The alt attribute should be used to give a short description of an image; longer descriptions should be given with the longdesc attribute which takes a URL linked to the description. These measures are needed for people using non-graphical browsers. For further advice on how to make your pages accessible see http://www.w3.org/WAI/GL. . You may also want to try "http://www.cast.org/bobby/" which is a free Web-based service for checking URLs for accessibility. To learn more about HTML Tidy see http://tidy.sourceforge.net Please send bug reports to [email protected] HTML and CSS specifications are available from http://www.w3.org/ Lobby your company to join W3C, see http://www.w3.org/Consortium
config.txt
(text/plain, 92 B)
add-xml-decl:yes write-back:yes error-file:err.txt output-xhtml:yes doctype:transitional