diff options
Diffstat (limited to 'httemplate/docs/credits.html')
-rw-r--r-- | httemplate/docs/credits.html | 178 |
1 files changed, 0 insertions, 178 deletions
diff --git a/httemplate/docs/credits.html b/httemplate/docs/credits.html deleted file mode 100644 index a3e769554..000000000 --- a/httemplate/docs/credits.html +++ /dev/null @@ -1,178 +0,0 @@ -<% 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> -<H3>version <% $FS::VERSION %></H3> -</CENTER> - -<CENTER> - -<H3>Core Team</H3> -Jeremy Davis<BR> -Jeff Finucane<BR> -Jason Hall<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> -Stephen Amadei<BR> -Eric Arvidsson<BR> -Mark Asplen-Taylor<BR> -Mihai Bazon<BR> -Charles A. Beasley<BR> -Stephen Bechard<BR> -Eric Bosrup<BR> -Dave Burgess<BR> -Joe Camadine<BR> -Chris Cappuccio<BR> -Rebecca Cardennis<BR> -Shane Chrisp<BR> -Luke Crawford<BR> -Brad Dameron<BR> -Dave Denney<BR> -Serge Dolgov<BR> -Scott Edwards<BR> -Kenny Elliott<BR> -Donald Greer<BR> -Joel Griffiths<BR> -Ryan Gunn<BR> -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> -mimooh<BR> -Mack Nagashima<BR> -Matt Peterson<BR> -Luke Pfeifer<BR> -Ricardo Signes<BR> -Steve Simitzis<BR> -Jason Spence<BR> -James Switzer<BR> -Audrey Tang<BR> -Jason Thomas<BR> -Jesse Vincent<BR> -Johan Vromans<BR> -Peter Wemm<BR> -Mark Williamson<BR> -Tim Yardley<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> |