6 function createXSLT(xsl) {
7 var p = new XSLTProcessor();
8 p.importStylesheet(xsl);
12 var xml2htmlStylesheet = null;
14 // Wykonuje block z załadowanymi arkuszami stylów
15 function withStylesheets(code_block, onError)
17 if (!xml2htmlStylesheet) {
18 $.blockUI({message: 'Ładowanie arkuszy stylów...'});
20 url: STATIC_URL + 'xsl/wl2html_client.xsl',
23 success: function(data) {
24 xml2htmlStylesheet = createXSLT(data);
38 // Wykonuje block z załadowanymi kanonicznymi motywami
39 function withThemes(code_block, onError)
41 if (typeof withThemes.canon == 'undefined') {
45 success: function(data) {
46 withThemes.canon = data.split('\n');
47 code_block(withThemes.canon);
50 withThemes.canon = null;
51 code_block(withThemes.canon);
56 code_block(withThemes.canon);
61 function xml2html(options) {
62 withStylesheets(function() {
63 var xml = options.xml.replace(/\/(\s+)/g, '<br />$1');
64 var parser = new DOMParser();
65 var serializer = new XMLSerializer();
66 var doc = parser.parseFromString(xml, 'text/xml');
67 var error = $('parsererror', doc);
69 if (error.length == 0) {
70 doc = xml2htmlStylesheet.transformToFragment(doc, document);
71 console.log(doc.firstChild);
73 if(doc.firstChild === null) {
74 options.error("Błąd w przetwarzaniu XML.");
78 error = $('parsererror', doc);
81 if (error.length > 0 && options.error) {
82 source = $('sourcetext', doc);
83 source_text = source.text();
85 options.error(error.text(), source_text);
87 options.success(doc.firstChild);
89 withThemes(function(canonThemes) {
90 if (canonThemes != null) {
91 $('.theme-text-list').addClass('canon').each(function(){
92 var themes = $(this).html().split(',');
94 themes[i] = $.trim(themes[i]);
95 if (canonThemes.indexOf(themes[i]) == -1)
96 themes[i] = '<span x-pass-thru="true" class="noncanon">' + themes[i] + "</span>"
98 $(this).html(themes.join(', '));
103 }, function() { options.error && options.error('Nie udało się załadować XSLT'); });
106 /* USEFULL CONSTANTS */
107 const ELEMENT_NODE = 1;
108 const ATTRIBUTE_NODE = 2;
110 const CDATA_SECTION_NODE = 4;
111 const ENTITY_REFERENCE_NODE = 5;
112 const ENTITY_NODE = 6;
113 const PROCESSING_INSTRUCTION_NODE = 7;
114 const COMMENT_NODE = 8;
115 const DOCUMENT_NODE = 9;
116 const DOCUMENT_TYPE_NODE = 10;
117 const DOCUMENT_FRAGMENT_NODE = 11;
118 const NOTATION_NODE = 12;
119 const XATTR_RE = /^x-attr-name-(.*)$/;
121 const ELEM_START = 1;
126 // namespaces not listed here will be assigned random names
127 "http://www.w3.org/1999/02/22-rdf-syntax-ns#": "rdf",
128 "http://purl.org/dc/elements/1.1/": "dc",
129 "http://www.w3.org/XML/1998/namespace": "xml"
133 * PADDING for pretty-printing
136 dramat_wierszowany_l: 4,
137 dramat_wierszowany_lp: 4,
138 dramat_wspolczesny: 4,
146 naglowek_rozdzial: 4,
174 "rdf:Description": 1,
177 function getPadding(name) {
179 if(name.match(/^dc:.*$/))
183 return PADDING[name];
188 function HTMLSerializer() {
194 HTMLSerializer.prototype._prepare = function() {
197 // XML namespace is implicit
198 this.nsMap = {"http://www.w3.org/XML/1998/namespace": "xml"};
204 HTMLSerializer.prototype._pushElement = function(element) {
211 HTMLSerializer.prototype._pushChildren = function(element) {
212 for(var i = element.childNodes.length-1; i >= 0; i--)
213 this._pushElement(element.childNodes.item(i));
216 HTMLSerializer.prototype._pushTagEnd = function(tagName) {
223 HTMLSerializer.prototype._verseBefore = function(node) {
224 var prev = node.previousSibling;
226 while((prev !== null) && (prev.nodeType != ELEMENT_NODE)) {
227 prev = prev.previousSibling;
230 return (prev !== null) && prev.hasAttribute('x-verse');
233 HTMLSerializer.prototype.serialize = function(rootElement, stripOuter)
239 self._pushElement(rootElement);
241 self._pushChildren(rootElement);
243 while(self.stack.length > 0) {
244 var token = self.stack.pop();
246 if(token.type === ELEM_END) {
247 self.result += "</" + token.tagName + ">";
248 for(var padding = getPadding(token.tagName); padding > 0; padding--) {
254 if(token.type === NS_END) {
255 self._unassignNamespace(token.namespace);
260 switch(token.node.nodeType) {
262 if(token.node.hasAttribute('x-pass-thru')
263 || token.node.hasAttribute('data-pass-thru')) {
264 self._pushChildren(token.node);
268 if(!token.node.hasAttribute('x-node'))
271 var xnode = token.node.getAttribute('x-node');
273 if(xnode === 'wers') {
275 if(self._verseBefore(token.node))
277 self._pushChildren(token.node);
281 if(xnode === 'out-of-flow-text') {
282 self._pushChildren(token.node);
286 if(token.node.hasAttribute('x-verse') && self._verseBefore(token.node)) {
287 self.result += '/\n';
290 self._serializeElement(token.node);
293 // collapse previous element's padding
295 while (token.node.nodeValue[i] == '\n' && self.result[self.result.length - 1] == '\n')
297 self.result += token.node.nodeValue.substr(i);
306 * TODO: this doesn't support prefix redefinitions
308 HTMLSerializer.prototype._unassignNamespace = function(nsData) {
309 this.nsMap[nsData.uri] = undefined;
312 HTMLSerializer.prototype._assignNamespace = function(uri) {
315 return ({"prefix": "", "uri": "", "fresh": false});
318 if(this.nsMap[uri] === undefined) {
319 // this prefix hasn't been defined yet in current context
320 var prefix = NAMESPACES[uri];
322 if (prefix === undefined) { // not predefined
323 prefix = "ns" + this.nsCounter;
327 this.nsMap[uri] = prefix;
335 return ({"prefix": this.nsMap[uri], "uri": uri, "fresh": false});
338 HTMLSerializer.prototype._join = function(prefix, name) {
340 return prefix + ":" + name;
344 HTMLSerializer.prototype._rjoin = function(prefix, name) {
346 return prefix + ":" + name;
350 HTMLSerializer.prototype._serializeElement = function(node) {
353 var ns = node.getAttribute('x-ns');
355 var newNamespaces = [];
357 var nsData = self._assignNamespace(node.getAttribute('x-ns'));
360 newNamespaces.push(nsData);
367 var tagName = self._join(nsData.prefix, node.getAttribute('x-node'));
369 /* retrieve attributes */
370 var attributeIDs = [];
371 for (var i = 0; i < node.attributes.length; i++) {
372 var attr = node.attributes.item(i);
374 // check if name starts with "x-attr-name"
375 var m = attr.name.match(XATTR_RE);
377 attributeIDs.push(m[1]);
382 // at least one newline before padded elements
383 if (getPadding(tagName) && self.result[self.result.length - 1] != '\n')
386 self.result += '<' + tagName;
388 $.each(attributeIDs, function() {
389 var nsData = self._assignNamespace(node.getAttribute('x-attr-ns-'+this));
392 newNamespaces.push(nsData);
399 self.result += ' ' + self._join(nsData.prefix, node.getAttribute('x-attr-name-'+this));
400 self.result += '="'+node.getAttribute('x-attr-value-'+this) +'"';
403 /* print new namespace declarations */
404 $.each(newNamespaces, function() {
405 self.result += " " + self._rjoin("xmlns", this.prefix);
406 self.result += '="' + this.uri + '"';
409 if (node.childNodes.length > 0) {
411 self._pushTagEnd(tagName);
412 self._pushChildren(node);
419 function html2text(params) {
421 var s = new HTMLSerializer();
422 params.success( s.serialize(params.element, params.stripOuter) );
424 params.error("Nie udało się zserializować tekstu:" + e)