[freeside-commits] freeside/httemplate/docs credits.html, 1.1, 1.2 license.html, 1.1, 1.2

Ivan,,, ivan at wavetail.420.am
Tue Apr 1 21:07:51 PDT 2008


Update of /home/cvs/cvsroot/freeside/httemplate/docs
In directory wavetail.420.am:/tmp/cvs-serv1500

Modified Files:
	credits.html license.html 
Log Message:
updated credits and license

Index: license.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/docs/license.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- license.html	1 Apr 2008 23:30:08 -0000	1.1
+++ license.html	2 Apr 2008 04:07:48 -0000	1.2
@@ -1,3 +1,11 @@
+<% include('/elements/header-popup.html', 'Freeside') %>
+<CENTER>
+<IMG SRC="<%$fsurl%>images/small-logo.png" BORDER=0"><BR>
+<H3>version <% $FS::VERSION %></H3>
+</CENTER>
+
+<P>
+
 Copyright &copy; 2005-2008 Freeside Internet Services, Inc.<BR>
 Copyright &copy; 2000-2005 Ivan Kohler<BR>
 Copyright &copy; 1999 Silicon Interactive Software Design<BR>
@@ -17,8 +25,8 @@
   
 <P>
     You should have received a copy of the GNU Affero General Public
-    License along with this program, in the file `<A HREF="AGPL.html">AGPL</A>'; if not,
-    see &lt;<A HREF="http://www.fsf.org/licensing/licenses/agpl-3.0.html">http://www.fsf.org/licensing/licenses/agpl-3.0.html</a>&gt;.
+    License along with this program, in the file `<A HREF="AGPL.html" TARGET="_blank">AGPL</A>'; if not,
+    see &lt;<A HREF="http://www.fsf.org/licensing/licenses/agpl-3.0.html" TARGET="_blank"">http://www.fsf.org/licensing/licenses/agpl-3.0.html</a>&gt;.
 
 <P>
     At your option, you may also redistribute and/or modify the files in the
@@ -88,9 +96,9 @@
 
 <P>
 XMLHttpRequest implementation based on the SAJAX toolkit, licensed under the
-terms of the BSD license.
-(c) copyright 2005 modernmethod, inc
-Perl backend version (c) copyright 2005 Nathan Schmidt
+terms of the BSD license.<BR>
+&copy; 2005 modernmethod, inc<BR>
+Perl backend version &copy; 2005 Nathan Schmidt
 
 <!-- artwork -->
 
@@ -98,4 +106,5 @@
 Contains public domain artwork from openclipart.org by mimooh and other
 authors.
 
-
+</BODY>
+</HTML>

Index: credits.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/docs/credits.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- credits.html	1 Apr 2008 23:30:08 -0000	1.1
+++ credits.html	2 Apr 2008 04:07:48 -0000	1.2
@@ -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 @@
 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 @@
 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 @@
 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>



More information about the freeside-commits mailing list