From: <jen...@us...> - 2008-01-09 13:42:43
|
Revision: 355 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=355&view=rev Author: jenslehmann Date: 2008-01-09 05:42:40 -0800 (Wed, 09 Jan 2008) Log Message: ----------- layout change from absolute to relative layout, added footer, added technology buttons Modified Paths: -------------- trunk/src/dbpedia-navigator/default.css trunk/src/dbpedia-navigator/index.php Added Paths: ----------- trunk/src/dbpedia-navigator/images/sw-owl-green.png trunk/src/dbpedia-navigator/images/sw-sparql-green.png Modified: trunk/src/dbpedia-navigator/default.css =================================================================== --- trunk/src/dbpedia-navigator/default.css 2008-01-09 11:25:03 UTC (rev 354) +++ trunk/src/dbpedia-navigator/default.css 2008-01-09 13:42:40 UTC (rev 355) @@ -10,11 +10,11 @@ margin: 0; padding: 0; } - + html { font: 80%/1.2 "Lucida Grande", Helvetica, Arial, sans-serif; } - + p { margin: 8px 0; } @@ -32,15 +32,21 @@ */ #wrapper { - position: relative; - max-width: 100%; - padding: 15px; + /*position: relative;*/ + max-width: 100%; + padding: 1%; +/* padding: 15px; */ /* margin: 15px;*/ } #content { - margin: 0 19em; - overflow: hidden; + /*margin: 0 19em; + overflow: hidden;*/ + /*width: 10%;*/ + width: 60%; + float: left; + margin-left: 3px; + margin-right: 3px; /* border-left: 1px solid #bbb; border-right: 1px solid #bbb; padding: 0 5px;*/ @@ -53,15 +59,20 @@ * (3) positioning the content div is more straightforward. */ #leftSidebar { - position: absolute; - width: 18em; + /* position: absolute; */ + width: 18%; + min-width: 150px; + float: left; } #rightSidebar { - position: absolute; - width: 18em; - top: 15px; - right: 15px; + /* position: absolute; */ + /*float: right;*/ + width: 18%; + min-width: 150px; + float: left; + /*top: 15px; + right: 15px;*/ } #clear { @@ -335,4 +346,17 @@ #label { margin-bottom: 0.1em; +} + +#article { + min-height: 500px; +} + +#credits { + border: none; +} + +#footer { + clear: both; + text-align: center; } \ No newline at end of file Added: trunk/src/dbpedia-navigator/images/sw-owl-green.png =================================================================== (Binary files differ) Property changes on: trunk/src/dbpedia-navigator/images/sw-owl-green.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/src/dbpedia-navigator/images/sw-sparql-green.png =================================================================== (Binary files differ) Property changes on: trunk/src/dbpedia-navigator/images/sw-sparql-green.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/src/dbpedia-navigator/index.php =================================================================== --- trunk/src/dbpedia-navigator/index.php 2008-01-09 11:25:03 UTC (rev 354) +++ trunk/src/dbpedia-navigator/index.php 2008-01-09 13:42:40 UTC (rev 355) @@ -62,12 +62,12 @@ </script> </head> <body> - -<p><a href='clearsession.php'>start from scratch</a></p> + <h1>DBPedia Navigator</h1> <div id="layer" style="display:none"> <div id="layerContent" style="display:none"></div> -</div> +</div> + <div id="wrapper"> <div id="leftSidebar"> @@ -105,16 +105,19 @@ </div> <!-- boxcontent --> </div> <!-- box --> - <div id="validation"> - <?php - $uri = 'http://'.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']; + <div class="box" id="credits"> + <p>DBpedia Navigator is powered by ... <br /> + <a href="http://dl-learner.org">DL-Learner</a><br /> + <a href="http//dbpedia.org">DBpedia</a><br/> + <a href="http://virtuoso.openlinksw.com/wiki/main/">OpenLink Virtuoso</a><br /> + ... and implemented by <a href="http://jens-lehmann.org">Jens Lehmann</a> at + the <a href="http:/aksw.org">AKSW</a> research group (University of Leipzig).</p> - echo '<div><a href="http://validator.w3.org/check?uri='.$uri.'"'; - echo '><img src="images/valid-xhtml10.png" alt="valid XHTML 1.0" /></a>'."\n"; - echo '<a href="http://jigsaw.w3.org/css-validator/validator?uri='.$uri.'"'; - echo '><img src="images/valid-css.png" alt="valid CSS" /></a></div>'."\n"; - ?> - </div> + <a href="http://www.w3.org/2004/OWL/"><img src="images/sw-owl-green.png" alt="OWL logo" /></a> + <a href="http://www.w3.org/2001/sw/DataAccess/"><img src="images/sw-sparql-green.png" alt="SPARQL logo"/></a> + </div> + + </div><!-- END leftSidebar --> @@ -150,11 +153,24 @@ </div><!-- rightSidebar --> - <!-- <div id="clear"></div> --> - - + <!-- <div id="clear"></div> --> -</div><!-- wrapper --> +</div><!-- wrapper --> +<div id="footer"> + <p>Licensed under the GNU General Public License (GPL) 3 as part of the DL-Learner open source + project.<br />Copyright © Jens Lehmann 2007-2008 </p> + <div id="validation"> + <?php + $uri = 'http://'.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']; + + echo '<div><a href="http://validator.w3.org/check?uri='.$uri.'"'; + echo '><img src="images/valid-xhtml10.png" alt="valid XHTML 1.0" /></a>'."\n"; + echo '<a href="http://jigsaw.w3.org/css-validator/validator?uri='.$uri.'"'; + echo '><img src="images/valid-css.png" alt="valid CSS" /></a></div>'."\n"; + ?> + </div> + <p><a href='clearsession.php'>restart session and redownload WSDL file (for debugging)</a></p> +</div> </body> </html> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |