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 /* true if previous element is a previous verse of a stanza */
225 var parent = node.parentNode;
226 if (!parent || !parent.hasAttribute('x-node') || parent.getAttribute('x-node') != 'strofa')
229 var prev = node.previousSibling;
231 while((prev !== null) && (prev.nodeType != ELEMENT_NODE)) {
232 prev = prev.previousSibling;
235 return (prev !== null) && prev.hasAttribute('x-verse');
238 HTMLSerializer.prototype.serialize = function(rootElement, stripOuter)
244 self._pushElement(rootElement);
246 self._pushChildren(rootElement);
248 while(self.stack.length > 0) {
249 var token = self.stack.pop();
251 if(token.type === ELEM_END) {
252 self.result += "</" + token.tagName + ">";
253 for(var padding = getPadding(token.tagName); padding > 0; padding--) {
259 if(token.type === NS_END) {
260 self._unassignNamespace(token.namespace);
265 switch(token.node.nodeType) {
267 if(token.node.hasAttribute('x-pass-thru')
268 || token.node.hasAttribute('data-pass-thru')) {
269 self._pushChildren(token.node);
273 if(!token.node.hasAttribute('x-node'))
276 var xnode = token.node.getAttribute('x-node');
278 if(xnode === 'wers') {
280 if(self._verseBefore(token.node))
281 self.result += '/\n';
282 self._pushChildren(token.node);
286 if(xnode === 'out-of-flow-text') {
287 self._pushChildren(token.node);
291 if(token.node.hasAttribute('x-verse')) {
292 if(self._verseBefore(token.node)) {
298 self._serializeElement(token.node);
301 // collapse previous element's padding
303 while (token.node.nodeValue[i] == '\n' && self.result[self.result.length - 1] == '\n')
305 self.result += token.node.nodeValue.substr(i);
314 * TODO: this doesn't support prefix redefinitions
316 HTMLSerializer.prototype._unassignNamespace = function(nsData) {
317 this.nsMap[nsData.uri] = undefined;
320 HTMLSerializer.prototype._assignNamespace = function(uri) {
323 return ({"prefix": "", "uri": "", "fresh": false});
326 if(this.nsMap[uri] === undefined) {
327 // this prefix hasn't been defined yet in current context
328 var prefix = NAMESPACES[uri];
330 if (prefix === undefined) { // not predefined
331 prefix = "ns" + this.nsCounter;
335 this.nsMap[uri] = prefix;
343 return ({"prefix": this.nsMap[uri], "uri": uri, "fresh": false});
346 HTMLSerializer.prototype._join = function(prefix, name) {
348 return prefix + ":" + name;
352 HTMLSerializer.prototype._rjoin = function(prefix, name) {
354 return prefix + ":" + name;
358 HTMLSerializer.prototype._serializeElement = function(node) {
361 var ns = node.getAttribute('x-ns');
363 var newNamespaces = [];
365 var nsData = self._assignNamespace(node.getAttribute('x-ns'));
368 newNamespaces.push(nsData);
375 var tagName = self._join(nsData.prefix, node.getAttribute('x-node'));
377 /* retrieve attributes */
378 var attributeIDs = [];
379 for (var i = 0; i < node.attributes.length; i++) {
380 var attr = node.attributes.item(i);
382 // check if name starts with "x-attr-name"
383 var m = attr.name.match(XATTR_RE);
385 attributeIDs.push(m[1]);
390 // at least one newline before padded elements
391 if (getPadding(tagName) && self.result[self.result.length - 1] != '\n')
394 self.result += '<' + tagName;
396 $.each(attributeIDs, function() {
397 var nsData = self._assignNamespace(node.getAttribute('x-attr-ns-'+this));
400 newNamespaces.push(nsData);
407 self.result += ' ' + self._join(nsData.prefix, node.getAttribute('x-attr-name-'+this));
408 self.result += '="'+node.getAttribute('x-attr-value-'+this) +'"';
411 /* print new namespace declarations */
412 $.each(newNamespaces, function() {
413 self.result += " " + self._rjoin("xmlns", this.prefix);
414 self.result += '="' + this.uri + '"';
417 if (node.childNodes.length > 0) {
419 self._pushTagEnd(tagName);
420 self._pushChildren(node);
427 function html2text(params) {
429 var s = new HTMLSerializer();
430 params.success( s.serialize(params.element, params.stripOuter) );
432 params.error("Nie udało się zserializować tekstu:" + e)