Changeset 2259
- Timestamp:
- Feb 28, 2014, 2:20:18 PM (9 years ago)
- Location:
- extensions/net.sf.basedb.yubikey/trunk
- Files:
-
- 6 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.yubikey/trunk/.classpath
r2256 r2259 6 6 <classpathentry kind="lib" path="META-INF/lib/yubico-validation-client2-2.0.1.jar"/> 7 7 <classpathentry kind="lib" path="lib/base-webclient-3.3.0.jar"/> 8 <classpathentry kind="lib" path="lib/servlet-api.jar"/> 9 <classpathentry kind="lib" path="lib/json_simple-1.1.jar"/> 8 10 <classpathentry kind="output" path="bin"/> 9 11 </classpath> -
extensions/net.sf.basedb.yubikey/trunk/META-INF/extensions.xml
r2256 r2259 19 19 > 20 20 <about> 21 <name> UbiKey authentication manager</name>21 <name>YubiKey authentication manager</name> 22 22 </about> 23 23 <index>1</index> … … 32 32 > 33 33 <about> 34 <name> UbiKey login form</name>34 <name>YubiKey login form</name> 35 35 </about> 36 36 <index>1</index> … … 41 41 </parameters> 42 42 </action-factory> 43 44 43 </extension> 44 45 <extension 46 id="net.sf.basedb.yubikey.user-edit" 47 extends="net.sf.basedb.clients.web.tabcontrol.edit.user" 48 > 49 <about> 50 <name>YubiKey tab in user edit dialog</name> 51 </about> 52 <index>1</index> 53 <action-factory> 54 <factory-class> 55 net.sf.basedb.clients.web.extensions.tabcontrol.IncludeContentTabFactory 56 </factory-class> 57 <parameters> 58 <id>yubikey-tab</id> 59 <title>YubiKey</title> 60 <tooltip>Assign a YubiKey to the user</tooltip> 61 <include>~/edit-user.jsp</include> 62 <stylesheet>~/css/yubico.css</stylesheet> 63 <script>~/edit-user.js</script> 64 </parameters> 65 </action-factory> 66 </extension> 67 45 68 46 69 </extensions> -
extensions/net.sf.basedb.yubikey/trunk/lib
- Property svn:ignore
-
old new 1 *.jar1 base-*.jar
-
- Property svn:ignore
-
extensions/net.sf.basedb.yubikey/trunk/resources/css/yubico.css
r2256 r2259 17 17 min-height: 60px; 18 18 } 19 20 #settings\.yubikey-tab 21 { 22 background-image: url('../images/yubico.png'); 23 background-position: 2px center; 24 background-repeat: no-repeat; 25 padding-left: 20px; 26 } 27 28 #settings\.yubikey-tab:hover, #settings\.yubikey-tab.active 29 { 30 background-position: 1px center; 31 padding-left: 19px; 32 } -
extensions/net.sf.basedb.yubikey/trunk/src/net/sf/basedb/yubikey/YubiKeyAuthenticationManager.java
r2258 r2259 107 107 { 108 108 // Verify the one-time-password using the YubiCloud service 109 YubicoClient ybClient = null;110 109 YubicoResponse response = null; 111 110 try
Note: See TracChangeset
for help on using the changeset viewer.