~vcs-imports/squirrelmail/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php

/**
 * Theme Name:   'Darkness'
 * Like black?
 *
 * @author Tyler Akins
 * @copyright 2001-2015 The SquirrelMail Project Team
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 * @version $Id$
 * @package squirrelmail
 * @subpackage themes
 */

// Note:  The text distance is actually pre-squared
// Background range is from 24-64, all three colors are the same
// Text range is from 196 to 255
$BackgroundTargetDistance = 12;
$BackgroundAdjust = 1;
$TextTargetDistance = 65536;
$TextAdjust = 0.95;

function IsUnique($Distance, $r, $g, $b, $usedArray)
{
   foreach ($usedArray as $data) {
      $a = abs($data[0] - $r);
      $b = abs($data[1] - $g);
      $c = abs($data[2] - $b);
      $newDistance = $a * $a + $b * $b + $c * $c;
      if ($newDistance < $Distance)
         return false;
   }
   return true;
}


// Extra spiffy page fade if left frame
// Always tremble background
// This might make people go insane.  Yes!  *Victory dance!*
function Darkness_HeaderPlugin() {

   if (defined('PAGE_NAME') && PAGE_NAME=='left_main') {
      echo '<meta http-equiv="Page-Enter" content="' .
         'blendTrans(Duration=2.0)" />' . "\n";
   }

?><script type="text/javascript">
darkness_color = 0;
darkness_dir = +1;
darkness_hex = new Array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
   'a', 'b', 'c', 'd', 'e', 'f');
function DarknessTremble() {
   if (darkness_color >= 32 || darkness_color <= 0)
      darkness_dir = - darkness_dir;
   darkness_color += darkness_dir;
   if (darkness_color < 0)
      darkness_color = 0;
   bigDigit = Math.floor(darkness_color / 16);
   littleDigit = darkness_color - (bigDigit * 16);
   Color = darkness_hex[bigDigit] + darkness_hex[littleDigit];
   document.bgColor='#' + Color + Color + Color;
   setTimeout('DarknessTremble()', 5000);
}
setTimeout('DarknessTremble()', 10000);
</script>
<?php
}

global $squirrelmail_plugin_hooks;
$squirrelmail_plugin_hooks['generic_header']['theme_darkness'] =
    'Darkness_HeaderPlugin';

$color[3] = '#000000';
$color[4] = '#000000';
$used = array(0);
$targetDistance = $BackgroundTargetDistance;
$Left = array(0, 5, 9, 10, 12);
while (count($Left) > 0) {
    // Some background colors
    $r = mt_rand(24,64);
    $unique = true;
    foreach ($used as $col) {
        if (abs($r - $col) < $targetDistance)
            $unique = false;
    }
    if ($unique) {
        $i = array_shift($Left);
        $color[$i] = sprintf('#%02X%02X%02X',$r,$r, $r);
        $used[] = $r;
        $targetDistance = $BackgroundTargetDistance;
    } else {
        $targetDistance -= $BackgroundAdjust;
    }
}

// Set the error color to some shade of red
$r = mt_rand(196, 255);
$g = mt_rand(144, ($r * .8));
$color[2] = sprintf('#%02X%02X%02X', $r, $g, $g);
$used = array(array($r, $g, $g));

// Set normal text colors
$cmin = 196;
$cmax = 255;
foreach (array(6, 8) as $i) {
    /** generate random color **/
    $r = mt_rand($cmin,$cmax);
    $g = mt_rand($cmin,$cmax);
    $b = mt_rand($cmin,$cmax);
    $color[$i] = sprintf('#%02X%02X%02X',$r,$g,$b);
    $used[] = array($r, $g, $b);
}

$Left = array(1, 7, 11, 13, 14, 15);
$targetDistance = $TextTargetDistance;
while (count($Left) > 0) {
    // Text colors -- Try to keep the colors distinct
    $cmin = 196;
    $cmax = 255;

    /** generate random color **/
    $r = mt_rand($cmin,$cmax);
    $g = mt_rand($cmin,$cmax);
    $b = mt_rand($cmin,$cmax);

    if (IsUnique($targetDistance, $r, $g, $b, $used)) {
        $i = array_shift($Left);
        $color[$i] = sprintf('#%02X%02X%02X',$r,$g,$b);
        $used[] = array($r, $g, $b);
        $targetDistance = $TextTargetDistance;
    } else {
        $targetDistance *= $TextAdjust;
    }
}