Revision: 12303
http://squirrelmail.svn.sourceforge.net/squirrelmail/?rev=12303&view=rev
Author: jervfors
Date: 2007-03-03 18:26:29 -0800 (Sat, 03 Mar 2007)
Log Message:
-----------
Moving "doc/themes.txt" to the administrator's manual.
Modified Paths:
--------------
trunk/documentation/admin/admin.sgml
trunk/squirrelmail/doc/index.html
trunk/squirrelmail/themes/README.themes
Removed Paths:
-------------
trunk/squirrelmail/doc/themes.txt
Modified: trunk/documentation/admin/admin.sgml
===================================================================
--- trunk/documentation/admin/admin.sgml 2007-03-04 02:07:59 UTC (rev
12302)
+++ trunk/documentation/admin/admin.sgml 2007-03-04 02:26:29 UTC (rev
12303)
@@ -1331,13 +1331,13 @@
SquirrelMail themes define interface colors. Each theme is a set of 17 or more
colors.
-You can easily create your own theme. It is very simple. Just go into the
-<tt>themes/</tt> directory and create a file called <tt/yourtheme_theme.php/.
-You then need to create an array with 17 elements (0-16). Below is a blank
theme
-sample followed by a description of what the different entries are for.
+Creating your own theme is very simple. Just go into the <tt>themes/</tt>
+directory and create a file called <tt/yourtheme_theme.php/. You then need to
+create an array with 17 elements (0-16). Below is a theme template followed by
a
+description of what the different entries are for. Replace each "xxxxxx" with
+whatever HTML hex color code that you want for that element.
<tscreen><verb>
----<START>---
<?php
/**
@@ -1367,11 +1367,9 @@
$color[14] = '#xxxxxx';
$color[15] = '#xxxxxx';
$color[16] = '#xxxxxx';
-
----<END>---
</verb></tscreen>
-Here is descriptions of what the different entries in the array are colors of.
+Here are descriptions of what the different entries in the array are colors of.
The letter before the number denotes 'b' for background and 'f' for foreground
colors.
@@ -1392,7 +1390,7 @@
f 13: Color for single-quoted text ('> text') when reading (default: #800000)
f 14: Color for text with more than one quote (default: #ff0000)
f 15: Non-selectable folders in the left frame (default: $color[6])
-b 16: Highlight color (used in SquirrelMail 1.5.1 or later, default: $color[2])
+b 16: Highlight color (since SquirrelMail 1.4.6 and 1.5.1, default: $color[2])
</verb></tscreen>
Next all you have to do is run SquirrelMail configuration utility and add the
@@ -1636,7 +1634,6 @@
<sect1>Securing the connection to your IMAP server
<p>
-
SquirrelMail provides the option to connect to a remote IMAP server over
an encrypted connection: Transport Layer Security (TLS and STARTTLS),
or to connect with only encrypted user credentials (CRAM-MD5 and DIGEST-MD5).
Modified: trunk/squirrelmail/doc/index.html
===================================================================
--- trunk/squirrelmail/doc/index.html 2007-03-04 02:07:59 UTC (rev 12302)
+++ trunk/squirrelmail/doc/index.html 2007-03-04 02:26:29 UTC (rev 12303)
@@ -28,12 +28,6 @@
information about translating those help documents.
</dd>
- <dt><a href="themes.txt">Themes</a></dt>
- <dd>
- You can create your own color themes and add them in the themes/
directory
- if you wish. This describes the format of the theme files.
- </dd>
-
<dt><a href="russian_apache.txt">Russian Apache</a></dt>
<dd>
There are special instructions if you are running Russian Apache. This
Deleted: trunk/squirrelmail/doc/themes.txt
===================================================================
--- trunk/squirrelmail/doc/themes.txt 2007-03-04 02:07:59 UTC (rev 12302)
+++ trunk/squirrelmail/doc/themes.txt 2007-03-04 02:26:29 UTC (rev 12303)
@@ -1,73 +0,0 @@
-Themes
-======
-SquirrelMail users are able to customize the look of the interface by selecting
-a custom theme and the font style.
-
-SquirrelMail themes define interface colors. Each theme is a set of 17 or more
-colors.
-
-You can easily create your own theme. It is very simple. Just go into the
-themes/ directory and create a file called yourtheme_theme.php.
-You then need to create an array with 17 elements (0-16). Below is a blank
theme
-sample followed by a description of what the different entries are for.
-
----<START>---
-<?php
-
-/**
- * My Theme
- *
- * Author: My name
- * Date: Today's date
- *
- * Optional description
- */
-
-global $color;
-$color[0] = '#xxxxxx';
-$color[1] = '#xxxxxx';
-$color[2] = '#xxxxxx';
-$color[3] = '#xxxxxx';
-$color[4] = '#xxxxxx';
-$color[5] = '#xxxxxx';
-$color[6] = '#xxxxxx';
-$color[7] = '#xxxxxx';
-$color[8] = '#xxxxxx';
-$color[9] = '#xxxxxx';
-$color[10] = '#xxxxxx';
-$color[11] = '#xxxxxx';
-$color[12] = '#xxxxxx';
-$color[13] = '#xxxxxx';
-$color[14] = '#xxxxxx';
-$color[15] = '#xxxxxx';
-$color[16] = '#xxxxxx';
-
----<END>---
-
-Here is descriptions of what the different entries in the array are colors of.
-The letter before the number denotes 'b' for background and 'f' for foreground
-colors.
-
-b 0: Title bar at the top of the page header
-f 1: Error messages border, usually red
-f 2: Error messages, usually red
-b 3: Left folder list background color
-b 4: Normal background color
-b 5: Header of the message index [From, Date, Subject]
-f 6: Normal text on the left folder list
-f 7: Links in the right frame
-f 8: Normal text [usually black]
-b 9: Darker version of #0
-b 10: Darker version of #9
-f 11: Special folders color [Inbox, Trash, Sent]
-b 12: Alternate color for message list [alters between #4 and this one]
-f 13: Color for single-quoted text ('> text') when reading (default: #800000)
-f 14: Color for text with more than one quote (default: #ff0000)
-f 15: Non-selectable folders in the left frame (default: $color[6])
-b 16: Highlight color (default: $color[2])
-
-Next all you have to do is run SquirrelMail configuration utility and add the
-theme to the list of themes available to you.
-
-
-$Id$
Modified: trunk/squirrelmail/themes/README.themes
===================================================================
--- trunk/squirrelmail/themes/README.themes 2007-03-04 02:07:59 UTC (rev
12302)
+++ trunk/squirrelmail/themes/README.themes 2007-03-04 02:26:29 UTC (rev
12303)
@@ -1 +1 @@
-For information on creating themes, please read doc/themes.txt
+For information on creating themes, please read the administator's manual.
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
|