Documentation tweaks
authorMichael M Slusarz <slusarz@curecanti.org>
Mon, 23 Feb 2009 05:59:36 +0000 (22:59 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Mon, 23 Feb 2009 05:59:36 +0000 (22:59 -0700)
14 files changed:
imp/README
imp/config/filter.txt.dist
imp/config/header.php.dist
imp/config/hooks.php.dist
imp/config/menu.php.dist
imp/config/mime_drivers.php.dist
imp/config/motd.php.dist
imp/config/portal.php.dist
imp/config/prefs.php.dist
imp/config/servers.php.dist
imp/config/spelling.php.dist
imp/docs/INSTALL
imp/docs/TODO
imp/docs/UPGRADING

index 744c0d5..44c3ff8 100644 (file)
@@ -1,7 +1,7 @@
 What is IMP?
 ============
 
-:Contact:       imp@lists.horde.org
+:Contact: imp@lists.horde.org
 
 .. contents:: Contents
 .. section-numbering::
index cb43778..7b01f84 100644 (file)
@@ -1,5 +1,4 @@
 # Enter a list of words that will be filtered.  Only put one word on each
 # line.  Comments are allowed.  A comment starts with a '#' and ends at the
 # end of the line.
-#
 poop
index a5eae70..f60005a 100644 (file)
@@ -1,22 +1,20 @@
 <?php
 /**
- * $Id$
- *
  * This file will allow you to set headers to append to outgoing mail messages.
  *
  * To add a new header item, simply add a new entry to the $_header array.
  * The "key" should be the header name.
  * The "value" should be the header data.
  *
- * Example entries:
- *
- *  // Add the IP of the remote browser
- *  $_header['X-Originating-IP'] = $_SERVER['REMOTE_ADDR'];
- *
- *  // Add the Browser information of the remote browser
- *  $_header['X-Remote-Browser'] = $_SERVER['HTTP_USER_AGENT'];
+ * $Id$
  */
 
 $_header = array();
 
 /* Add your custom entries below this line. */
+
+// Add the IP of the remote browser
+//$_header['X-Originating-IP'] = $_SERVER['REMOTE_ADDR'];
+
+// Add the Browser information of the remote browser
+//$_header['X-Remote-Browser'] = $_SERVER['HTTP_USER_AGENT'];
index d794299..e3be185 100644 (file)
@@ -1,7 +1,5 @@
 <?php
 /**
- * $Id$
- *
  * IMP Hooks configuration file.
  *
  * THE HOOKS PROVIDED IN THIS FILE ARE EXAMPLES ONLY.  DO NOT ENABLE THEM
@@ -9,6 +7,8 @@
  * TO MATCH YOUR SPECIFIC NEEDS AND SYSTEM ENVIRONMENT.
  *
  * For more information please see the horde/config/hooks.php.dist file.
+ *
+ * $Id$
  */
 
 // Here is an example signature hook function to set the signature from the
index c383615..f8b2f03 100644 (file)
@@ -1,7 +1,5 @@
 <?php
 /**
- * $Id$
- *
  * This file lets you extend IMP's menu with your own items.
  *
  * To add a new menu item, simply add a new entry to the $_menu array.
@@ -36,6 +34,8 @@
  * 'separator'.  It should look like this:
  *
  *  $_menu[] = 'separator';
+ *
+ * $Id$
  */
 
 $_menu = array();
index 4d72392..7c73103 100644 (file)
@@ -1,7 +1,5 @@
 <?php
 /**
- * $Id$
- *
  * Decide which output drivers you want to activate for the IMP application.
  * Settings in this file override settings in horde/config/mime_drivers.php.
  * All drivers configured in that file, but not configured here, will also
  *   to download the part.  Don't set the parameter, or set to 0, to disable
  *   this check.
  *
+ * $Id$
+ */
+
+/**
  * The available drivers are:
  * --------------------------
  * alternative    multipart/alternative parts
index 7236a39..12338db 100644 (file)
@@ -1,11 +1,15 @@
-<!-- This file contains any "Message Of The Day" Type information -->
-<!-- It will be included below the log-in form on the login page. -->
-
 <?php
 /**
+ * This file contains any "Message Of The Day" Type information.
+ * It will be included below the login form on the login page.
+ *
+ * $Id$
+ */
+
+/**
  * Example code for switching between HTTP and HTTPS.
  * Contributed by: James <james@james-web.net>
- * To use, unncomment and modify these variables:
+ * To use, uncomment and modify these variables:
  *
  * $SERVER_SSL_PORT - Port on which your SSL server listens (Usually 443)
  * $SERVER_HTTP_PORT - Port on which your HTTP server listens (Usually 80)
 // echo '<br /><div align="center" class="light">';
 //
 // switch ($port) {
-//     case $SERVER_SSL_PORT:
-//         echo _("You are currently using Secure HTTPS<br />");
-//         break;
+// case $SERVER_SSL_PORT:
+//     echo _("You are currently using Secure HTTPS<br />");
+//     break;
 //
-//     case $SERVER_HTTP_PORT:
-//         echo _("You are currently using Standard HTTP<br />");
-//         break;
+// case $SERVER_HTTP_PORT:
+//     echo _("You are currently using Standard HTTP<br />");
+//     break;
 // }
 //
 // echo '<a class="small" href="' . $SERVER_HTTP_URL . '" target="_parent">' . _("Click here for Standard HTTP") . '</a> - <a class="small" href="' . $SERVER_SSL_URL . '" target="_parent">' . _("Click here for Secure HTTPS") . '</a></div>';
index a1ce65e..fc35863 100644 (file)
@@ -1,7 +1,5 @@
 <?php
 /**
- * $Id$
- *
  * Dynamic portal configuration page.
  *
  * Format: An array named $dimp_block_list
@@ -16,6 +14,8 @@
  *            'domid' => A DOM ID to assign to the containing block
  *            'tag' => A tag name to add to the template array. Allows
  *                     the use of <if:block.tag> in custom template files.
+ *
+ * $Id$
  */
 
 $collection = new Horde_Block_Collection();
index 4bc9c28..32a1e5f 100644 (file)
@@ -1,8 +1,8 @@
 <?php
 /**
- * $Id$
- *
  * See horde/config/prefs.php for documentation on the structure of this file.
+ *
+ * $Id$
  */
 
 // Make sure that constants are defined.
index f06cddf..530a3ea 100644 (file)
@@ -1,7 +1,5 @@
 <?php
 /**
- * $Id$
- *
  * This file specifies which mail servers people using your installation of
  * IMP can login to.
  *
  *       IMAP server must support the LANGUAGE extensions for this setting to
  *       have an effect. By default, IMAP messages are output in the IMAP
  *       server default language.
+ *
+ * $Id$
  */
 
 /* Any entries whose key value ('foo' in $servers['foo']) begin with '_'
index bd3f8f4..70becd5 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /**
- * $Id$
- *
  * This file defines a custom list of words that will be added to the spell
  * checker dictionary.
+ *
+ * $Id$
  */
 
 /* Default list (English). */
index 7285fa2..40b3482 100644 (file)
@@ -2,7 +2,7 @@
  Installing IMP 5.0
 ====================
 
-:Contact:       imp@lists.horde.org
+:Contact: imp@lists.horde.org
 
 .. contents:: Contents
 .. section-numbering::
@@ -27,9 +27,9 @@ Or use the mirror closest to you:
 
    http://www.horde.org/mirrors.php
 
-Bleeding-edge development versions of IMP are available via CVS; see the file
+Bleeding-edge development versions of IMP are available via Git; see the file
 `horde/docs/HACKING`_ in the Horde distribution, or the website
-http://www.horde.org/source/, for information on accessing the Horde CVS
+http://www.horde.org/source/, for information on accessing the Horde Git
 repository.
 
 
index 0f8cbc3..c1cd760 100644 (file)
@@ -2,13 +2,8 @@
  IMP Development TODO List
 ===========================
 
-:Last update:   $Date: 2008/03/22 10:45:36 $
-:Revision:      $Revision: 1.30 $
-:Contact:       imp@lists.horde.org
+:Contact: imp@lists.horde.org
 
-In no particular order:
-
-- Don't render large MIME parts.
 
 - Print all messages in a mailbox.
 
index ebd8d6c..916e538 100644 (file)
@@ -2,9 +2,7 @@
  Upgrading IMP
 ===============
 
-:Last update:   $Date: 2008/10/20 03:54:39 $
-:Revision:      $Revision: 1.33 $
-:Contact:       imp@lists.horde.org
+:Contact: imp@lists.horde.org
 
 
 These are instructions to upgrade from earlier IMP versions.