Author: xor
Date: 2008-11-01 11:46:03 +0000 (Sat, 01 Nov 2008)
New Revision: 23271
Added:
trunk/plugins/WoT/introduction/IntroductionClient.java
trunk/plugins/WoT/introduction/IntroductionServer.java
Log:
Design classes for downloading of puzzles and uploading of solutions. If find a
better name for those classes please suggest it.
Added: trunk/plugins/WoT/introduction/IntroductionClient.java
===================================================================
--- trunk/plugins/WoT/introduction/IntroductionClient.java
(rev 0)
+++ trunk/plugins/WoT/introduction/IntroductionClient.java 2008-11-01
11:46:03 UTC (rev 23271)
@@ -0,0 +1,17 @@
+/*
+ * 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;
+
+/**
+ * This class allows the user to announce new identities:
+ * It downloads puzzles from known identites and uploads solutions of the
puzzles.
+ *
+ * @author xor
+ *
+ */
+public class IntroductionClient {
+
+}
Added: trunk/plugins/WoT/introduction/IntroductionServer.java
===================================================================
--- trunk/plugins/WoT/introduction/IntroductionServer.java
(rev 0)
+++ trunk/plugins/WoT/introduction/IntroductionServer.java 2008-11-01
11:46:03 UTC (rev 23271)
@@ -0,0 +1,17 @@
+/*
+ * 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;
+
+/**
+ * This class provides identity announcement for new identities;
+ * It uploads puzzles in certain time intervals and checks whether they were
solved.
+ *
+ * @author xor
+ *
+ */
+public class IntroductionServer {
+
+}