Bugzilla – Attachment 127385 Details for
Bug 27741
Accessibility: Staff Client - Headings should have correct tags and hierarchy
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27741: about.tt
Bug-27741-abouttt.patch (text/plain), 22.69 KB, created by
Owen Leonard
on 2021-11-05 14:58:44 UTC
(
hide
)
Description:
Bug 27741: about.tt
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2021-11-05 14:58:44 UTC
Size:
22.69 KB
patch
obsolete
>From ed00d0ddc6803c9a1c19c8114bfe2db46fd6bb7e Mon Sep 17 00:00:00 2001 >From: Wainui Witika-Park <wainuiwitikapark@catalyst.net.nz> >Date: Sun, 6 Jun 2021 06:52:12 +0000 >Subject: [PATCH] Bug 27741: about.tt > >Bug 27631 corrected the <h1> tags in each of the pages in the staff client. This >bug deals with correcting the hierarchy of each of the other headings. > >To test: >1) Apply patch and dependencies >2) Go to each of the pages and check the headings under <h1> are in the >correct order and hierarchy > >Sponsored-by: Catalyst IT > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >--- > .../intranet-tmpl/prog/en/modules/about.tt | 123 +++++++++--------- > 1 file changed, 63 insertions(+), 60 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >index 3b5a3ae6b8..d763f9a9bb 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >@@ -41,7 +41,7 @@ > <div id="about"> > > <table> >- <caption>Server information</caption> >+ <caption><h2>Server information</h2></caption> > <tr><th scope="row">Koha version: </th><td>[% kohaVersion | html %]</td></tr> > <tr><th scope="row">OS version ('uname -a'): </th><td>[% osVersion | html %]</td></tr> > <tr><th scope="row">Perl interpreter: </th><td>[% perlPath | html %]</td></tr> >@@ -173,7 +173,7 @@ > </div> > <div id="perl"> > <table style="cursor:pointer"> >- <caption>Perl modules</caption> >+ <caption><h2>Perl modules</h2></caption> > [% FOREACH tabl IN table %] > <tr> > [% FOREACH ro IN tabl.row %] >@@ -215,15 +215,16 @@ > </div> > > <div id="sysinfo"> >+ <h2>System information</h2> > [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || invalid_yesno.count || warnNoActiveCurrency || warnIsRootUser || xml_config_warnings.size || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || has_ai_issues || oauth2_missing_deps || bad_yaml_prefs || warnRelationships || log4perl_errors || config_bcrypt_settings_no_set || warnHiddenBiblionumbers.size || warnConnectBroker %] > [% IF (warnIsRootUser) %] >- <h2>Warning regarding current user</h2> >+ <h3>Warning regarding current user</h3> > <p>You are logged in as the database administrative user. This is not recommended because some parts of Koha will not function as expected when using this account.</p> > <p>Please log in instead with a regular staff account. To create a staff account, create a library, a patron category 'Staff' and add a new patron. Then give this patron permissions from 'More' in the toolbar.</p> > [% END %] > > [% IF has_ai_issues %] >- <h2>Data problems</h2> >+ <h3>Data problems</h3> > <p>Some of your tables have problems with their auto_increment values which may lead to data loss.</p> > <p><strong>You should not ignore this warning.</strong></p> > <p>The problem is that InnoDB does not keep auto_increment across SQL server restarts (it is only set in memory). So on server startup the auto_increment values are set to max(table.id)+1.</p> >@@ -231,29 +232,29 @@ > <a href="https://wiki.koha-community.org/wiki/DBMS_auto_increment_fix">DBMS auto increment fix</a> > </p> > >- <h3>Problems found</h3> >+ <h4>Problems found</h4> > [% IF ai_patrons %] >- <h4>Patrons</h4> >+ <h5>Patrons</h5> > <p>The following ids exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:</p> > <p>[% FOR p IN ai_patrons %][% p.borrowernumber | html %][% UNLESS loop.last %], [% END %][% END %]</p> > [% END %] > [% IF ai_biblios %] >- <h4>Bibliographic records</h4> >+ <h5>Bibliographic records</h5> > <p>The following ids exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:</p> > <p>[% FOR b IN ai_biblios %][% b.biblionumber | html %][% UNLESS loop.last %], [% END %][% END %]</p> > [% END %] > [% IF ai_items %] >- <h4>Items</h4> >+ <h5>Items</h5> > <p>The following ids exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:</p> > <p>[% FOR i IN ai_items %][% i.itemnumber | html %][% UNLESS loop.last %], [% END %][% END %]</p> > [% END %] > [% IF ai_checkouts %] >- <h4>Checkouts</h4> >+ <h5>Checkouts</h5> > <p>The following ids exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:</p> > <p>[% FOR c IN ai_checkouts %][% c.issue_id | html %][% UNLESS loop.last %], [% END %][% END %]</p> > [% END %] > [% IF ai_holds %] >- <h4>Holds</h4> >+ <h5>Holds</h5> > <p>The following ids exist in both tables [% "reserves" | $HtmlTags tag="strong" %] and [% "old_reserves" | $HtmlTags tag="strong" %]:</p> > <p>[% FOR h IN ai_holds %][% h.reserve_id | html %][% UNLESS loop.last %], [% END %][% END %]</p> > [% END %] >@@ -261,7 +262,7 @@ > [% END %] > > [% IF warnRelationships %] >- <h2>Patron relationship problems</h2> >+ <h3>Patron relationship problems</h3> > [% IF bad_relationships_count %] > <p>Your database contained guarantee/guarantor pairs with no defined relationship. They have been set the value '_bad_data' in the [% "borrowers.relationship" | $HtmlTags tag="strong" %] and/or [% "borrower_relationships.relationship" | $HtmlTags tag="strong" %] columns. Fix them manually by recreating those relationships, or have your system's administrator correct the values.</p> > [% END %] >@@ -278,7 +279,7 @@ > [% END %] > > [% IF log4perl_errors %] >- <h2>Logging system does not behave correctly</h2> >+ <h3>Logging system does not behave correctly</h3> > [% FOR e IN log4perl_errors %] > [% SWITCH e %] > [% CASE 'missing_config_entry' %]There is no 'log4perl_conf' entry in the config file. >@@ -291,7 +292,7 @@ > [% END %] > > [% IF warnConnectBroker %] >- <h2>Impossible to connect to the message broker</h2> >+ <h3>Impossible to connect to the message broker</h3> > There is an error when trying to connect to the message broker (RabbitMQ), check the Koha log files. > <br/> > Maybe it is not installed and configured correctly? >@@ -300,7 +301,7 @@ > [% END %] > > [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || invalid_yesno.count || warnNoActiveCurrency || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || warnXSLT || oauth2_missing_deps || bad_yaml_prefs || warnIssuingRules || config_bcrypt_settings_no_set || warnHiddenBiblionumbers.size %] >- <h2>Warnings regarding the system configuration</h2> >+ <h3>Warnings regarding the system configuration</h3> > <table> > <caption>Preferences and parameters</caption> > [% IF (warnPrefBiblioAddsAuthorities) %] >@@ -509,7 +510,8 @@ > </div> > > <div id="team"> >- <h2>Special thanks to the following organizations</h2> >+ <h2>Koha team</h2> >+ <h3>Special thanks to the following organizations</h3> > <ul> > <li><a href="http://library.org.nz">Horowhenua Library Trust</a>, New Zealand, and Rosalie Blake, Head of Libraries, (Koha 1.0)</li> > <li>The <a href="http://www.myacpl.org/">Athens County Public Libraries</a>, Ohio, USA (MARC sponsorship, documentation, template maintenance)</li> >@@ -524,11 +526,11 @@ > <li><a href="http://www.ashs.school.nz/">Albany Senior High School</a>, Auckland, New Zealand (OPAC 'star-ratings' sponsorship)</li> > </ul> > >- <h2>Koha release teams</h2> >+ <h3>Koha release teams</h3> > [% IF maintenance_team %] > <div class="row"> > <div class="col-md-6"> >- <h3>Koha [% short_version | html %] release team</h3> >+ <h4>Koha [% short_version | html %] release team</h4> > [% IF development_version %] > <p>You are running a development version of Koha</p> > [% ELSE %] >@@ -537,7 +539,7 @@ > </div> > > <div class="col-md-6"> >- <h3>Current maintenance team</h3> >+ <h4>Current maintenance team</h4> > [% INCLUDE team t=maintenance_team v=short_version %] > </div> > </div> >@@ -547,7 +549,7 @@ > </div> > [% END %] > >- <h2>Koha development team</h2> >+ <h3>Koha development team</h3> > [% IF contributors.size %] > <ul class="columns-4"> > [% FOREACH contributor IN contributors %] >@@ -561,7 +563,7 @@ > [% END %] > <hr> > >- <h2>Contributing companies and institutions</h2> >+ <h3>Contributing companies and institutions</h3> > <ul class="columns-4"> > <li>Allen Ginsberg Library, USA</li> > <li>AlingsÃ¥s Public Library, Sweden</li> >@@ -666,7 +668,7 @@ > <li>Xercode, Spain</li> > </ul> > >- <h2>Additional thanks to...</h2> >+ <h3>Additional thanks to...</h3> > <ul> > <li>Irma Birchall</li> > <li>Rachel Hamilton-Williams (Kaitiaki from 2004 to present)</li> >@@ -679,29 +681,30 @@ > </div> > > <div id="licenses"> >- <h2>Koha</h2> >+ <h2>Licenses</h2> >+ <h3>Koha</h3> > <p> > <a href="http://www.gnu.org/licenses/gpl-3.0.html">Koha is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.</a> > </p> >- <h2>jQuery and jQueryUI</h2> >+ <h3>jQuery and jQueryUI</h3> > <p><a href="http://jquery.com/">jQuery</a> and <a href="http://jqueryui.com/">jQueryUI</a> are licensed under the <a href="http://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt">MIT license</a></p> > >- <h2>Bootstrap</h2> >+ <h3>Bootstrap</h3> > <p><a href="https://getbootstrap.com/">Bootstrap</a> code and <a href="http://glyphicons.com">Glyphicons Free</a> licensed under the <a href="https://github.com/twbs/bootstrap/blob/master/LICENSE">MIT license</a>.</p> > >- <h2>Bootstrap Icons</h2> >+ <h3>Bootstrap Icons</h3> > <p><a href="https://icons.getbootstrap.com/">Bootstrap Icons</a> licensed under the <a href="https://github.com/twbs/icons/blob/main/LICENSE.md">MIT license</a>.</p> > >- <h2>YUI</h2> >+ <h3>YUI</h3> > <p> > <a href="http://yuilibrary.com/license/">BSD License</a> > </p> >- <h2>Famfamfam iconset</h2> >+ <h3>Famfamfam iconset</h3> > <ul> > <li><a href="http://www.famfamfam.com/lab/icons/silk/">FamFamFam Site</a></li> > <li><a href="http://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License</a></li> > </ul> >- <h2>The Bridge Material Type Icon Set</h2> >+ <h3>The Bridge Material Type Icon Set</h3> > <ul> > <li><a href="http://apps.carleton.edu/campus/library/bridge_icons/">Bridge Material Type Icons Project</a></li> > <li>The Bridge Material Type Icon Set is licensed under a >@@ -709,110 +712,110 @@ > by the Bridge Consortium of Carleton College and St. Olaf College.</li> > </ul> > >- <h2>jQuery Bar Rating Plugin</h2> >+ <h3>jQuery Bar Rating Plugin</h3> > <p>jQuery Bar Rating Plugin v1.22 by <a href="http://antenna.io/demo/jquery-bar-rating/examples/">Antenna.io</a> is licensed under the <a href="http://en.wikipedia.org/wiki/MIT_License">MIT License</a>.</p> > > <p>Copyright © 2012-2016 <a href="http://antenna.io">Kazik Pietruszewski</a></p> > >- <h2>jQuery insertAtCaret Plugin</h2> >+ <h3>jQuery insertAtCaret Plugin</h3> > <p>jQuery insertAtCaret Plugin v1.0 by the phpMyAdmin devel team is licensed under the <a href="http://www.gnu.org/licenses/gpl.html">GPL License</a>.</p> > > <p>Copyright © 2003-2010 phpMyAdmin devel team</p> > >- <h2>jQuery treetable Plugin</h2> >+ <h3>jQuery treetable Plugin</h3> > > <p>The <a href="http://ludo.cubicphuse.nl/jquery-treetable/">jQuery treetable Plugin 3.1.0</a> is released under MIT license by Ludo van den Boom.</p> > >- <h2>OpenJS Keyboard Shortcuts Library</h2> >+ <h3>OpenJS Keyboard Shortcuts Library</h3> > > <p>The <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">OpenJS keyboard shortcuts library</a> > by Binny V A is licensed under the BSD license.</p> > >- <h2>jquery.dataTables.grouping.js</h2> >+ <h3>jquery.dataTables.grouping.js</h3> > <p>The <a href="https://code.google.com/p/jquery-datatables-row-grouping/">jquery.dataTables.grouping.js</a> > plugin by Jovan Popovic is licensed under the BSD and GPL v2 license.</p> > >- <h2>jQuery Colvis plugin</h2> >+ <h3>jQuery Colvis plugin</h3> > <p>The <a href="http://datatables.net/extensions/colvis/">controls for column visiblity in DataTables</a> > by Allan Jardine is licensed under the BSD 3 and GPL v2 license.</p> > >- <h2>jquery.multiple.select.js</h2> >+ <h3>jquery.multiple.select.js</h3> > <p>The <a href="http://wenzhixin.net.cn/p/multiple-select/">jQuery multiple select plugin</a> > by Zhixin Wen is licensed under the MIT license.</p> > >- <h2>Javascript Diff Algorithm</h2> >+ <h3>Javascript Diff Algorithm</h3> > <p>The <a href="http://ejohn.org/projects/javascript-diff-algorithm/">Javascript Diff Algorithm</a> plugin by John Resig is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.</p> > >- <h2>jQuery Validation Plugin</h2> >+ <h3>jQuery Validation Plugin</h3> > <p>The <a href="http://jqueryvalidation.org/">jQuery Validation Plugin</a> written and maintained by Jörn Zaefferer is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.</p> > >- <h2>TinyMCE WYSIWYG editor</h2> >+ <h3>TinyMCE WYSIWYG editor</h3> > <p>The <a href="https://www.tiny.cloud/">TinyMCE WYSIWYG editor v5.9.2 </a> by Tiny Technologies, Inc. is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt">LGPL v2.1</a>.</p> > >- <h2>Font Awesome</h2> >+ <h3>Font Awesome</h3> > <p><a href="http://fontawesome.io">Font Awesome</a> by Dave Gandy is licensed under the <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a> and the <a href="http://opensource.org/licenses/mit-license.html">MIT License</a>.</p> > >- <h2>CodeMirror editing library</h2> >+ <h3>CodeMirror editing library</h3> > <p>The <a href="http://codemirror.net/">CodeMirror editing library</a> by Marijn Haverbeke is licensed under an <a href="http://codemirror.net/LICENSE">MIT license</a>.</p> > >- <h2>FileSaver library</h2> >+ <h3>FileSaver library</h3> > <p>The <a href="https://github.com/eligrey/FileSaver.js/">FileSaver library</a> by Eli Grey is licensed under an <a href="https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md">MIT license</a>.</p> > >- <h2>Require.js JS module system</h2> >+ <h3>Require.js JS module system</h3> > <p>The <a href="http://requirejs.org/">Require.js JS module system</a> by The Dojo Foundation is licensed under an <a href="https://github.com/jrburke/requirejs/blob/master/LICENSE">MIT license</a>.</p> > >- <h2>OAI xslt stylesheet</h2> >+ <h3>OAI xslt stylesheet</h3> > <p>The included OAI.xslt file by the <a href="http://dspace.org/">DSpace project</a> is licensed under a <a href="http://www.dspace.org/license/">BSD License</a>.</p> > >- <h2>OpenAPI 2.0 schema</h2> >+ <h3>OpenAPI 3.0 schema</h3> > <p>The included <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/schemas/v2.0/schema.json">api/swagger-v2-schema.json</a> file is licensed under the <a href="https://github.com/OAI/OpenAPI-Specification/tree/master/schemas/v2.0">Apache License, Version 2.0</a>, by the <a href="https://www.openapis.org/about">OpenAPI Initiative (OAI)</a>.</p> > >- <h2>Select2</h2> >+ <h3>Select3</h3> > <p>The <a href="http://select2.github.io/select2/">Select2</a> library is licensed under <a href="https://github.com/select2/select2/blob/stable/3.5/LICENSE">the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License")</a>.</p> > >- <h2>jquery.tablednd.js</h2> >+ <h3>jquery.tablednd.js</h3> > <p>The <a href="https://github.com/isocra/TableDnD">TableDnD plug-in for jQuery</a> by Denis Howlett is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.</p> > >- <h2>Leaflet</h2> >+ <h3>Leaflet</h3> > <p>The <a href="http://leafletjs.com">Leaflet</a> JavaScript library by Vladimir Agafonkinis licensed under the <a href="https://github.com/Leaflet/Leaflet/blob/master/LICENSE">BSD License</a>.</p> > >- <h2>jquery.emojiarea.js</h2> >+ <h3>jquery.emojiarea.js</h3> > <p>The <a href="https://github.com/diy/jquery-emojiarea">Emojiarea plug-in for jQuery</a> by DIY Co is licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">the Apache License, Version 2.0</a>.</p> > >- <h2>JSZip</h2> >+ <h3>JSZip</h3> > <p>The <a href="https://stuk.github.io/jszip/">JSZip</a> JavaScript library is licensed under both the <a href="https://github.com/Stuk/jszip/blob/master/LICENSE.markdown">MIT and GPLv3 Licenses</a>.</p> > >- <h2>D3.js</h2> >+ <h3>D3.js</h3> > <p><a href="https://d3js.org/">D3.js v3.5.17</a> is a JavaScript library for manipulating documents based on data. It is under the <a href="https://github.com/d3/d3/blob/master/LICENSE">BSD 3-clause Licence</a></p> > >- <h2>C3.js</h2> >+ <h3>C3.js</h3> > <p><a href="http://c3js.org/">C3.js v0.4.11</a> is a D3-based reusable chart library under the <a href="https://opensource.org/licenses/mit-license.php">MIT licence</a></p> > >- <h2>Font Face Observer</h2> >+ <h3>Font Face Observer</h3> > <p><a href="https://github.com/bramstein/fontfaceobserver">Font Face Observer</a> is a JavaScript library by Bram Stein licensed under the <a href="https://github.com/bramstein/fontfaceobserver/blob/master/LICENSE">BSD License</a>.</p> > >- <h2>Noto fonts</h2> >+ <h3>Noto fonts</h3> > <p><a href="https://github.com/googlei18n/noto-fonts">Noto</a> by Google is a family of fonts licensed under the <a href="http://scripts.sil.org/OFL">SIL Open Font License (OFL) v1.1</a>.</p> > >- <h2>HC Sticky</h2> >+ <h3>HC Sticky</h3> > <p><a href="http://somewebmedia.com/hc-sticky/">HC Sticky</a> by Some Web Media is a JavaScript library that makes any element on your page visible while you scroll, licensed under the <a href="https://github.com/somewebmedia/hc-sticky/blob/master/LICENSE">MIT license</a>.</p> > >- <h2>kjua</h2> >+ <h3>kjua</h3> > <p><a href="https://larsjung.de/kjua/">kjua</a> by Lars Jung is a JavaScript library that generates QR codes, licensed under the <a href="https://github.com/lrsjng/kjua/blob/master/README.md">MIT license</a>.</p> > >- <h2>Verovio</h2> >+ <h3>Verovio</h3> > <p><a href="https://www.verovio.org/index.xhtml">Verovio is developed by the Swiss RISM Office with the support of the Swiss National Science Foundation, licensed under the <a href="http://www.gnu.org/licenses/lgpl-3.0.html">LGPL v3.0</a>.</p> > >- <h2>jquery.cookie</h2> >+ <h3>jquery.cookie</h3> > <p><a href="https://github.com/carhartl/jquery-cookie">jquery.cookie</a> by Klaus Hartl is a jQuery plugin for setting, reading, and deleting browser cookies, licensed under the <a href="https://github.com/carhartl/jquery-cookie/blob/master/MIT-LICENSE.txt">MIT license</a>.</p> > >- <h2>JavaScript Cookie</h2> >+ <h3>JavaScript Cookie</h3> > <p><a href="https://github.com/js-cookie/js-cookie">JavaScript Cookie</a> is a "simple, lightweight JavaScript API for handling cookies," licensed under the <a href="https://github.com/js-cookie/js-cookie/blob/master/LICENSE">MIT license</a>.</p> > >- <h2>Moment.js</h2> >+ <h3>Moment.js</h3> > <p><a href="https://momentjs.com/">Moment.js</a> licensed under the <a href="https://github.com/moment/moment/blob/develop/LICENSE">MIT license</a>.</p> > >- <h2>Chocolat.js</h2> >+ <h3>Chocolat.js</h3> > <p><a href="http://chocolat.insipi.de">Chocolat.js</a> licensed under the <a href="https://github.com/nicolas-t/Chocolat/blob/master/LICENSE">GPL v3 license</a>.</p> > > </div> >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 27741
:
120192
|
120193
|
120194
|
120195
|
120197
|
120198
|
121344
|
121346
|
121347
|
121348
|
121349
|
121350
|
121351
|
121357
|
121358
|
121365
|
121400
|
121402
|
121403
|
121404
|
121509
|
121510
|
121521
|
121534
|
121560
|
121622
|
121642
|
121643
|
121644
|
121645
|
121646
|
121699
|
121700
|
121701
|
122018
|
127369
|
127370
|
127371
|
127372
|
127373
|
127374
|
127375
|
127376
|
127377
|
127378
|
127379
|
127380
|
127381
|
127382
|
127383
|
127384
| 127385 |
127386
|
127387
|
127388
|
127389
|
127390
|
127391
|
127392
|
127393
|
127394
|
127395