Typo: inspect_jpegs, not inspect-jpegs in form
[privoxy.git] / src / java / org / privoxy / activityconsole / ActivityConsole.java
1 /*********************************************************************
2  *
3  * File        :  $Source$
4  *
5  * Purpose     :  Launch the Activity Console GUI with either the 
6  *                specified listen port or the default if none is 
7  *                specified on the command line.
8  *
9  * Copyright   :  Written by and Copyright (C) 2003 the SourceForge
10  *                Privoxy team. http://www.privoxy.org/
11  *
12  *                Based on the Internet Junkbuster originally written
13  *                by and Copyright (C) 1997 Anonymous Coders and
14  *                Junkbusters Corporation.  http://www.junkbusters.com
15  *
16  *                This program is free software; you can redistribute it
17  *                and/or modify it under the terms of the GNU General
18  *                Public License as published by the Free Software
19  *                Foundation; either version 2 of the License, or (at
20  *                your option) any later version.
21  *
22  *                This program is distributed in the hope that it will
23  *                be useful, but WITHOUT ANY WARRANTY; without even the
24  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
25  *                PARTICULAR PURPOSE.  See the GNU General Public
26  *                License for more details.
27  *
28  *                The GNU General Public License should be included with
29  *                this file.  If not, you can view it at
30  *                http://www.gnu.org/copyleft/gpl.html
31  *                or write to the Free Software Foundation, Inc., 59
32  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
33  *
34  * Revisions   :
35  *    $Log$
36  *********************************************************************/
37
38 package org.privoxy.activityconsole;
39
40 /**
41  * Launch the Activity Console GUI with either the specified listen port
42  * or the default if none is specified on the command line.
43  * @author Last Modified By: $Author$
44  * @version $Rev$-$Date$$State$
45  */
46 public class ActivityConsole
47 {
48   private static final String
49     COPYRIGHT = org.privoxy.activityconsole.Copyright.COPYRIGHT;
50
51   /**
52    * main method; initializes the GUI.
53    *
54    * @String[] args - command line parameters.
55    */
56   public static void main(java.lang.String[] args)
57   {
58     try
59     {
60       ActivityConsoleGui gui = new ActivityConsoleGui(args[0]);
61     }
62     catch (Throwable t)
63     {
64       ActivityConsoleGui gui = new ActivityConsoleGui("8119");
65     }
66   }
67 }