import torrus 1.0.9
[freeside.git] / httemplate / docs / credits.html
index 4540e3d..a3e7695 100644 (file)
@@ -1,16 +1,49 @@
+<% include('/elements/header-popup.html', '') %>
+
+<BR>
+<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>
-<H2>Freeside</H2>
+<IMG SRC="<%$fsurl%>images/small-logo.png" BORDER="0"><BR>
 <H3>version <% $FS::VERSION %></H3>
-<BR><BR>
+</CENTER>
 
-<H3>Core team</H3>
-Peter Bowen<BR>
+<CENTER>
+
+<H3>Core Team</H3>
+Jeremy Davis<BR>
 Jeff Finucane<BR>
 Jason Hall<BR>
-Kristian Hoffman<BR>
 Ivan Kohler<BR>
 Richard Siddall<BR>
+Mark Wells<BR>
+<BR>
+
+<H3>Core Emeritus</H3>
+Peter Bowen<BR>
+Kristian Hoffman<BR>
+Brian McCane<BR>
+Matt Simerson<BR>
 <BR>
 
 <H3>Contributors</H3>
@@ -25,9 +58,7 @@ Dave Burgess<BR>
 Joe Camadine<BR>
 Chris Cappuccio<BR>
 Rebecca Cardennis<BR>
-Cerkit<BR>
 Shane Chrisp<BR>
-Steve Cleff<BR>
 Luke Crawford<BR>
 Brad Dameron<BR>
 Dave Denney<BR>
@@ -41,29 +72,107 @@ Troy Hammonds<BR>
 Sean Hanson<BR>
 Dale Hege<BR>
 Kelly Hickel<BR>
+Mark James<BR>
 Frederico Caldeira Knabben<BR>
 Greg Kuhnert<BR>
+Erik Levinson<BR>
 Randall Lucas<BR>
 Foteos Macrides<BR>
 Roger Mangraviti<BR>
-Brian McCane<BR>
 mimooh<BR>
 Mack Nagashima<BR>
-Mark Norris<BR>
 Matt Peterson<BR>
 Luke Pfeifer<BR>
-Jerry St. Pierre<BR>
 Ricardo Signes<BR>
-Matt Simerson<BR>
 Steve Simitzis<BR>
 Jason Spence<BR>
 James Switzer<BR>
 Audrey Tang<BR>
 Jason Thomas<BR>
 Jesse Vincent<BR>
-Mark Wells<BR>
+Johan Vromans<BR>
 Peter Wemm<BR>
 Mark Williamson<BR>
 Tim Yardley<BR>
-<BR>
+
 </CENTER>
+
+<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 1850; // approx height (add more per contributors)
+}
+
+document.body.style.overflow = 'hidden';
+
+var startingPosition = 360;
+
+//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>