/[pub]/test/html-webhacc/cc-script.js
Suika

Contents of /test/html-webhacc/cc-script.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.7 - (show annotations) (download) (as text)
Thu Aug 14 07:19:44 2008 UTC (15 years, 9 months ago) by wakaba
Branch: MAIN
Changes since 1.6: +46 -22 lines
File MIME type: application/javascript
++ ChangeLog	14 Aug 2008 07:18:47 -0000
2008-08-14  Wakaba  <wakaba@suika.fam.cx>

	* cc-script.js, cc-style.js: Support for tab styling
	of the "input" subsections.  Support for the "details"
	widget.

++ html/WebHACC/Language/ChangeLog	14 Aug 2008 07:19:38 -0000
2008-08-14  Wakaba  <wakaba@suika.fam.cx>

	* CacheManifest.pm: Compile errors fixed.

++ html/WebHACC/ChangeLog	14 Aug 2008 07:19:14 -0000
2008-08-14  Wakaba  <wakaba@suika.fam.cx>

	* Output.pm: Support for inner tabs for "input" subsections.
	Improved support for "details" widget.

1 function addSourceToParseErrorList (idPrefix, dlId) {
2 var parseErrorsList = document.getElementById
3 (idPrefix + dlId);
4 if (!parseErrorsList) return;
5 var childs = parseErrorsList.childNodes;
6 var childsL = childs.length;
7 var line = 0;
8 var column = 0;
9 for (var i = 0; i < childsL; i++) {
10 var child = childs[i];
11 if (child.nodeType != 1) continue;
12 if (child.nodeName == 'DT') {
13 line = parseInt (child.getAttribute ('data-line') || 0);
14 column = parseInt (child.getAttribute ('data-column') || 0);
15 } else if (child.nodeName == 'DD') {
16 if (line > 0) {
17 var lineEl = document.getElementById (idPrefix + 'line-' + line);
18 if (lineEl) {
19 lineText = lineEl.innerHTML
20 .replace (/<var>U\+([0-9A-F]{4})<\/var>/g, function (s) {
21 return String.fromCharCode (parseInt (s, 16));
22 })
23 .replace (/&lt;/g, '<')
24 .replace (/&gt;/g, '>')
25 .replace (/&nbsp;/g, '\u00A0')
26 .replace (/&quot;/g, '"')
27 .replace (/&amp;/g, '&');
28 var p = document.createElement ('p');
29 p.className = 'source-fragment';
30 var code = document.createElement ('code');
31 if (lineText.length > 50) {
32 if (column - 25 > 0) {
33 p.appendChild (document.createElement ('var')).innerHTML
34 = '...';
35 lineText = lineText.substring (column - 25, column + 24);
36 code.appendChild (document.createTextNode
37 (lineText.substring (0, 24)));
38 code.appendChild (document.createElement ('mark'))
39 .appendChild (document.createTextNode
40 (lineText.charAt (24)));
41 code.appendChild (document.createTextNode
42 (lineText.substring (25, lineText.length)));
43 p.appendChild (code);
44 p.appendChild (document.createElement ('var')).innerHTML
45 = '...';
46 } else {
47 lineText = lineText.substring (0, 50);
48 if (column > 0) {
49 code.appendChild (document.createTextNode
50 (lineText.substring (0, column - 1)));
51 code.appendChild (document.createElement ('mark'))
52 .appendChild (document.createTextNode
53 (lineText.charAt (column - 1)));
54 code.appendChild (document.createTextNode
55 (lineText.substring (column, lineText.length)));
56 } else {
57 code.appendChild (document.createTextNode
58 (lineText.substring (0, 50)));
59 }
60 p.appendChild (code);
61 p.appendChild (document.createElement ('var')).innerHTML
62 = '...';
63 }
64 } else {
65 if (column > 0) {
66 code.appendChild (document.createTextNode
67 (lineText.substring (0, column - 1)));
68 code.appendChild (document.createElement ('mark'))
69 .appendChild (document.createTextNode
70 (lineText.charAt (column - 1)));
71 code.appendChild (document.createTextNode
72 (lineText.substring (column, lineText.length)));
73 } else {
74 code.appendChild (document.createTextNode (lineText));
75 }
76 p.appendChild (code);
77 }
78 child.appendChild (p);
79 }
80 }
81 line = 0;
82 column = 0;
83 }
84 }
85 } // addSourceToParseErrorList
86
87 function insertNavSections (parentId) {
88 parentId = parentId || '';
89 var el = document.createElement ('nav');
90 el.id = parentId + 'nav-sections';
91 el.innerHTML = '<ul></ul>';
92
93 if (parentId == '') {
94 document.body.appendChild (el);
95 document.webhaccSections = {};
96 document.body.setAttribute ('data-scripted', '');
97 } else {
98 var section = document.getElementById (parentId);
99 section.appendChild (el);
100 section.webhaccSections = {};
101 }
102 } // insertNavSections
103
104 function addSectionLink (id, label, parentId) {
105 parentId = parentId || '';
106
107 var el = document.createElement ('li');
108 el.innerHTML = '<a></a>';
109 el.firstChild.href = '#' + id;
110 el.firstChild.innerHTML = label;
111 document.getElementById (parentId + 'nav-sections')
112 .firstChild.appendChild (el);
113
114 var sections = document.webhaccSections;
115 if (parentId != '') sections = sections[parentId].webhaccSections;
116 sections[id] = document.getElementById (id);
117 sections[id].tabElement = el;
118
119 if (id == 'input' || id == 'input-url') {
120 showTab (id);
121 document.webhaccNavigated = false;
122 } else if (id == 'document-info' && !document.webhaccNavigated) {
123 showTab (id);
124 document.webhaccNavigated = false;
125 } else {
126 sections[id].style.display = 'none';
127 }
128 } // addSectionLink
129
130 function showTab (id) {
131 var m;
132 if (id.match (/^line-/)) {
133 id = 'source-string';
134 } else if (id.match (/^node-/)) {
135 id = 'document-tree';
136 } else if (m = id.match (/^(subdoc-\d+-)/)) {
137 id = m[1];
138 }
139
140 if (id.match (/^input-/)) {
141 _showTab (document.webhaccSections.input.webhaccSections, id);
142 _showTab (document.webhaccSections, 'input');
143 } else {
144 _showTab (document.webhaccSections, id);
145 }
146 } // showTab
147
148 function _showTab (sections, id) {
149 if (sections[id]) {
150 for (var i in sections) {
151 sections[i].style.display = 'none';
152 sections[i].tabElement.removeAttribute ('data-active');
153 }
154 sections[id].style.display = 'block';
155 sections[id].tabElement.setAttribute ('data-active', '');
156
157 document.webhaccNavigated = true;
158 }
159 } // _showTab
160
161 function getAncestorAnchorElement (e) {
162 do {
163 if (e.nodeName == 'A') {
164 return e;
165 }
166 e = e.parentNode;
167 } while (e);
168 } // getAncestorAnchorElement
169
170 function onbodyclick (ev) {
171 var a = getAncestorAnchorElement (ev.target || ev.srcElement);
172 if (a) {
173 var href = a.getAttribute ('href');
174 if (href && href.match (/^#/)) {
175 var id = decodeURIComponent (href.substring (1));
176 showTab (id);
177 return true;
178 }
179 }
180 return true;
181 } // onbodyclick
182
183 function onbodyload () {
184 // This block should be executed at the end of initialization process,
185 // since |decodeURIComponent| might throw.
186 if (!document.webhaccNavigated) {
187 var fragment = location.hash;
188 if (fragment) {
189 var id = decodeURIComponent (fragment.substring (1));
190 showTab (id);
191 } else if (document.webhaccSections['result-summary']) {
192 showTab ('result-summary');
193 } else {
194 showTab ('input');
195 }
196 }
197 } // onbodyload
198
199 // $Date: 2008/08/10 11:49:43 $

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24