/[suikacvs]/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.10 - (hide annotations) (download) (as text)
Sat Aug 16 07:42:20 2008 UTC (15 years, 9 months ago) by wakaba
Branch: MAIN
Changes since 1.9: +5 -1 lines
File MIME type: application/javascript
++ ChangeLog	16 Aug 2008 07:38:01 -0000
	* cc-script.js: Support for #index- fragment identifiers.

	* cc-style.css: Prety styling for reformatted sources.
	Support for new version of manifest dump sections.

	* error-description-source.xml: Support for Whatpm::CacheManifest,
	Whatpm::CSS::SelectorsParser, Whatpm::CSS::MediaQueryParser,
	and Whatpm::CSS::Parser errors.  Support for l10n of cache
	manifest dump sections.

2008-08-16  Wakaba  <wakaba@suika.fam.cx>

++ html/WebHACC/Language/ChangeLog	16 Aug 2008 07:42:17 -0000
	* CSS.pm, CacheManifest.pm, HTML.pm, XML.pm: Use ->url attribute to
	obtain the URL of the document.

	* CacheManifest.pm (generate_structure_dump_section): It is
	now i18n'ed.  In addition, since URLs are tend to be long,
	tables for fallback entries are replaced by |dd| entries and
	paragraphs.  "No entry" message is now handled by catalog,
	rather than CSS.

2008-08-16  Wakaba  <wakaba@suika.fam.cx>

++ html/WebHACC/ChangeLog	16 Aug 2008 07:39:54 -0000
	* Input.pm (Subdocument new): Invoke superclass's new method
	such that |urls| attribute is initialized.

	* Result.pm (add_error): Use ->url attribute to obtain
	the URL of the document.  No longer output |text| argument,
	since all error types except for those used in the WebIDL module
	are now defined in the catalog.

2008-08-16  Wakaba  <wakaba@suika.fam.cx>

