Changeset 2256
- Timestamp:
- Feb 27, 2014, 11:18:36 AM (9 years ago)
- Location:
- extensions/net.sf.basedb.yubikey/trunk
- Files:
-
- 7 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.yubikey/trunk/.classpath
r2252 r2256 5 5 <classpathentry kind="lib" path="lib/base-core-3.3.0.jar"/> 6 6 <classpathentry kind="lib" path="META-INF/lib/yubico-validation-client2-2.0.1.jar"/> 7 <classpathentry kind="lib" path="lib/base-webclient-3.3.0.jar"/> 7 8 <classpathentry kind="output" path="bin"/> 8 9 </classpath> -
extensions/net.sf.basedb.yubikey/trunk/META-INF/extensions.xml
r2252 r2256 25 25 <factory-class>net.sf.basedb.yubikey.YubiKeyAuthenticationManagerFactory</factory-class> 26 26 </action-factory> 27 </extension> 28 29 <extension 30 id="net.sf.basedb.yubikey.login-form" 31 extends="net.sf.basedb.clients.web.login-form" 32 > 33 <about> 34 <name>UbiKey login form</name> 35 </about> 36 <index>1</index> 37 <action-factory> 38 <factory-class>net.sf.basedb.yubikey.YubiKeyLoginFormFactory</factory-class> 39 <parameters> 40 <stylesheet>~/css/yubico.css</stylesheet> 41 </parameters> 42 </action-factory> 27 43 28 44 </extension> 45 29 46 </extensions> -
extensions/net.sf.basedb.yubikey/trunk/build.xml
r2249 r2256 127 127 <fileset dir="${build}" /> 128 128 <fileset dir="." includes="META-INF/**" /> 129 <fileset dir="." includes="resources/**" /> 129 130 </jar> 130 131 </target> … … 136 137 <available classname="net.sf.basedb.core.Application" 137 138 classpathref="classpath" property="base-core" /> 139 <available classname="net.sf.basedb.clients.web.Base" 140 classpathref="classpath" property="base-web" /> 138 141 139 142 <fail unless="base-core" message="Can't find base-core-${depend.base-version}.jar in ./lib/compile. Try 'ant download-lib' to download the missing file." /> 143 <fail unless="base-web" message="Can't find base-webclient-${depend.base-version}.jar in ./lib/compile. Try 'ant download-lib' to download the missing file." /> 140 144 <echo>Found base-core-${depend.base-version}.jar.</echo> 145 <echo>Found base-webclient-${depend.base-version}.jar.</echo> 141 146 </target> 142 147 … … 153 158 </echo> 154 159 <download-lib file="base-core-${depend.base-version}.jar" /> 160 <download-lib file="base-webclient-${depend.base-version}.jar" /> 155 161 </target> 156 162
Note: See TracChangeset
for help on using the changeset viewer.