[Hippo-commits] SF.net SVN: opensim-viewer:[2] web
Status: Beta
Brought to you by:
manaj
|
From: Hippo O. V. S. C. <ope...@li...> - 2008-07-30 19:06:39
|
Revision: 2
http://opensim-viewer.svn.sourceforge.net/opensim-viewer/?rev=2&view=rev
Author: manaj
Date: 2008-07-30 19:06:38 +0000 (Wed, 30 Jul 2008)
Log Message:
-----------
Checking in the web site.
Added Paths:
-----------
web/cgi-bin/
web/htdocs/
web/htdocs/docu.php
web/htdocs/img/
web/htdocs/img/hippo_128_8.png
web/htdocs/index.php
web/htdocs/stats.php
web/php/
web/php/menu.inc
web/php/page.inc
web/php/page_footer.inc
web/php/page_header.inc
web/php/stats.inc
Added: web/htdocs/docu.php
===================================================================
--- web/htdocs/docu.php (rev 0)
+++ web/htdocs/docu.php 2008-07-30 19:06:38 UTC (rev 2)
@@ -0,0 +1,19 @@
+<?php
+$pageName = "Documentation";
+include "../php/page_header.inc";
+?>
+
+<h1>Documentation</h1>
+
+<p>Some documentation is still available at the old</p>
+<p style="margin-left:40px"><a href="http://mjm.game-host.org/opensim:viewer:">Hippo OpenSim Viewer Wiki</a></p>
+<p>More documentation coming soon...</p>
+
+<h2>Other Helpful Links</h2>
+<ul>
+<li><a href="http://osgrid.org/">OSGrid</a></li>
+<li><a href="http://opensimulator.org/">OpenSimulator</a></li>
+<li><a href="http://secondlife.com/">Second Life</a></li>
+</ul>
+
+<?php include "../php/page_footer.inc"; ?>
\ No newline at end of file
Property changes on: web/htdocs/img/hippo_128_8.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: web/htdocs/index.php
===================================================================
--- web/htdocs/index.php (rev 0)
+++ web/htdocs/index.php 2008-07-30 19:06:38 UTC (rev 2)
@@ -0,0 +1,44 @@
+<?php
+$pageName = "Home";
+include "../php/page_header.inc";
+?>
+
+<h1>Features</h1>
+
+<p>The Hippo OpenSim Viewer is a modified <a
+href="http://secondlife.com/" target="_blank">Second Life</a> viewer,
+targeted at <a href="http://opensimulator.org/"
+target="_blank">OpenSim</a> users. It allows building up to a height
+of 10,000 m, scaling prims up to 256x256x256 m and other exciting
+features. More specific OpenSim features are under development.</p>
+
+<p>The current version is based on the official Linden Lab release
+<b>1.20.15</b>.</p>
+
+<p><b>NOTE:</b> This viewer can connect to the Second Life grid, but
+there most of the new features do not work.</p>
+
+<h2>Limitations Removed or Extended</h2>
+<ul>
+<li>Build up to 10,000 m.</li>
+<li>Scale prims up to 256x256x256 m.</li>
+<li>Set transparency up to 100 in the edit window.</li>
+<li>Set the hole size down to 0.01 for prim shapes like torus.</li>
+<li>Set hollow up to 99.</li>
+<li>Join up to 100 groups.</li>
+</ul>
+
+<h2>Changed Default Values</h2>
+<ul>
+<li>Connect to <a href="http://osgrid.org" target="_blank">OSGrid</a>.</li>
+<li>Allow multiple concurrent viewers (always assume "-multiple").</li>
+<li>Increase the default value for MaxSelectDistance from 64 to 300.</li>
+</ul>
+
+<h2>General</h2>
+<ul>
+<li>Supports only the English language.</li>
+<li>Replace references to Second Life with OpenSim and OSGrid (ongoing).</li>
+</ul>
+
+<?php include "../php/page_footer.inc"; ?>
\ No newline at end of file
Added: web/htdocs/stats.php
===================================================================
--- web/htdocs/stats.php (rev 0)
+++ web/htdocs/stats.php 2008-07-30 19:06:38 UTC (rev 2)
@@ -0,0 +1,21 @@
+<?php
+$pageName = "Statistics";
+include "../php/page_header.inc";
+?>
+
+<h1>Statistics</h1>
+
+<p>When the viewer is started, it automatically checks, if a new
+version is available. For that purpose, it transfers the viewer
+product name, viewer version number, viewer channel, platform and MAC
+address to a web server. No other data is transferred.</p>
+
+<p>Each MAC address is regarded as a <i>unique user,</i> which is not
+completely accurate, but should be close enough. The MAC address is
+transferred and stored only to enable the statistics shown on the
+right-hand side of this page.</p>
+
+<p>My plans are to later extend this page with some user-over-time
+graphs.</p>
+
+<?php include "../php/page_footer.inc"; ?>
\ No newline at end of file
Added: web/php/menu.inc
===================================================================
--- web/php/menu.inc (rev 0)
+++ web/php/menu.inc 2008-07-30 19:06:38 UTC (rev 2)
@@ -0,0 +1,18 @@
+<?php
+
+function menuItem($name, $link)
+{
+ global $pageName;
+ $active = ($pageName == $name)? " id=\"menuActive\"": "";
+ echo "<a href=\"$link\" class=\"menuItem\"$active>$name</a><br/>";
+}
+
+menuItem("Home", "index.php");
+menuItem("Downloads", "http://sourceforge.net/project/platformdownload.php?group_id=235285");
+menuItem("Support", "http://sourceforge.net/forum/forum.php?forum_id=850697");
+menuItem("Documentation", "docu.php");
+menuItem("Forums", "http://sourceforge.net/forum/?group_id=235285");
+menuItem("Trackers", "http://sourceforge.net/tracker/?group_id=235285");
+menuItem("Statistics", "stats.php");
+
+?>
Added: web/php/page.inc
===================================================================
--- web/php/page.inc (rev 0)
+++ web/php/page.inc 2008-07-30 19:06:38 UTC (rev 2)
@@ -0,0 +1,12 @@
+<?php
+
+$widthMenu = 100;
+$widthStats = 100;
+
+?>
+
+<html>
+
+
+
+
Added: web/php/page_footer.inc
===================================================================
--- web/php/page_footer.inc (rev 0)
+++ web/php/page_footer.inc 2008-07-30 19:06:38 UTC (rev 2)
@@ -0,0 +1,7 @@
+
+</div></td></tr>
+</table>
+</center>
+
+</body>
+</html>
Added: web/php/page_header.inc
===================================================================
--- web/php/page_header.inc (rev 0)
+++ web/php/page_header.inc 2008-07-30 19:06:38 UTC (rev 2)
@@ -0,0 +1,104 @@
+<html>
+
+<head>
+<title>Hippo OpenSim Viewer</title>
+
+<style type="text/css">
+
+body { background-color:#dddddd; font:17px/23px Times,serif; color:#000000; }
+a { text-decoration:none; }
+a:link { color:#334499; }
+a:visited { color:#334499; }
+a:focus { color:#ffcc00; }
+a:hover { color:#ffcc00; }
+a:active { color:#ff0000; }
+h1 { font:bold 22px/22px Arial,sans; margin-top:0px; margin-bottom:0px; color:334499; }
+h2 { font:bold 17/17px Arial,sans; margin-top:10px; margin-bottom:5px; color:334499; }
+ul { margin-top:0px; }
+
+ /* page layout */
+table.page { width:95%; min-width:800px; }
+td.panel { padding:0px; vertical-align:top; }
+div.panel { padding:8px; }
+#titlePanel { height:120px; vertical-align:middle; }
+#menuColumn { width:120px; }
+#contentPanel { padding:20px; }
+#statsColumn { float:right; margin-left:15px; margin-bottom:15px; }
+#statsPanel { margin:5px; }
+
+ /* panel colors */
+table.page { background-color:#5577ff; border:4px solid #334499; }
+#titlePanel,#menuPanel,#statsPanel
+ { background-color:#334499; border:2px solid #ffffff; }
+#contentPanel { background-color:#ffffff; border:4px solid #334499; }
+#statsColumn { background-color:#5577ff; }
+#statsPanel { padding-left:0px; padding-right:0px; }
+
+ /* menu items */
+a.menuItem { font:14px/20px Arial,sans; }
+a.menuItem:link { color:#aaaaaa; }
+a.menuItem:visited { color:#aaaaaa; }
+a.menuItem:focus { color:#ffaaaa; }
+a.menuItem:hover { color:#ffaaaa; }
+a.menuItem:active { color:#ff0000; }
+#menuActive:link { color:#ffffff; }
+#menuActive:visited { color:#ffffff; }
+#menuActive:focus { color:#ffaaaa; }
+#menuActive:hover { color:#ffaaaa; }
+#menuActive:active { color:#ff0000; }
+
+ /* statistics */
+table.stats { width:160; }
+td.statsItem { color:#ffffff; padding-left:8px; padding-right:5px; }
+td.statsValue { color:#ffffff; text-align:right; padding-left:5px; padding-right:8px; }
+tr.statsLine0 { background-color:#334499; }
+tr.statsLine1 { background-color:#5555aa; }
+td.statsItem a { color:#cccccc; }
+
+</style>
+
+</head>
+
+<body>
+
+<center>
+<table class="page" cellspacing="12">
+
+<tr><td colspan="2" id="titlePanel" class="panel">
+
+ <!-- Title -->
+ <table cellspacing="0">
+ <tr>
+ <td rowspan="2" style="padding-left:25px; padding-right:25px;">
+ <img src="img/hippo_128_8.png" width="64" height="64"></td>
+ <td style="font:bold italic 28px/28px Arial,sans; color:#ffffff; vertical-align:top;">
+ Hippo OpenSim Viewer</td>
+ </tr>
+ <tr>
+ <td style="font:16px/20px Arial,sans; color:#ffffff; vertical-align:bottom;">
+ brought to you by MJM Labs</td>
+ </tr>
+ </table>
+
+</td></tr>
+<tr><td id="menuColumn" class="panel"><div id="menuPanel" class="panel">
+
+ <!-- Menu -->
+ <?php include "menu.inc"; ?>
+
+ <!-- SourceForge Logo -->
+ <div style="margin-top:15px;">
+ <font style="font:italic 10px/20px Arial,sans;color:#ffffff;">hosted on</font><br/>
+ <a href="http://sourceforge.net"><img
+ src="http://sflogo.sourceforge.net/sflogo.php?group_id=235285&type=1"
+ width="88" height="31" border="0" alt="SourceForge.net Logo"/></a>
+ </div>
+
+</div></td><td id="contentColumn" class="panel"><div id="contentPanel" class="panel">
+
+<div id="statsColumn"><div id="statsPanel" class="panel">
+
+ <!-- Statistics -->
+ <?php include "stats.inc"; ?>
+
+</div></div>
Added: web/php/stats.inc
===================================================================
--- web/php/stats.inc (rev 0)
+++ web/php/stats.inc 2008-07-30 19:06:38 UTC (rev 2)
@@ -0,0 +1,12 @@
+<table class="stats" cellspacing="0">
+<tr class="statsLine0"><td class="statsItem" colspan="2"
+ align="center"><b>Statistics</b> <a href="stats.php">(?)</a></td></tr>
+<tr class="statsLine1"><td class="statsItem">Total Users:</td><td class="statsValue">0</td></tr>
+<tr class="statsLine0"><td class="statsItem">Last 24 Hours:</td><td class="statsValue">0</td></tr>
+<tr class="statsLine1"><td class="statsItem">Last 30 Days:</td><td class="statsValue">0</td></tr>
+<tr class="statsLine0"><td class="statsItem">Total Windows:</td><td class="statsValue">0</td></tr>
+<tr class="statsLine1"><td class="statsItem">Total Linux:</td><td class="statsValue">0</td></tr>
+<tr class="statsLine0"><td colspan="2" class="statsValue">0000-00-00 00:00</td></tr>
+</table>
+
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|