diff options
author | ivan <ivan> | 2008-04-02 04:07:48 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-04-02 04:07:48 +0000 |
commit | 2b6280760fc4980c2b831242ad39910ae8786979 (patch) | |
tree | 77f36207e927b4ab09a206898809c6a7dc109194 /httemplate/docs/credits.html | |
parent | 95cd475f99bd22208c09a85e03719634008fec9d (diff) |
updated credits and license
Diffstat (limited to 'httemplate/docs/credits.html')
-rw-r--r-- | httemplate/docs/credits.html | 116 |
1 files changed, 109 insertions, 7 deletions
diff --git a/httemplate/docs/credits.html b/httemplate/docs/credits.html index 4540e3d23..306f858fd 100644 --- a/httemplate/docs/credits.html +++ b/httemplate/docs/credits.html @@ -1,8 +1,37 @@ +<% include('/elements/header-popup.html', '') %> + +<BR> +<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> + +<BR> + <CENTER> <IMG SRC="<%$fsurl%>images/small-logo.png" BORDER=0"><BR> -<H2>Freeside</H2> <H3>version <% $FS::VERSION %></H3> -<BR><BR> +</CENTER> + +<CENTER> <H3>Core team</H3> Peter Bowen<BR> @@ -25,9 +54,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> @@ -49,10 +76,8 @@ 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> @@ -65,5 +90,82 @@ Mark Wells<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 1700; // 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 moz = !opera && /gecko/i.test(ua); +if ( moz ) { + startingPosition += 20; +} + +var documentYposition = startingPosition; +var documentLength; +window.onLoad = DelayThenScroll(); + +</SCRIPT> + +</BODY> +</HTML> |