chiark / gitweb /
fix up comments for the way things are now, and update the licence file
authorIan Jackson <ian@liberator.relativity.greenend.org.uk>
Tue, 24 Aug 2010 23:33:05 +0000 (00:33 +0100)
committerIan Jackson <ian@liberator.relativity.greenend.org.uk>
Tue, 24 Aug 2010 23:39:02 +0000 (00:39 +0100)
LICENCE
README
src/com/tedpearson/ypp/market/ControlPanel.java
src/com/tedpearson/ypp/market/MarketUploader.java

diff --git a/LICENCE b/LICENCE
index 9ee4d5ffd8400f72168c7e9f7f3c750f7616016c..fc4b4ab3b588ac74f3fb42f1d181a713cd1904c5 100644 (file)
--- a/LICENCE
+++ b/LICENCE
@@ -1,11 +1,15 @@
 jpctb is Free Software.
 
-The Linux wrapper script is copyright (C) 2009 Ian Jackson
+The Linux "jpctb" wrapper script is:
+  Copyright (C) 2009-2010 Ian Jackson
 
-com.tedpearson.* Java source code is copyright (C) 2009 Ted Pearson
-and Owen Dunn
+com.tedpearson.* Java source code is:
+  Copyright (C) 2009 Ted Pearson and Owen Dunn
+  Copyright (C) 2010 Owen Dunn and Ian Jackson
 
-All other components are copyright (C) 2009 Owen Dunn.
+All other components are:
+  Copyright (C) 2009 Owen Dunn
+  Copyright (C) 2010 Owen Dunn and Ian Jackson
 
 All of the above are distributed under the terms of the following
 licence:
diff --git a/README b/README
index c588d9867de4d58107cd1fc8ffb30f04de884d5b..eca9ddc3b66e502f2dd98bbf0835af62b74a2e00 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,9 @@
 JPCTB - a client for uploading to Yarrg and PCTB
 ================================================
 
+See the YARRG website for more information:
+  http://yarrg.chiark.net/upload
+
 Linux
 -----
 
index b42232fec912e9dc9800b85df1dfbf50e55e4caa..dc91b06e9b30b9aa1b72baf1c96b6375f2b6593c 100644 (file)
@@ -7,7 +7,7 @@ import java.util.prefs.*;
 
 /**
 *      ControlPanel is a simple management utility that sets
-*      a preference for whether the PCTB client is to launch or not.
+*      a preference for which server(s) to upload to.
 */
 public class ControlPanel extends JFrame {
        public static void main(String[] args) {
index 306c7d72c13869ccb4dce3badae2971577078de7..6a355ff94abafe439b55c2406138b51b4241dfda 100644 (file)
@@ -22,26 +22,18 @@ import java.util.prefs.Preferences;
 import java.beans.*;
 import com.tedpearson.util.update.*;
 
-/*
-       TODO:
-       allow adding new islands
-       allow adding new oceans
-*/
-
 /**
-*      MarketUploader is a class that handles the uploading of market data from
-*      Yohoho! Puzzle Pirates. Currently, it must be launched in the save Java
-*      Virtual Machine as YPP. This is handled by a sister "helper" class,
-*      {@link MarketUploaderRunner}.
-*      <p>
-*      MarketUploader initializes after the main YPP window has initialized. It
-*      provides a simple window with a "Capture Market Data" button displayed.
-*      Upon clicking this button, a progress dialog is displayed, and the data
-*      is processed and submitted to the Pirate Commodities Trader with Bleach (PCTB)
-*      web server. If any errors occur, an error dialog is shown, and processing
-*      returns, the button becoming re-enabled.
-*      
-*      @see MarketUploaderRunner
+*      MarketUploader is a class that handles the uploading of market
+*      data from Yohoho! Puzzle Pirates via the Java Accessibility
+*      API.
+*
+*      MarketUploader initializes after the main YPP window has
+*      initialized. It provides a simple window with a "Capture
+*      Market Data" button displayed.  Upon clicking this button, a
+*      progress dialog is displayed, and the data is processed and
+*      submitted to the YARRG and PCTB servers. If any errors occur,
+*      an error dialog is shown, and processing returns, the button
+*      becoming re-enabled.
 */
 public class MarketUploader implements TopLevelWindowListener, GUIInitializedListener {
        private JFrame frame = null;
@@ -223,9 +215,7 @@ public class MarketUploader implements TopLevelWindowListener, GUIInitializedLis
        }
        
        /**
-       *       Entry point. Remove modified files and replace with backups.
-       *       Register the jar file we are running from to be deleted upon quit.
-       *       Finally, conditionally set up the GUI.
+       *       Entry point.  Read our preferences.
        */
        public MarketUploader() {
                // check if we've been turned off in the control panel
@@ -255,8 +245,9 @@ public class MarketUploader implements TopLevelWindowListener, GUIInitializedLis
        }
        
        /**
-       *       Set up the GUI, with its window and one-button interface. Only initialize
-       *       if we're running alongside a Window named "Puzzle Pirates" though.
+       *       Set up the GUI, with its window and one-button
+       *       interface. Only initialize if we're running alongside
+       *       a Window named "Puzzle Pirates" though.
        */
        private void createGUI() {
                if (frame != null && window != null) {