summaryrefslogtreecommitdiff
path: root/httemplate/docs/credits.html
blob: d71d563519828d678e834b5743b50a3bebafd791 (plain)
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<% include('/elements/header-popup.html', '') %>

<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>

<FONT SIZE=6>
  <CENTER>Freeside</CENTER>
</FONT>

<CENTER>
<IMG SRC="<%$fsurl%>images/small-logo.png" BORDER="0"><BR>
<H3>version <% $FS::VERSION %></H3>

<BR>

<H3>Core Team</H3>
Ivan Kohler<BR>
<BR>

<BR>
<BR>

<H3>Core Emeritus</H3>
Peter Bowen<BR>
Jeremy Davis<BR>
Jeff Finucane<BR>
Jason Hall<BR>
Kristian Hoffman<BR>
Nathan Kennedy<BR>
Erik Levinson<BR>
Brian McCane<BR>
Jonathan Prykop<BR>
Richard Siddall<BR>
Matt Simerson<BR>
Mark Wells<BR>
<BR>

<H3>Contributors</H3>
C.J. Adams-Collier<BR>
Stephen Amadei<BR>
Eric Arvidsson<BR>
Mark Asplen-Taylor<BR>
Mihai Bazon<BR>
Charles A. Beasley<BR>
Stephen Bechard<BR>
Eric Bosrup<BR>
Dickie Bradford<BR>
Alex Brelsfoard<BR>
Christopher Burger<BR>
Dave Burgess<BR>
Joe Camadine<BR>
Chris Cappuccio<BR>
Rebecca Cardennis<BR>
Shane Chrisp<BR>
Kendall Conrad<BR>
Luke Crawford<BR>
Brad Dameron<BR>
Dave Denney<BR>
Serge Dolgov<BR>
Scott Edwards<BR>
Kenny Elliott<BR>
Velimir Gayevskiy<BR>
Joshua Goodman<BR>
Donald Greer<BR>
Joel Griffiths<BR>
Brian Grinstead<BR>
Ryan Gunn<BR>
Troy Hammonds<BR>
Sean Hanson<BR>
Dale Hege<BR>
Kelly Hickel<BR>
Mitch Jackson<BR>
Mark James<BR>
Gary Jones<BR>
Fernando M. Kiernan<BR>
Frederico Caldeira Knabben<BR>
Greg Kuhnert<BR>
Steven Levithan<BR>
Jim Lucas<BR>
Randall Lucas<BR>
Foteos Macrides<BR>
Roger Mangraviti<BR>
mimooh<BR>
Mack Nagashima<BR>
David Peters<BR>
Matt Peterson<BR>
Luke Pfeifer<BR>
Alan Phipps<BR>
Eric Sandeen<BR>
Ricardo Signes<BR>
Steve Simitzis<BR>
Stanislav Sinyagin<BR>
David Slater<BR>
Jason Spence<BR>
James Switzer<BR>
Audrey Tang<BR>
Jason Terry<BR>
Jason Thomas<BR>
Rob Van Dam<BR>
Jesse Vincent<BR>
Johan Vromans<BR>
Peter Wemm<BR>
Mark Williamson<BR>
Tim Yardley<BR>
Jörn Zaefferer<BR>
</CENTER>

<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>

<SCRIPT TYPE="text/javascript">

function myScroll() {

  documentYposition += 1;
  window.scroll(0,documentYposition);

  var timeout = 25;

  if ( documentYposition > documentLength ) {
    documentYposition = 0;
  }

  if ( documentYposition == startingPosition ) {
    timeout = 5000;
  }

  setTimeout('myScroll()', timeout);
}

function DelayThenScroll() {
  window.scroll(0,documentYposition);
  documentLength = myHeight();
  setTimeout('myScroll()', 3000);
}

function myHeight() {
/*    if (document.all) 
        return document.body.offsetHeight;
    else if (document.layers)
        return document.body.document.height;
    else
*/
        return 2300; // approx height (add more per contributors)
}

document.body.style.overflow = 'hidden';

var startingPosition = 290;

//huh, adjust for firefox
var ua = navigator.userAgent;
var opera = /opera [56789]|opera\/[56789]/i.test(ua);
var webkit = /webkit/i.test(ua)
var moz = !opera && !webkit && /gecko/i.test(ua);
if ( moz ) {
  startingPosition += 20;
} else if ( opera ) {
  startingPosition += 21;
}

var documentYposition = startingPosition;
var documentLength;
window.onLoad = DelayThenScroll();

</SCRIPT>

</BODY>
</HTML>