Code

Fix minor test issues
[nagiosplug.git] / plugins / urlize.c
index 13ab14ee0b1c9d67286dc45e7841d6c852f9cd9c..6bb42db029607e39df3e965eec3f419502f31e7f 100644 (file)
@@ -1,26 +1,37 @@
-/******************************************************************************
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
- $Id$
-******************************************************************************/
+/*****************************************************************************
+* 
+* Nagios urlize plugin
+* 
+* License: GPL
+* Copyright (c) 2000-2007 Nagios Plugins Development Team
+* 
+* Description:
+* 
+* This file contains the urlize plugin
+* 
+* This plugin wraps the text output of another command (plugin) in HTML <A>
+* tags, thus displaying the child plugin's output as a clickable link in the
+* Nagios status screen.  This plugin returns the status of the invoked plugin.
+* 
+* 
+* This program is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+* 
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+* GNU General Public License for more details.
+* 
+* You should have received a copy of the GNU General Public License
+* along with this program.  If not, see <http://www.gnu.org/licenses/>.
+* 
+* 
+*****************************************************************************/
 
 const char *progname = "urlize";
-const char *revision = "$Revision$";
-const char *copyright = "2000-2004";
+const char *copyright = "2000-2006";
 const char *email = "nagiosplug-devel@lists.sourceforge.net";
 
 #include "common.h"
@@ -56,9 +67,15 @@ main (int argc, char **argv)
        bindtextdomain (PACKAGE, LOCALEDIR);
        textdomain (PACKAGE);
 
+       /* Need at least 2 args */
+       if (argc < 3) {
+               print_help();
+               exit (STATE_UNKNOWN);
+       }
+
        while (1) {
                c = getopt_long (argc, argv, "+hVu:", longopts, &option);
-               
+
                if (c == -1 || c == EOF)
                        break;
 
@@ -68,7 +85,7 @@ main (int argc, char **argv)
                        exit (EXIT_SUCCESS);
                        break;
                case 'V':     /* version */
-                       print_revision (progname, revision);
+                       print_revision (progname, NP_VERSION);
                        exit (EXIT_SUCCESS);
                        break;
                case 'u':
@@ -76,7 +93,7 @@ main (int argc, char **argv)
                        break;
                case '?':
                default:
-                       usage2 (_("Unknown argument"), optarg);
+                       usage5 ();
                }
        }
 
@@ -123,7 +140,7 @@ main (int argc, char **argv)
        printf ("%s", nstr);
        printf ("</A>");
        nstr = strtok(NULL, PERF_CHARACTER);
-       if (nstr != NULL) 
+       if (nstr != NULL)
                printf (" | %s", nstr);
 
        /* close the pipe */
@@ -144,34 +161,32 @@ main (int argc, char **argv)
 void
 print_help (void)
 {
-       print_revision (progname, revision);
+       print_revision (progname, NP_VERSION);
 
        printf ("Copyright (c) 2000 Karl DeBisschop <kdebisschop@users.sourceforge.net>\n");
        printf (COPYRIGHT, copyright, email);
 
-       printf (_("\n\
-This plugin wraps the text output of another command (plugin) in HTML\n\
-<A> tags, thus displaying the plugin output in as a clickable link in\n\
-the Nagios status screen.  The return status is the same as the invoked\n\
-plugin.\n\n"));
+       printf ("%s\n", _("This plugin wraps the text output of another command (plugin)"));
+  printf ("%s\n", _("in HTML <A> tags, thus displaying the child plugin's output as a clickable link in"));
+  printf ("%s\n", _("the Nagios status screen.  This plugin returns the status of the invoked plugin."));
+
+  printf ("\n\n");
 
        print_usage ();
 
-       printf (_("\n\
-Pay close attention to quoting to ensure that the shell passes the expected\n\
-data to the plugin. For example, in:\n\
-\n\
-    urlize http://example.com/ check_http -H example.com -r 'two words'\n\
-\n\
-the shell will remove the single quotes and urlize will see:\n\
-\n\
-    urlize http://example.com/ check_http -H example.com -r two words\n\
-\n\
-You probably want:\n\
-\n\
-    urlize http://example.com/ \"check_http -H example.com -r 'two words'\"\n"));
-
-       printf (_(UT_SUPPORT));
+  printf (UT_HELP_VRSN);
+
+  printf ("\n");
+  printf ("%s\n", _("Examples:"));
+       printf ("%s\n", _("Pay close attention to quoting to ensure that the shell passes the expected"));
+  printf ("%s\n\n", _("data to the plugin. For example, in:"));
+  printf (" %s\n\n", _("urlize http://example.com/ check_http -H example.com -r 'two words'"));
+  printf ("    %s\n", _("the shell will remove the single quotes and urlize will see:"));
+  printf (" %s\n\n", _("urlize http://example.com/ check_http -H example.com -r two words"));
+  printf ("    %s\n\n", _("You probably want:"));
+  printf (" %s\n", _("urlize http://example.com/ \"check_http -H example.com -r 'two words'\""));
+
+       printf (UT_SUPPORT);
 }
 
 
@@ -179,5 +194,6 @@ You probably want:\n\
 void
 print_usage (void)
 {
-       printf ("Usage:\n %s <url> <plugin> <arg1> ... <argN>\n", progname);
+  printf ("%s\n", _("Usage:"));
+       printf ("%s <url> <plugin> <arg1> ... <argN>\n", progname);
 }