Hey folks. I use this machine for testing and various tools I develop. -Brett
Applications/Tools I Maintain
events.unl.edu
The UNL Calendar of Events
UNL Directory (Peoplefinder)
Feel free to send me comments about the interface.
pear.unl.edu
A PEAR compatible channel server for UNL packages.
Other Helpful Tools I Maintain and Use
UNL Common information package.
UNL Academic N Blender File
Notes: The N rendered in this way, should not be used in any publication.
Why? Read the Toolbox available here: University Communications Resources
Template Converter
Converts pages based on the old table-based UNL Templates to the new CSS Based templates.
CSS Stylesheet Sampler
Log Statistics
Webserver Statistics
View Source+
<?php
error_reporting(E_ALL);
require_once 'UNL/Templates.php';
require_once $_SERVER['DOCUMENT_ROOT'].'/functions.php';
$page = UNL_Templates::factory('fixed');
$page->doctitle = '<title>UNL | ucommbieber.unl.edu</title>';
$page->titlegraphic = '<h1>ucommbieber.unl.edu</h1><h2>Oh teh Humanity!</h2>';
$page->leftRandomPromo = '';
$page->navlinks = navlinks();
$page->maincontentarea = <<<CONTENT
<div style="float:right;padding:1ex;width:200px" class="zenboxfeature">
<p>
Hey folks. I use this machine for testing and various tools I develop. <span class='sserifsub'>-Brett</span>
</p>
<a href="http://directory.unl.edu/vcards/bbieber2"><img alt="vcard" src="http://www.unl.edu/unlpub/2004sharedgraphics/icon_vcard.gif" /></a>
</div>
<h2>Applications/Tools I Maintain</h2>
<p><a href="http://events.unl.edu/"><strong>events.unl.edu</strong></a><br />The UNL Calendar of Events</p>
<p><a href="http://directory.unl.edu/"><strong>UNL Directory (Peoplefinder)</strong></a><br />
Feel free to send me comments about the interface.</p>
<p><a href="http://pear.unl.edu/"><strong>pear.unl.edu</strong></a><br />
A PEAR compatible channel server for UNL packages.</p>
<p><strong>Other Helpful Tools I Maintain and Use</strong><br />
<a href="http://ucommbieber.unl.edu/tools/common_information.php">UNL Common information package.</a>
</p>
<p><a href="/sharedfiles/Academic%20N.blend"><strong>UNL Academic N Blender File</strong></a> <br />
<span class="sserifsub">Notes: The N rendered in this way, should not be used in any publication.<br />
Why? Read the Toolbox available here: <a href="http://ucomm.unl.edu/ucomm/ucomm/resources_comm.shtml">University Communications Resources</a></span><br />
<a href="/images/blender.png"><img style="width:250px;" src="/images/blender.png" alt="Academic N in Blender" /></a>
<a href="/images/3d_N.png"><img style="width:250px;" src="/images/3d_N.png" alt="Academic N in Blender" /></a>
</p>
<p><a href="http://pear.unl.edu/convert/"><strong>Template Converter</strong></a><br />
Converts pages based on the old table-based UNL Templates to the new CSS Based templates.
</p>
<p><a href="http://ucommdev.unl.edu/webdev/css.php">CSS Stylesheet Sampler</a><br /></p>
<h2>Log Statistics</h2>
<p><a href="/log_stats/">Webserver Statistics</a></p>
CONTENT;
$page->maincontentarea .= viewSourceLink();
$page->leftcollinks = '<a href="http://www.last.fm/user/saltybeagle/?chartstyle=lastfmplain"><img src="http://imagegen.last.fm/lastfmplain/recenttracks/10/saltybeagle.gif" border="0" alt="" /></a>';
echo $page->toHtml();