]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cgi-bin/testhi.c
Merge changes from CUPS 1.4svn-r7874.
[thirdparty/cups.git] / cgi-bin / testhi.c
index 3270ddd13509e98cf36f920eeda38e29e6fd0408..0ef102e7400c8b51b1e85d27f68575f56560682c 100644 (file)
@@ -1,25 +1,16 @@
 /*
- * "$Id$"
+ * "$Id: testhi.c 6649 2007-07-11 21:46:42Z mike $"
  *
  *   Help index test program for the Common UNIX Printing System (CUPS).
  *
- *   Copyright 1997-2005 by Easy Software Products.
+ *   Copyright 2007 by Apple Inc.
+ *   Copyright 1997-2007 by Easy Software Products.
  *
  *   These coded instructions, statements, and computer programs are the
- *   property of Easy Software Products and are protected by Federal
- *   copyright law.  Distribution and use rights are outlined in the file
- *   "LICENSE.txt" which should have been included with this file.  If this
- *   file is missing or damaged please contact Easy Software Products
- *   at:
- *
- *       Attn: CUPS Licensing Information
- *       Easy Software Products
- *       44141 Airport View Drive, Suite 204
- *       Hollywood, Maryland 20636 USA
- *
- *       Voice: (301) 373-9600
- *       EMail: cups-info@cups.org
- *         WWW: http://www.cups.org
+ *   property of Apple Inc. and are protected by Federal copyright
+ *   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
+ *   which should have been included with this file.  If this file is
+ *   file is missing or damaged, see the license at "http://www.cups.org/".
  *
  * Contents:
  *
@@ -105,14 +96,18 @@ list_nodes(const char   *title,            /* I - Title string */
   for (i = 1, node = (help_node_t *)cupsArrayFirst(nodes);
        node;
        i ++, node = (help_node_t *)cupsArrayNext(nodes))
+  {
     if (node->anchor)
-      printf("    %d: %s#%s \"%s\"\n", i, node->filename, node->anchor,
+      printf("    %d: %s#%s \"%s\"", i, node->filename, node->anchor,
              node->text);
     else
-      printf("    %d: %s \"%s\"\n", i, node->filename, node->text);
+      printf("    %d: %s \"%s\"", i, node->filename, node->text);
+
+    printf(" (%d words)\n", cupsArrayCount(node->words));
+  }
 }
 
 
 /*
- * End of "$Id$".
+ * End of "$Id: testhi.c 6649 2007-07-11 21:46:42Z mike $".
  */