Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | formatting |
---|---|
Timelines: | family | ancestors | trunk |
Files: | files | file ages | folders |
SHA1: | 569435dfd549f522077923382634d0ce7cd7296a |
User & Date: | jan.nijtmans 2012-07-30 07:35:23 |
Context
2012-07-30
| ||
07:35 | formatting Leaf check-in: 569435dfd5 user: jan.nijtmans tags: trunk | |
2012-07-22
| ||
08:28 | first check-in check-in: 8b14e93ed8 user: jan.nijtmans tags: trunk | |
Changes
Changes to index.html.
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
// separate transformation function for IE 6.0+
function transformData(){
var processor = cache.createProcessor();
processor.input = xmlFile;
processor.transform();
data.innerHTML = processor.output;
}
// separate transformation function for NSCP 7.1+ and Mozilla 1.4.1+
function transform(){
returnval+=1;
if (returnval==2){
var processor = new XSLTProcessor();
processor.importStylesheet(stylesheet);
doc = processor.transformToDocument(xmlFile);
document.getElementById("data").innerHTML = doc.documentElement.innerHTML;
|
| |
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
// separate transformation function for IE 6.0+ function transformData(){ var processor = cache.createProcessor(); processor.input = xmlFile; processor.transform(); data.innerHTML = processor.output; } // separate transformation function for NSCP 7.1+ and Mozilla 1.4.1+ function transform(){ returnval+=1; if (returnval==2){ var processor = new XSLTProcessor(); processor.importStylesheet(stylesheet); doc = processor.transformToDocument(xmlFile); document.getElementById("data").innerHTML = doc.documentElement.innerHTML; |