This time really make abook files get created with correct permissions
[squirrelmail.git] / functions / htmlentities / readme.php
index a7abba844bdc1fb7881239c3bb8a43fe08232412..f9ae4083f602000239d4a31f6fc5deed4feaa720 100644 (file)
@@ -1,30 +1,36 @@
 <?php
+
 /**
  * SquirrelMail html translation table documentation
  *
  * SquirrelMail provides own implementation of htmlentities() and
  * get_html_translation_table() functions. Functions are called
- * sq_get_html_translation_table() and sq_htmlentities(). They are 
+ * sq_get_html_translation_table() and sq_htmlentities(). They are
  * included in functions/strings.php
  *
  * sq_htmlentities uses same syntax as functions available in php 4.1.0
  * sq_get_html_translation_table adds third option that sets charset.
  *
+ * <pre>
  * string sq_htmlentities ( string string [, int quote_style [, string charset]])
  * array sq_get_html_translation_table ( int table [, int quote_style [, string charset]])
+ * </pre>
  *
  * If sq_get_html_translation_table function is called with HTML_SPECIALCHARS option,
  * it returns us-ascii translation table. If it is called with HTML_ENTITIES option,
  * it returns translation table defined by charset. Function defaults to us-ascii charset
  * and not to iso-8859-1.
  *
- * Why own functions are used instead of htmlspecialchars() and 
+ * Why own functions are used instead of htmlspecialchars() and
  * htmlentities() provided by php.
  *
- * a) removes dependency on options available only in php v.4.1+
- * b) default behavior of htmlentities() is disastrous in non iso-8859-1 environment.
- * c) provides better control of transformations.
+ * <ul>
+ * <li>a) removes dependency on options available only in php v.4.1+</li>
+ * <li>b) default behavior of htmlentities() is disastrous in non iso-8859-1 environment.</li>
+ * <li>c) provides better control of transformations.</li>
+ * </ul>
  *
+ * <pre>
  * --- Full list of entities (w3.org html4.01 recommendations)
  * 1. regural symbols
  * U+0022 - &quot;
  * U+2663 - &clubs;    -- black club suit = shamrock
  * U+2665 - &hearts;   -- black heart suit = valentine
  * U+2666 - &diams;    -- black diamond suit
+ * </pre>
  *
- * @copyright (c) 2004 The SquirrelMail development team
+ * @copyright &copy; 2004-2009 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package squirrelmail
  * @subpackage strings
  */
-?>
\ No newline at end of file