1 wakaba 1.4 function addSourceToParseErrorList (idPrefix, dlId) {
2 wakaba 1.1 var parseErrorsList = document.getElementById
3 wakaba 1.4 (idPrefix + dlId);
4 wakaba 1.1 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 wakaba 1.5 line = parseInt (child.getAttribute ('data-line') || 0);
14     column = parseInt (child.getAttribute ('data-column') || 0);
15 wakaba 1.1 } 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 wakaba 1.3 .replace (/<var>U\+([0-9A-F]{4})<\/var>/g, function (s) {
21     return String.fromCharCode (parseInt (s, 16));
22     })
23 wakaba 1.1 .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 wakaba 1.2 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 wakaba 1.1 p.appendChild (code);
77     }
78     child.appendChild (p);
79     }
80     }
81     line = 0;
82     column = 0;
83     }
84     }
85     } // addSourceToParseErrorList
86    
87 wakaba 1.7 function insertNavSections (parentId) {
88     parentId = parentId || '';
89 wakaba 1.6 var el = document.createElement ('nav');
90 wakaba 1.7 el.id = parentId + 'nav-sections';
91 wakaba 1.6 el.innerHTML = '<ul></ul>';
92 wakaba 1.7
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 wakaba 1.6 } // insertNavSections
103    
104 wakaba 1.7 function addSectionLink (id, label, parentId) {
105     parentId = parentId || '';
106    
107 wakaba 1.6 var el = document.createElement ('li');
108     el.innerHTML = '<a></a>';
109     el.firstChild.href = '#' + id;
110     el.firstChild.innerHTML = label;
111 wakaba 1.7 document.getElementById (parentId + 'nav-sections')
112     .firstChild.appendChild (el);
113    
114     var sections = document.webhaccSections;
115 wakaba 1.8 if (parentId != '') {
116     sections = document.getElementById (parentId).webhaccSections;
117     }
118 wakaba 1.7 sections[id] = document.getElementById (id);
119     sections[id].tabElement = el;
120    
121     if (id == 'input' || id == 'input-url') {
122     showTab (id);
123     document.webhaccNavigated = false;
124 wakaba 1.6 } else if (id == 'document-info' && !document.webhaccNavigated) {
125 wakaba 1.7 showTab (id);
126 wakaba 1.6 document.webhaccNavigated = false;
127 wakaba 1.8 } else if (id.match (/-document-info$/)) {
128     sections[id].tabElement.setAttribute ('data-active', '');
129 wakaba 1.6 } else {
130 wakaba 1.7 sections[id].style.display = 'none';
131 wakaba 1.6 }
132     } // addSectionLink
133    
134     function showTab (id) {
135 wakaba 1.8 var ids = [];
136 wakaba 1.6 if (id.match (/^line-/)) {
137 wakaba 1.8 ids = ['source-string'];
138 wakaba 1.6 } else if (id.match (/^node-/)) {
139 wakaba 1.8 ids = ['document-tree'];
140 wakaba 1.10 } else if (id.match (/^index-/)) {
141     ids = ['document-structure'];
142 wakaba 1.8 } else if (id.match (/^subdoc-[^-]+-/)) {
143     var m;
144     ids = [''];
145     while (true) {
146     if (m = id.match (/^subdoc-[^-]+-/)) {
147     ids.push (ids[ids.length - 1] + m[0]);
148     id = id.substring (m[0].length);
149     } else {
150     break;
151     }
152     }
153     if (id.length > 0) {
154     if (id.match (/^line-/)) {
155     ids.push (ids[ids.length - 1] + 'source-string');
156     } else if (id.match (/^node-/)) {
157     ids.push (ids[ids.length - 1] + 'document-tree');
158 wakaba 1.10 } else if (id.match (/^index-/)) {
159     ids.push (ids[ids.length - 1] + 'document-structure');
160 wakaba 1.8 } else {
161     ids.push (ids[ids.length - 1] + id);
162     }
163     }
164     ids.shift (); // ''
165     } else if (id.match (/^input-/)) {
166     ids = ['input', id];
167     } else {
168     ids = [id];
169 wakaba 1.6 }
170    
171 wakaba 1.8 var sections = document.webhaccSections;
172     while (ids.length > 0) {
173     var myid = ids.shift ();
174     _showTab (sections, myid);
175     sections = sections[myid].webhaccSections;
176     if (!sections) break;
177 wakaba 1.7 }
178     } // showTab
179    
180     function _showTab (sections, id) {
181     if (sections[id]) {
182     for (var i in sections) {
183     sections[i].style.display = 'none';
184     sections[i].tabElement.removeAttribute ('data-active');
185 wakaba 1.6 }
186 wakaba 1.7 sections[id].style.display = 'block';
187     sections[id].tabElement.setAttribute ('data-active', '');
188 wakaba 1.9 sections[id].tabElement.scrollIntoView ();
189 wakaba 1.6
190     document.webhaccNavigated = true;
191     }
192 wakaba 1.7 } // _showTab
193 wakaba 1.6
194     function getAncestorAnchorElement (e) {
195     do {
196 wakaba 1.8 if (e.nodeName == 'A' || e.nodeName == 'AREA') {
197 wakaba 1.6 return e;
198     }
199     e = e.parentNode;
200     } while (e);
201     } // getAncestorAnchorElement
202    
203     function onbodyclick (ev) {
204     var a = getAncestorAnchorElement (ev.target || ev.srcElement);
205     if (a) {
206     var href = a.getAttribute ('href');
207     if (href && href.match (/^#/)) {
208     var id = decodeURIComponent (href.substring (1));
209     showTab (id);
210     return true;
211     }
212     }
213     return true;
214     } // onbodyclick
215    
216     function onbodyload () {
217     // This block should be executed at the end of initialization process,
218     // since |decodeURIComponent| might throw.
219     if (!document.webhaccNavigated) {
220     var fragment = location.hash;
221     if (fragment) {
222     var id = decodeURIComponent (fragment.substring (1));
223     showTab (id);
224 wakaba 1.8 var el = document.getElementById (id);
225     if (el) el.scrollIntoView ();
226 wakaba 1.6 } else if (document.webhaccSections['result-summary']) {
227     showTab ('result-summary');
228     } else {
229     showTab ('input');
230     }
231     }
232     } // onbodyload
233    
234 wakaba 1.10 // $Date: 2008/08/15 16:44:03 $

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24