Author: xor Date: 2008-11-01 11:47:20 +0000 (Sat, 01 Nov 2008) New Revision: 23272
Added: trunk/plugins/WoT/introduction/CaptchaFactory1.java Log: Suggestion for the first captcha implementation: http://simplecaptcha.sourceforge.net/ If you know a better library please suggest it. This one is about 400 KiB. Added: trunk/plugins/WoT/introduction/CaptchaFactory1.java =================================================================== --- trunk/plugins/WoT/introduction/CaptchaFactory1.java (rev 0) +++ trunk/plugins/WoT/introduction/CaptchaFactory1.java 2008-11-01 11:47:20 UTC (rev 23272) @@ -0,0 +1,25 @@ +/* + * This code is part of WoT, a plugin for Freenet. It is distributed + * under the GNU General Public License, version 2 (or at your option + * any later version). See http://www.gnu.org/ for details of the GPL. + */ +package plugins.WoT.introduction; + +/** + * First implementation of a captcha factory. + * I added a "1" to the class because we should probably have many different captcha generators. + * I suggest we use this one for the first implementation: + * http://simplecaptcha.sourceforge.net/ + * + * If anyone knows a better library than simplecaptcha please comment. + * + * @author xor + * + */ +public class CaptchaFactory1 implements IntroductionPuzzleFactory { + + public IntroductionPuzzle generatePuzzle() { + return null; + } + +}
