2 dramat_wierszowany_l: 4,
3 dramat_wierszowany_lp: 4,
34 MARGIN['rdf:RDF'] = 3;
35 MARGIN['rdf:Description'] = 2;
37 var blockTags = ['akap', 'akap_cd', 'akap_dialog', 'strofa', 'didaskalia', 'wers', 'wers_cd', 'wers_akap', 'wers_wciety', 'autor_utworu', 'nazwa_utworu', 'dzielo_nadrzedne', 'podpis'];
38 function elementType(element) {
39 if (blockTags.indexOf(element.tagName) != -1) {
46 // Serializuje XML, wstawiając odpowiednie ilości białych znaków między elementami
47 function serialize(element, mode) {
52 if (element.nodeType == 3) { // tekst
53 return [element.nodeValue];
54 } else if (element.nodeType != 1) { // pomijamy węzły nie będące elementami XML ani tekstem
59 var hasContent = false;
63 if (MARGIN[element.tagName]) {
64 for (var i=0; i < MARGIN[element.tagName]; i++) {
67 } else if (element.tagName.indexOf('dc:') != -1) {
72 result.push(element.tagName);
74 // Mozilla nie uważa deklaracji namespace za atrybuty | --lqc: bo nie są one atrybutami!
75 var ns = element.tagName.indexOf(':');
76 if (ns != -1 && $.browser.mozilla) {
77 result.push(' xmlns:');
78 result.push(element.tagName.substring(0, ns));
80 result.push(element.namespaceURI);
84 if (element.attributes) {
85 for (var i=0; i < element.attributes.length; i++) {
86 var attr = element.attributes[i];
88 result.push(attr.name);
90 result.push(attr.value);
96 if (element.childNodes.length == 0) {
101 for (var i=0; i < element.childNodes.length; i++) {
102 result = result.concat(serialize(element.childNodes[i],
103 mode == 'inline' ? 'inline' : elementType(element.childNodes[i])));
107 result.push(element.tagName);
115 function createXSLT(xsl) {
116 var p = new XSLTProcessor();
117 p.importStylesheet(xsl);
122 var xml2htmlStylesheet = null;
123 var html2xmlStylesheet = null;
126 // Wykonuje block z załadowanymi arkuszami stylów
127 function withStylesheets(block, onError) {
128 if (xml2htmlStylesheet && html2xmlStylesheet) {
132 $.blockUI({message: 'Ładowanie arkuszy stylów...'});
134 url: STATIC_URL + 'xsl/wl2html_client.xsl',
136 success: function(data) {
137 xml2htmlStylesheet = createXSLT(data);
139 url: STATIC_URL + 'xsl/html2wl_client.xsl',
141 success: function(data) {
142 html2xmlStylesheet = createXSLT(data);
154 function xml2html(options) {
155 withStylesheets(function() {
156 var xml = options.xml.replace(/\/\s+/g, '<br />');
157 var parser = new DOMParser();
158 var serializer = new XMLSerializer();
159 var doc = parser.parseFromString(xml, 'text/xml');
160 var error = $('parsererror', doc);
162 if (error.length == 0) {
163 doc = xml2htmlStylesheet.transformToDocument(doc);
165 error = $('parsererror', doc);
168 if (error.length > 0 && options.error) {
169 options.error(error.text());
171 options.success(document.importNode(doc.documentElement, true));
173 }, function() { options.error && options.error('Nie udało się załadować XSLT'); });
176 /* USEFULL CONSTANTS */
177 const ELEMENT_NODE = 1;
178 const ATTRIBUTE_NODE = 2;
180 const CDATA_SECTION_NODE = 4;
181 const ENTITY_REFERENCE_NODE = 5;
182 const ENTITY_NODE = 6;
183 const PROCESSING_INSTRUCTION_NODE = 7;
184 const COMMENT_NODE = 8;
185 const DOCUMENT_NODE = 9;
186 const DOCUMENT_TYPE_NODE = 10;
187 const DOCUMENT_FRAGMENT_NODE = 11;
188 const NOTATION_NODE = 12;
189 const XATTR_RE = /^x-attr-name-(.*)$/;
191 const ELEM_START = 1;
198 "http://www.w3.org/1999/02/22-rdf-syntax-ns#": "rdf:",
199 "http://purl.org/dc/elements/1.1/": "dc:",
200 "http://www.w3.org/XML/1998/namespace": "xml:"
203 function html2text(rootElement) {
207 stack.push([ELEM_START, rootElement]);
208 console.log("SERIALIZING")
210 while( stack.length > 0) {
211 var pair = stack.pop();
216 // console.log("NODE", event, node);
218 if(event == ELEM_END) {
219 result += "</" + node + ">\n";
223 switch(node.nodeType) {
225 if(!node.hasAttribute('x-node'))
228 var tag_name = NAMESPACES[node.getAttribute('x-ns')] + node.getAttribute('x-node');
229 // console.log("ELEMENT: ", tag_name);
231 /* retrieve attributes */
233 for(var i=0; i < node.attributes.length; i++) {
234 var attr = node.attributes.item(i);
236 // check if name starts with "x-attr-name"
237 var m = attr.name.match(XATTR_RE);
243 result += '<' + tag_name;
245 $.each(attr_ids, function() {
246 result += ' ' + NAMESPACES[node.getAttribute('x-attr-ns-'+this)];
247 result += node.getAttribute('x-attr-name-'+this);
248 result += '="'+node.getAttribute('x-attr-value-'+this) +'"';
252 stack.push([ELEM_END, tag_name]);
253 for(var i = node.childNodes.length-1; i >= 0; i--)
254 stack.push([ELEM_START, node.childNodes.item(i)]);
258 result += node.nodeValue;
266 function html2xml(options) {
268 return options.success(html2text(options.htmlElement));
270 options.error("Nie udało się zserializować tekstu:" + e)