Overview
| Comment: | ChromeOS: Added certificate usage information to bare UI | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 833f48f8545683856fe5b3789a8e96b7 | 
| User & Date: | rkeene on 2016-02-29 04:32:16 | 
| Other Links: | manifest | tags | 
Context
| 2016-02-29 | ||
| 04:32 | ChromeOS: Release 5 check-in: 30263e48a3 user: rkeene tags: trunk | |
| 04:32 | ChromeOS: Added certificate usage information to bare UI check-in: 833f48f854 user: rkeene tags: trunk | |
| 2016-02-28 | ||
| 22:37 | ChromeOS: Added basic UI page that shows certificates check-in: 1a6c58edd1 user: rkeene tags: trunk | |
Changes
Modified build/chrome/ui.js from [f3ee58ea69] to [02acf47905].
| 1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | + + + + + + - + - + + + + + + + | 
var globalCerts = null;
function displayCerts(htmlObject, certs) {
	var html = "";
	var idx;
	var cert;
	var certObj;
	if (certs.length == 0) {
		htmlObject.innerHTML = "<b>No certificates found</b>";
		return;
	}
	certObj = new X509;
 | 
| ︙ |