Overview
Comment: | ChromeOS: Added start of PIN entry dialog |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 32182121df211f557d0358e158f383ff89029ef2 |
User & Date: | rkeene on 2016-02-13 07:19:46 |
Other Links: | manifest | tags |
Context
2016-02-13
| ||
10:05 | ChromeOS: Made PIN entry dialog much more robust check-in: 2c6a5fb7dd user: rkeene tags: trunk | |
07:19 | ChromeOS: Added start of PIN entry dialog check-in: 32182121df user: rkeene tags: trunk | |
2016-02-12
| ||
16:16 | ChromeOS: Updated comments in the NaCl-to-JavaScript bridge check-in: 891997b798 user: rkeene tags: trunk | |
Changes
Modified build/chrome/Makefile from [8c559dd520] to [d4c1056478].
24 24 ifeq (,${NACL_SDK_ROOT}) 25 25 $(error "Please set NACL_SDK_ROOT") 26 26 endif 27 27 export NACL_SDK_ROOT 28 28 29 29 all: cackey.crx 30 30 31 -cackey.crx: cackey.pexe cackey.nmf manifest.json cackey.js google-pcsc.js 31 +cackey.crx: cackey.pexe cackey.nmf manifest.json cackey.js google-pcsc.js pin.html pin-icon.png 32 32 rm -f cackey.crx 33 33 zip cackey.crx.new $^ 34 34 mv cackey.crx.new cackey.crx 35 35 36 36 cackey.pexe: cackey-chrome.o cackey-chrome-init.o lib/libcackey.a lib/libpcsc.a lib/libz.a 37 37 $(CXX) $(CXXFLAGS) $(LDFLAGS) -o cackey.pexe.new cackey-chrome.o cackey-chrome-init.o $(LIBS) 38 38 $(FINALIZE) cackey.pexe.new
Modified build/chrome/manifest.json from [76848f086c] to [ceb805c9f7].
10 10 "cackey.js" 11 11 ], 12 12 "persistent": false 13 13 } 14 14 }, 15 15 16 16 "permissions": [ 17 - "certificateProvider" 17 + "certificateProvider", 18 + "alwaysOnTopWindows" 18 19 ] 19 20 }
Added build/chrome/pin-icon.png version [28c451a952].
cannot compute difference between binary files
Added build/chrome/pin-icon.xcf version [23c8b14527].
cannot compute difference between binary files
Added build/chrome/pin.html version [fee4932709].
1 +<html> 2 + <head> 3 + <title>CACKey PIN Entry</title> 4 + </head> 5 + <body bgcolor="#e4e4e4" color="#000000"> 6 + <form> 7 + <table width="100%" border="0" cellspacing="5" cellpadding="0"> 8 + <tr width="100%" align="left" valign="bottom"> 9 + <td rowspan="4"><img src="pin-icon.png" alt=""></td> 10 + </tr> 11 + <tr width="100%" align="left" valign="bottom"> 12 + <td></td> 13 + <td colspan="2"><div id="prompt" style="font-size: 0.8em;">PIN Entry Required</div></td> 14 + </tr> 15 + <tr width="100%" align="left" valign="center"> 16 + <td></td> 17 + <td>PIN:</td> 18 + <td><input type="password" name="pin" id="pin" style="width: 100%;"></td> 19 + </tr> 20 + <tr width="100%" align="right" valign="top"> 21 + <td></td> 22 + <td colspan="2"> 23 + <input type="button" class="button" name="ok" id="ok" value="OK" style="min-width: 4em;"> 24 + <input type="button" class="button" name="cancel" id="cancel" value="Cancel" style="min-width: 4em;"> 25 + </td> 26 + </tr> 27 + </table> 28 + </form> 29 + </body> 30 +</html>