Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства для  версии 10.9 Mac OS X

Если Вы выполняете различную версию  Mac OS X, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.



CGI::Pretty(3)                       User Contributed Perl Documentation                      CGI::Pretty(3)



NAME
       CGI::Pretty - module to produce nicely formatted HTML code

SYNOPSIS
           use CGI::Pretty qw( :html3 );

           # Print a table with a single data element
           print table( TR( td( "foo" ) ) );

DESCRIPTION
       CGI::Pretty is a module that derives from CGI.  It's sole function is to allow users of CGI to output
       nicely formatted HTML code.

       When using the CGI module, the following code:
           print table( TR( td( "foo" ) ) );

       produces the following output:
           <TABLE><TR><TD>foo</TD></TR></TABLE>

       If a user were to create a table consisting of many rows and many columns, the resultant HTML code
       would be quite difficult to read since it has no carriage returns or indentation.

       CGI::Pretty fixes this problem.  What it does is add a carriage return and indentation to the HTML
       code so that one can easily read it.

           print table( TR( td( "foo" ) ) );

       now produces the following output:
           <TABLE>
              <TR>
                 <TD>foo</TD>
              </TR>
           </TABLE>

   Recommendation for when to use CGI::Pretty
       CGI::Pretty is far slower than using CGI.pm directly. A benchmark showed that it could be about 10
       times slower. Adding newlines and spaces may alter the rendered appearance of HTML. Also, the extra
       newlines and spaces also make the file size larger, making the files take longer to download.

       With all those considerations, it is recommended that CGI::Pretty be used primarily for debugging.

   Tags that won't be formatted
       The following tags are not formatted: <a>, <pre>, <code>, <script>, <textarea>, and <td>.  If these
       tags were formatted, the user would see the extra indentation on the web browser causing the page to
       look different than what would be expected.  If you wish to add more tags to the list of tags that
       are not to be touched, push them onto the @AS_IS array:

           push @CGI::Pretty::AS_IS,qw(XMP);

   Customizing the Indenting
       If you wish to have your own personal style of indenting, you can change the $INDENT variable:

           $CGI::Pretty::INDENT = "\t\t";

       would cause the indents to be two tabs.

       Similarly, if you wish to have more space between lines, you may change the $LINEBREAK variable:

           $CGI::Pretty::LINEBREAK = "\n\n";

       would create two carriage returns between lines.

       If you decide you want to use the regular CGI indenting, you can easily do the following:

           $CGI::Pretty::INDENT = $CGI::Pretty::LINEBREAK = "";

AUTHOR
       Brian Paulsen <Brian@ThePaulsens.com>, with minor modifications by Lincoln Stein <lstein@cshl.org>
       for incorporation into the CGI.pm distribution.

       Copyright 1999, Brian Paulsen.  All rights reserved.

       This library is free software; you can redistribute it and/or modify it under the same terms as Perl
       itself.

       Bug reports and comments to Brian@ThePaulsens.com.  You can also write to lstein@cshl.org, but this
       code looks pretty hairy to me and I'm not sure I understand it!

SEE ALSO
       CGI



perl v5.12.5                                     2011-01-05                                   CGI::Pretty(3)

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации к проекту Perl. (См. perlbug (1) для инструкций представления.)
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API к Apple через Генератор отчетов Ошибки и к проекту Perl, использующему perlbug (1).
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.