diff --git a/.htaccess b/.htaccess
index 7dc654776c7e296a29b3090dd5fb29804e64d0af..de6f9f6b54daabc8f3959ab24fcd25d37253e6cb 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,6 +1,11 @@
-RewriteEngine on
-RewriteBase /base/url
+SetEnv APPLICATION_ENV development
+
+RewriteEngine On
+RewriteBase /~tsteiner/CREQ3/
 RewriteRule ^document_root - [L]
-RewriteRule !\.(js|ico|gif|jpg|png|css)$ document_root/index.php [L]
-RewriteRule (.*) document_root/$1 [L]
+RewriteRule ^(.*$) document_root/$1 [NC,NS]
+RewriteCond %{REQUEST_FILENAME} !-s
+RewriteCond %{REQUEST_FILENAME} !-l
+RewriteCond %{REQUEST_FILENAME} !-d
+RewriteRule ^.*$ document_root/index.php [NC,L]
 
diff --git a/.htaccess.sample b/.htaccess.sample
new file mode 100644
index 0000000000000000000000000000000000000000..6dab99cde8a5ed1608398678dcc688d1b66d6c43
--- /dev/null
+++ b/.htaccess.sample
@@ -0,0 +1,11 @@
+SetEnv APPLICATION_ENV development
+
+RewriteEngine On
+#RewriteBase /rewrite/base/
+RewriteRule ^document_root - [L]
+RewriteRule ^(.*$) document_root/$1 [NC,NS]
+RewriteCond %{REQUEST_FILENAME} !-s
+RewriteCond %{REQUEST_FILENAME} !-l
+RewriteCond %{REQUEST_FILENAME} !-d
+RewriteRule ^.*$ document_root/index.php [NC,L]
+
diff --git a/.zfproject.xml b/.zfproject.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b57833b0644c08f6aa2b411a150439c3a2dfcb21
--- /dev/null
+++ b/.zfproject.xml
@@ -0,0 +1,85 @@
+<?xml version="1.0"?>
+<projectProfile type="default" version="1.11.11">
+  <projectDirectory>
+    <projectProfileFile filesystemName=".zfproject.xml"/>
+    <applicationDirectory classNamePrefix="Application_">
+      <apisDirectory enabled="false"/>
+      <configsDirectory>
+        <applicationConfigFile type="ini"/>
+      </configsDirectory>
+      <controllersDirectory>
+        <controllerFile controllerName="Index">
+          <actionMethod actionName="index"/>
+        </controllerFile>
+        <controllerFile controllerName="Error"/>
+      </controllersDirectory>
+      <formsDirectory enabled="false"/>
+      <modelsDirectory/>
+      <modulesDirectory enabled="false">
+        <moduleDirectory moduleName="courses">
+          <apisDirectory enabled="false"/>
+          <configsDirectory enabled="false"/>
+          <controllersDirectory/>
+          <formsDirectory enabled="false"/>
+          <modelsDirectory/>
+          <viewsDirectory>
+            <viewScriptsDirectory/>
+            <viewHelpersDirectory/>
+            <viewFiltersDirectory/>
+          </viewsDirectory>
+        </moduleDirectory>
+      </modulesDirectory>
+      <viewsDirectory>
+        <viewScriptsDirectory>
+          <viewControllerScriptsDirectory forControllerName="Index">
+            <viewScriptFile forActionName="index"/>
+          </viewControllerScriptsDirectory>
+          <viewControllerScriptsDirectory forControllerName="Error">
+            <viewScriptFile forActionName="error"/>
+          </viewControllerScriptsDirectory>
+        </viewScriptsDirectory>
+        <viewHelpersDirectory/>
+        <viewFiltersDirectory enabled="false"/>
+      </viewsDirectory>
+      <bootstrapFile filesystemName="Bootstrap.php"/>
+      <layoutsDirectory>
+        <layoutScriptsDirectory>
+          <layoutScriptFile layoutName="layout"/>
+        </layoutScriptsDirectory>
+      </layoutsDirectory>
+    </applicationDirectory>
+    <dataDirectory enabled="false">
+      <cacheDirectory enabled="false"/>
+      <searchIndexesDirectory enabled="false"/>
+      <localesDirectory enabled="false"/>
+      <logsDirectory enabled="false"/>
+      <sessionsDirectory enabled="false"/>
+      <uploadsDirectory enabled="false"/>
+    </dataDirectory>
+    <docsDirectory>
+      <file filesystemName="README.txt"/>
+    </docsDirectory>
+    <libraryDirectory>
+      <zfStandardLibraryDirectory enabled="false"/>
+    </libraryDirectory>
+    <publicDirectory>
+      <publicStylesheetsDirectory enabled="false"/>
+      <publicScriptsDirectory enabled="false"/>
+      <publicImagesDirectory enabled="false"/>
+      <publicIndexFile filesystemName="index.php"/>
+      <htaccessFile filesystemName=".htaccess"/>
+    </publicDirectory>
+    <projectProvidersDirectory enabled="false"/>
+    <temporaryDirectory enabled="false"/>
+    <testsDirectory>
+      <testPHPUnitConfigFile filesystemName="phpunit.xml"/>
+      <testPHPUnitBootstrapFile filesystemName="bootstrap.php"/>
+      <testApplicationDirectory>
+        <testApplicationControllerDirectory>
+          <testApplicationControllerFile forControllerName="Index"/>
+        </testApplicationControllerDirectory>
+      </testApplicationDirectory>
+      <testLibraryDirectory/>
+    </testsDirectory>
+  </projectDirectory>
+</projectProfile>
diff --git a/application/Bootstrap.php b/application/Bootstrap.php
new file mode 100644
index 0000000000000000000000000000000000000000..a55ac425e2899fbb5c51593c01347220b9c93c92
--- /dev/null
+++ b/application/Bootstrap.php
@@ -0,0 +1,37 @@
+<?php
+
+class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
+{
+    /*
+    protected function _initSession()
+    {
+        Zend_Session::start();
+    }
+    */
+
+    protected function _initAutoloader()
+    {
+        $options = $this->getOptions();
+	    define('MODULES_DIR', $options['resources']['frontController']['moduleDirectory']);
+        $autoloader = Zend_Loader_Autoloader::getInstance();
+        $autoloader->pushAutoloader(new Unl_Loader_Autoloader());
+    }
+    
+    protected function _initDb()
+    {
+        $this->getPluginResource('db')->init();
+        $db = Zend_Db_Table::getDefaultAdapter();
+        $db->query('SET NAMES utf8');
+        Zend_Registry::set('db', $db);
+    }
+
+    protected function _initCache()
+    {
+        Zend_Registry::set(
+            'cache',
+            $this->getPluginResource('cachemanager')->getCacheManager()->getCache('memcache')
+        );
+        error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING ^ E_STRICT);
+    }
+}
+
diff --git a/application/configs/application.ini.sample b/application/configs/application.ini.sample
new file mode 100644
index 0000000000000000000000000000000000000000..473605bf5b2a0449702a68ae070c61ce9f292404
--- /dev/null
+++ b/application/configs/application.ini.sample
@@ -0,0 +1,45 @@
+[production]
+phpSettings.display_startup_errors = 0
+phpSettings.display_errors = 0
+includePaths.library = APPLICATION_PATH "/../library"
+includePaths.zend = APPLICATION_PATH "/../vendor/ZendFramework/library"
+includePaths.pyrus = APPLICATION_PATH "/../vendor/pyrus/php"
+bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
+bootstrap.class = "Bootstrap"
+appnamespace = "Application"
+resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
+resources.frontController.params.displayExceptions = 0
+; resources.frontController.baseUrl = "/base/url"
+resources.frontController.plugins[] = Unl_Controller_Plugin_Auth_Cas
+resources.db.adapter = "pdo_mysql"
+resources.db.params.host = "localhost"
+resources.db.params.username = "username"
+resources.db.params.password = "password"
+resources.db.params.dbname = "database"
+resources.db.isDefaultTableAdapter = true
+resources.view.helperPath.Unl_View_Helper = Unl/View/Helper
+resources.cachemanager.memcache.frontend.name = Core
+resources.cachemanager.memcache.frontend.options.lifetime = 60
+resources.cachemanager.memcache.frontend.options.automatic_serialization = true
+resources.cachemanager.memcache.backend.name = memcached
+resources.cachemanager.memcache.backend.servers.0.host = localhost
+resources.cachemanager.memcache.backend.servers.0.port = 11211
+autoloaderNamespaces.unl = "Unl_"
+autoloaderNamespaces.emw = "Creq_"
+unl.cas.module = auth
+unl.cas.controller = index
+unl.templates.options.version = 3
+
+resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
+resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts/"
+resources.layout.layout = "unl_wdn"
+[staging : production]
+
+[testing : production]
+phpSettings.display_startup_errors = 1
+phpSettings.display_errors = 0
+
+[development : production]
+phpSettings.display_startup_errors = 1
+phpSettings.display_errors = 1
+resources.frontController.params.displayExceptions = 1
diff --git a/application/layouts/scripts/naked-layout.phtml b/application/layouts/scripts/naked-layout.phtml
new file mode 100644
index 0000000000000000000000000000000000000000..73cec598c24b0893c3b5383cd41043bf3a86d926
--- /dev/null
+++ b/application/layouts/scripts/naked-layout.phtml
@@ -0,0 +1,23 @@
+<?php echo "<?xml version='1.0' encoding='UTF-8'?>\n"; ?>
+<?php $this->headScript()->prependFile($this->baseUrl() . '/javascript/index.js'); ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" >
+	
+	<head>
+		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+		<title><?php echo $this->layout()->title; ?></title>
+		<link rel="shortcut icon" href="/ucomm/templatedependents/templatesharedcode/includes/metanfavico/favicon.ico" />
+		
+		<?php echo $this->headLink()->__toString(); ?> 
+	    <?php echo $this->headMeta()->__toString(); ?> 
+	    <?php echo $this->headScript()->__toString(); ?> 
+	    <?php echo $this->headStyle()->__toString(); ?> 
+	</head>
+	
+    <body onload="handleOnLoad('/~tsteiner/CREQ3');">
+        <div id="creqMain">
+            <?php echo $this->layout()->content; ?>
+        </div>
+    </body>
+
+</html>
\ No newline at end of file
diff --git a/application/layouts/scripts/unl_wdn.phtml b/application/layouts/scripts/unl_wdn.phtml
new file mode 100644
index 0000000000000000000000000000000000000000..16e8a3f2e8c434b9e2450bd9a68844abd7f49563
--- /dev/null
+++ b/application/layouts/scripts/unl_wdn.phtml
@@ -0,0 +1,106 @@
+<?php
+
+$this->headLink()->appendStylesheet($this->baseUrl() . '/css/index.css', 'all');
+$this->headLink()->appendStylesheet($this->baseUrl() . '/css/print.css', 'print');
+$this->headLink()->appendStylesheet('https://jquery-ui.googlecode.com/svn/tags/1.7.2/themes/base/ui.all.css', 'all');
+$this->headScript()->prependFile($this->baseUrl() . '/javascript/index.js');
+$this->headScript()->prependFile('https://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js');
+$this->headScript()->prependFile('https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js');
+
+$this->layout()->siteTitle = 'University Curriculum Approval';
+if (!$this->layout()->pageTitle) {
+    $this->layout()->pageTitle = 'Course Approval';
+}
+
+$navLinks = array();
+
+if (Zend_Auth::getInstance()->hasIdentity()) {
+    $navLinks[] = array(
+        'text' => 'My Requests',
+        'href' => 'requests',
+    );
+    $navLinks[] = array(
+        'text' => 'New Request',
+        'href' => 'requests/new',
+    );
+}
+
+$navLinks[] = array(
+    'text' => 'Curriculum Search',
+    'href' => 'courses/public-view/search',
+);
+$navLinks[] = array(
+    'text' => 'UCC Activity',
+    'href' => 'ucc/reports/monthly',
+);
+
+if (Zend_Auth::getInstance()->hasIdentity()) {
+    $user = Auth_UserModel::findCurrentUser();
+    $roles = Auth_GroupModel::findByUser($user);
+    if ($user && in_array(1, $roles->getId())) {
+        $navLinks[] = array(
+            'text' => 'Admin',
+            'href' => '',
+            'children' => array(
+                array(
+                    'text' => 'Users & Groups',
+                    'href' => 'auth/user-admin',
+                ),
+                array(
+                    'text' => 'Approval Bodies',
+                    'href' => 'requests/approval-body-admin',
+                ),
+                array(
+                    'text' => 'Approval Chains',
+                    'href' => 'requests/approval-chain-manager',
+                ),
+                array(
+                    'text' => 'Queues',
+                    'href' => 'requests/queue-manager',
+                ),
+                array(
+                    'text' => 'Withdrawn Requests',
+                    'href' => 'requests/withdrawn',
+                ),
+                array(
+                    'text' => 'Notification List',
+                    'href' => 'requests/notification',
+                ),
+            ),
+        );
+    }
+}
+
+$this->layout()->navLinks = $navLinks;
+
+$this->layout()->content = '<div id="creqMain">' . "\n"
+                         . $this->layout()->content . "\n"
+                         . '</div>' . "\n"
+                         . '<div class="clear">' . "\n"
+                         . '</div>' . "\n";
+
+$this->layout()->leftColLinks = array(
+    array(
+        'text' => 'Undergraduate Curriculum Committee',
+        'href' => 'http://www.unl.edu/svcaa/curriculum/',
+    ),
+    array(
+        'text' => 'Achievement-Centered Education',
+        'href' => 'http://ace.unl.edu/',
+    ),
+);
+
+$this->layout()->contactInfo = <<<EOF
+<strong>Undergraduate Education</strong><br />
+223 Seaton Hall<br />
+Lincoln NE 68588-0683<br />
+(402) 472-6023<br />
+Fax: (402) 472-1910
+EOF;
+
+$this->layout()->loginPath = '/auth/index/login';
+$this->layout()->logoutPath = '/auth/index/logout';
+
+$html = $this->WdnTemplate();
+$html = strtr($html, array('<body' => '<body onload="handleOnLoad(\'' . $this->baseUrl() . '\');"'));
+echo $html;
diff --git a/application/modules/auth/controllers/IndexController.php b/application/modules/auth/controllers/IndexController.php
index c07213594ca3c1a0d0ad14a0cabdb86d2bbea18c..fcabaf6583ea057c8f68ae7cd64a9f3782652433 100644
--- a/application/modules/auth/controllers/IndexController.php
+++ b/application/modules/auth/controllers/IndexController.php
@@ -7,93 +7,20 @@
  * @version 
  */
 
-require_once 'Zend/Controller/Action.php';
-
-class Auth_IndexController extends Creq_Controller_Action {
+class Auth_IndexController extends Unl_Controller_Action_Authenticate
+{
 	
 	public function indexAction()
 	{
 		$this->_redirect('/auth/index/login');
 	}
 	
-	public function loginAction()
-	{
-		$session = new Zend_Session_Namespace(__CLASS__);
-		$baseUrl = Zend_Controller_Front::getInstance()->getBaseUrl();
-		try {
-            $referer = Zend_Uri_Http::factory($_SERVER['HTTP_REFERER']);
-		} catch (Exception $e) {
-		}
-		if ($referer && 
-		    $referer->getHost() == $_SERVER['HTTP_HOST'] &&
-		    (!$referer->getPort() || $referer->getPort() == $_SERVER['SERVER_PORT']) &&
-		    substr($referer->getPath(), 0, strlen($baseUrl)) == $baseUrl) {
-		    $session->referer = substr($referer->getPath(), strlen($baseUrl));
-		    if ($referer->getQuery()) {
-		    	$session->referer .= '?' . $referer->getQuery();
-		    }
-		    if ($referer->getFragment()) {
-		    	$session->referer .= '#' . $referer->getFragment();
-		    }
-		} else {
-			$session->referer = '/';
-		}
-		
-		$this->_redirect($this->_getCasAdapter()->getLoginUrl());
-	}
-	
-	public function logoutAction()
+	protected function _setupUser($username)
 	{
-		Zend_Auth::getInstance()->clearIdentity();
-		$this->_redirect($this->_getCasAdapter()->getLogoutUrl());
-	}
-	
-	public function validateAction()
-	{
-        $auth = Unl_Auth::getInstance();
-		$casAdapter = $this->_getCasAdapter();
-		if ($this->_getParam('logoutRequest')) {
-			$casAdapter->handleLogoutRequest($this->_getParam('logoutRequest'));
-		}
-		$auth->pushAdapter(new Unl_Auth_Adapter_Cas($casAdapter));
-		
-		try {
-			$result = $auth->authenticate();
-		} catch (Exception $e) {
-			//
-		}
-		
-		if ($result && $result->isValid()) {
-	        $user = Auth_UserModel::findCurrentUser();
-	        if (!$user) {
-	            $user = Auth_UserModel::fetchNewFromLdap($auth->getIdentity());
-	        }
-		} else {
-			Zend_Auth::getInstance()->clearIdentity();
-			setcookie('unl_sso', 'fake', time() - 60*60*24, '/', '.unl.edu');
-		}
-		
-		$session = new Zend_Session_Namespace(__CLASS__);
-		if ($session->referer) {
-			$this->_redirect($session->referer);
-		} else {
-        	$this->_redirect('/');
-		}
-	}
-	
-	/**
-	 * Sets up the CAS adapter and returns it.
-	 * @return Unl_Cas
-	 */
-	protected function _getCasAdapter()
-	{		
-        if ($_SERVER['HTTPS'] == 'on') {
-            $serviceUrl = 'https://';
-        } else {
-            $serviceUrl = 'http://';
+        $user = Auth_UserModel::findCurrentUser();
+        if (!$user) {
+            $user = Auth_UserModel::fetchNewFromLdap($username);
         }
-        $serviceUrl .= $_SERVER['SERVER_NAME'] . Zend_Controller_Front::getInstance()->getBaseUrl() . '/auth/index/validate';
-        return new Unl_Cas($serviceUrl, 'https://login.unl.edu/cas', $this->_getParam('ticket'));
 	}
-
+	
 }
diff --git a/application/modules/auth/models/UserModel.php b/application/modules/auth/models/UserModel.php
index 36892fb666c22a8eb2f1efab4e9df8dc1ce0da9a..cc771d4256fa95491d30ee3e16d3f9f4904e3fc9 100644
--- a/application/modules/auth/models/UserModel.php
+++ b/application/modules/auth/models/UserModel.php
@@ -416,7 +416,7 @@ class Auth_UserModel extends Unl_Model {
         $baseUrl = Zend_Controller_Front::getInstance()->getBaseUrl();
         $redirectUri = substr($redirectUri, strlen($baseUrl));
         
-        $authSession = new Zend_Session_Namespace('Auth_IndexController');
+        $authSession = new Zend_Session_Namespace('Unl_Controller_Action_Authenticate');
         $authSession->referer = $redirectUri;
         
         
@@ -425,7 +425,7 @@ class Auth_UserModel extends Unl_Model {
         } else {
             $serviceUrl = 'http://';
         }
-        $serviceUrl .= $_SERVER['SERVER_NAME'] . Zend_Controller_Front::getInstance()->getBaseUrl() . '/auth/index/validate';
+        $serviceUrl .= $_SERVER['SERVER_NAME'] . Zend_Controller_Front::getInstance()->getBaseUrl() . '/auth/index/cas';
         
         $casAdapter = new Unl_Cas($serviceUrl, 'https://login.unl.edu/cas');
         if (!$required) {
diff --git a/application/modules/courses/views/scripts/edit/index.phtml b/application/modules/courses/views/scripts/edit/index.phtml
index 590dfb25fe8d305c8ab36bded4ce763829ec3dd6..a5520bf0a090e413ffb3764c3f118e631a95881f 100644
--- a/application/modules/courses/views/scripts/edit/index.phtml
+++ b/application/modules/courses/views/scripts/edit/index.phtml
@@ -2,7 +2,7 @@
 <?php $this->headScript()->appendFile($this->baseUrl() . '/tinymce/jscripts/tiny_mce/tiny_mce.js'); ?>
 <?php $this->headScript()->appendFile($this->baseUrl() . '/javascript/tinymce.js'); ?>
 <?php $this->headScript()->appendFile($this->baseUrl() . '/javascript/courses/edit.js'); ?>
-<?php $this->layout()->breadcrumbs = array('Editing: ' . $this->course->getCourseCode() . ' (' . $this->request->getTypeDescription() . ')'); ?>
+<?php $this->layout()->pageTitle = 'Editing: ' . $this->course->getCourseCode() . ' (' . $this->request->getTypeDescription() . ')'; ?>
 
 
 
diff --git a/application/modules/courses/views/scripts/public-view/results.phtml b/application/modules/courses/views/scripts/public-view/results.phtml
index 2658dfab9af54f857274704a522fdc7f56064cb4..2c9952f738e8f639327b1f7c9698b83701f0342c 100644
--- a/application/modules/courses/views/scripts/public-view/results.phtml
+++ b/application/modules/courses/views/scripts/public-view/results.phtml
@@ -1,6 +1,5 @@
 <?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/courses/public-view/results.css', 'all'); ?>
-<?php $this->layout()->breadcrumbs = array('Curriculum Search'); ?>
-<?php $this->layout()->tagline = 'Curriculum Search'; ?>
+<?php $this->layout()->pageTitle = 'Curriculum Search'; ?>
 <?php $this->layout()->hideMenu = true; ?>
 
 
diff --git a/application/modules/courses/views/scripts/public-view/search.phtml b/application/modules/courses/views/scripts/public-view/search.phtml
index a638c95f1e3a9985bcabfc5bc63fd993a3e0d53b..cbf4fe833860fdfbbd16001bfb8ae818663e4a94 100644
--- a/application/modules/courses/views/scripts/public-view/search.phtml
+++ b/application/modules/courses/views/scripts/public-view/search.phtml
@@ -1,6 +1,5 @@
 <?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/courses/public-view/search.css', 'all'); ?>
-<?php $this->layout()->breadcrumbs = array('Curriculum Search'); ?>
-<?php $this->layout()->tagline = 'Curriculum Search'; ?>
+<?php $this->layout()->pageTitle = 'Curriculum Search'; ?>
 <?php $this->layout()->hideMenu = true; ?>
 
 
diff --git a/application/modules/courses/views/scripts/view/index.phtml b/application/modules/courses/views/scripts/view/index.phtml
index c5a4f16ed1095f1425f594c2092d7235bfcef874..78ac9f2e941d73d9f3147069330f188e6eef9fb2 100644
--- a/application/modules/courses/views/scripts/view/index.phtml
+++ b/application/modules/courses/views/scripts/view/index.phtml
@@ -6,7 +6,7 @@ if ($this->preview) {
 } else {
 	$breadcrumb = 'Viewing';
 }
-$this->layout()->breadcrumbs = array($breadcrumb . ': ' . $this->course->getCourseCode() . ' (' . $this->request->getTypeDescription() . ')');
+$this->layout()->pageTitle = $breadcrumb . ': ' . $this->course->getCourseCode() . ' (' . $this->request->getTypeDescription() . ')';
 ?>
 
 <?php if ($this->decisionMessage) { ?>
diff --git a/application/modules/default/views/scripts/index/index.phtml b/application/modules/default/views/scripts/index/index.phtml
index 248023d3c17d57b0f50537d9a26692ff9e55ca69..41edfddd3d63ba69ea05c3ced68d4355f373457c 100644
--- a/application/modules/default/views/scripts/index/index.phtml
+++ b/application/modules/default/views/scripts/index/index.phtml
@@ -1,4 +1,4 @@
-<?php $this->layout()->breadcrumbs = array('Welcome'); ?>
+<?php $this->layout()->pageTitle = 'Welcome'; ?>
 <?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/index/index.css', 'all'); ?>
 <?php
 if (Zend_Auth::getInstance()->getIdentity()) {
diff --git a/application/modules/requests/views/scripts/approval-body-admin/edit-body.phtml b/application/modules/requests/views/scripts/approval-body-admin/edit-body.phtml
index 0559f525c32b2aeafc3dd0656b5abaa9358d4cbe..1904482607d381a5370dd4e0e891adbf1eba53f0 100644
--- a/application/modules/requests/views/scripts/approval-body-admin/edit-body.phtml
+++ b/application/modules/requests/views/scripts/approval-body-admin/edit-body.phtml
@@ -1,7 +1,6 @@
 <?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/requests/approval-body-admin.css', 'all'); ?>
 <?php $this->headScript()->appendFile($this->baseUrl() . '/javascript/requests/approval-body-admin.js'); ?>
-<?php $this->layout()->breadcrumbs = array('Approval Body Admin'); ?>
-<?php $this->layout()->hideMenu = true; ?>
+<?php $this->layout()->pageTitle = 'Approval Body Admin'; ?>
 
 <?php if ($this->approvalBody->getId()) { ?>
 <h1>Editing Body: <?php echo $this->approvalBody->getName(); ?></h1>
diff --git a/application/modules/requests/views/scripts/approval-body-admin/edit-role.phtml b/application/modules/requests/views/scripts/approval-body-admin/edit-role.phtml
index 18a23e2d327e6a830b879cf43e5f4698ccfa744b..a040f30dcfc5274dca4e1cb50d8d202fe47c6d8d 100644
--- a/application/modules/requests/views/scripts/approval-body-admin/edit-role.phtml
+++ b/application/modules/requests/views/scripts/approval-body-admin/edit-role.phtml
@@ -2,7 +2,7 @@
 <?php $this->headScript()->appendFile($this->baseUrl() . '/tinymce/jscripts/tiny_mce/tiny_mce.js'); ?>
 <?php $this->headScript()->appendFile($this->baseUrl() . '/javascript/tinymce.js'); ?>
 <?php $this->headScript()->appendFile($this->baseUrl() . '/javascript/requests/approval-body-admin.js'); ?>
-<?php $this->layout()->breadcrumbs = array('Approval Body Admin'); ?>
+<?php $this->layout()->pageTitle = 'Approval Body Admin'; ?>
 <?php $this->layout()->hideMenu = true; ?>
 
 
diff --git a/application/modules/requests/views/scripts/approval-body-admin/index.phtml b/application/modules/requests/views/scripts/approval-body-admin/index.phtml
index 0e191c60229da466b44b3bca155be411d6e95479..2a912e3eba1a470f4a0b1f2f47d79add28aa74ae 100644
--- a/application/modules/requests/views/scripts/approval-body-admin/index.phtml
+++ b/application/modules/requests/views/scripts/approval-body-admin/index.phtml
@@ -1,6 +1,6 @@
 <?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/requests/approval-body-admin.css', 'all'); ?>
 <?php $this->headScript()->appendFile($this->baseUrl() . '/javascript/requests/approval-body-admin.js'); ?>
-<?php $this->layout()->breadcrumbs = array('Approval Body Admin'); ?>
+<?php $this->layout()->pageTitle = 'Approval Body Admin'; ?>
 <?php $this->layout()->hideMenu = true; ?>
 
 <ul class="editMenu">
diff --git a/application/modules/requests/views/scripts/approval-chain-manager/index.phtml b/application/modules/requests/views/scripts/approval-chain-manager/index.phtml
index e03f94a5c8c3e0fba919b11c8dffbafb535d7b33..4ec32cd7cd748f50f30588cf936d143f4aaea77d 100644
--- a/application/modules/requests/views/scripts/approval-chain-manager/index.phtml
+++ b/application/modules/requests/views/scripts/approval-chain-manager/index.phtml
@@ -1,7 +1,7 @@
 <?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/requests/approval-chain-manager.css', 'all'); ?>
 <?php $this->headScript()->appendFile($this->baseUrl() . '/javascript/requests/approval-chain-manager.js'); ?>
 <?php $this->headScript()->appendFile($this->baseUrl() . '/javascript/courses/edit.js'); ?>
-<?php $this->layout()->breadcrumbs = array('Approval Chain Manager'); ?>
+<?php $this->layout()->pageTitle = 'Approval Chain Manager'; ?>
 <?php $this->layout()->hideMenu = true; ?>
 
 <ul class="editMenu">
diff --git a/application/modules/requests/views/scripts/index/index.phtml b/application/modules/requests/views/scripts/index/index.phtml
index b1fb8a065ffbf48acebbf935e0c410b9f2eb5aae..c4edbd17a2e462e608aa8cd0eb4827a44916ea22 100644
--- a/application/modules/requests/views/scripts/index/index.phtml
+++ b/application/modules/requests/views/scripts/index/index.phtml
@@ -1,4 +1,4 @@
-<?php $this->layout()->breadcrumbs = array('My Requests'); ?>
+<?php $this->layout()->pageTitle = 'My Requests'; ?>
 <?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/requests/index.css', 'all'); ?>
 <?php $this->headScript()->appendFile($this->baseUrl() . '/javascript/requests/index.js'); ?>
 <?php $this->headScript()->appendFile($this->baseUrl() . '/javascript/jquery.tablesorter.js'); ?>
diff --git a/application/modules/requests/views/scripts/notification/edit-message.phtml b/application/modules/requests/views/scripts/notification/edit-message.phtml
index 9dd63669231011b87914be3ea281db57c4476f35..370e5a59199d6872be9219b07a36d02e6a4873aa 100644
--- a/application/modules/requests/views/scripts/notification/edit-message.phtml
+++ b/application/modules/requests/views/scripts/notification/edit-message.phtml
@@ -1,4 +1,4 @@
-<?php $this->layout()->tagline = 'Edit Email Notification'; ?>
+<?php $this->layout()->pageTitle = 'Edit Email Notification'; ?>
 
 <form action="<?php echo $this->baseUrl(); ?>/requests/notification/edit-message.post">
 	<label>
diff --git a/application/modules/requests/views/scripts/notification/index.phtml b/application/modules/requests/views/scripts/notification/index.phtml
index 13b46b0f3426b6355df2fd49f626638dab0415e1..65cc2166e6439a05f0504ca205a09b9b88991272 100644
--- a/application/modules/requests/views/scripts/notification/index.phtml
+++ b/application/modules/requests/views/scripts/notification/index.phtml
@@ -1,4 +1,4 @@
-<?php $this->layout()->tagline = 'Current Notification Summary'; ?>
+<?php $this->layout()->pageTitle = 'Current Notification Summary'; ?>
 
 <div>
 	<a href="<?php echo $this->baseUrl(); ?>/requests/notification/edit-message">Edit Notification Email</a>
diff --git a/application/modules/requests/views/scripts/queue-manager/index.phtml b/application/modules/requests/views/scripts/queue-manager/index.phtml
index f142b522edcdf64b5e3ef5cc8f715f91f3ebbbdc..5402310e4886f462f89420cb7fa61b7bff9aae67 100644
--- a/application/modules/requests/views/scripts/queue-manager/index.phtml
+++ b/application/modules/requests/views/scripts/queue-manager/index.phtml
@@ -1,4 +1,4 @@
-<?php $this->layout()->breadcrumbs = array('Queue Manager'); ?>
+<?php $this->layout()->pageTitle = 'Queue Manager'; ?>
 
 <ul>
 <?php $this->queues->orderBy('getName'); ?>
diff --git a/application/modules/requests/views/scripts/queue-manager/view.phtml b/application/modules/requests/views/scripts/queue-manager/view.phtml
index 45f1668b3b366416c401dc40d242a0da64ac67c9..37286da57cb47dc4aecbad18f7ed83c0dbb10690 100644
--- a/application/modules/requests/views/scripts/queue-manager/view.phtml
+++ b/application/modules/requests/views/scripts/queue-manager/view.phtml
@@ -1,4 +1,4 @@
-<?php $this->layout()->breadcrumbs = array('Queue Manager: ' . $this->queue->getName()); ?>
+<?php $this->layout()->pageTitle = 'Queue Manager: ' . $this->queue->getName(); ?>
 <?php $this->headScript()->appendFile($this->baseUrl() . '/javascript/requests/queue-manager.js'); ?>
 
 <script type="text/javascript">
diff --git a/application/modules/requests/views/scripts/request-type-admin/edit.phtml b/application/modules/requests/views/scripts/request-type-admin/edit.phtml
index c65c69bd6c5e502106db0c39908d7618a4e39af3..7bf9760a68a0b9368111a0aeed7635cb8958da82 100644
--- a/application/modules/requests/views/scripts/request-type-admin/edit.phtml
+++ b/application/modules/requests/views/scripts/request-type-admin/edit.phtml
@@ -1,5 +1,4 @@
-<?php $this->layout()->breadcrumbs = array('Request Type Admin'); ?>
-<?php $this->layout()->hideMenu = true; ?>
+<?php $this->layout()->pageTitle = 'Request Type Admin'; ?>
 
 
 <?php if ($this->requestType->getId()) { ?>
diff --git a/application/modules/requests/views/scripts/request-type-admin/index.phtml b/application/modules/requests/views/scripts/request-type-admin/index.phtml
index a4c7861520f24e4f9eb75d9f481def0641892ebd..ff5193d8813c3d9bf3edaa98c0c2b43d5e0c6410 100644
--- a/application/modules/requests/views/scripts/request-type-admin/index.phtml
+++ b/application/modules/requests/views/scripts/request-type-admin/index.phtml
@@ -1,5 +1,4 @@
-<?php $this->layout()->breadcrumbs = array('Request Type Admin'); ?>
-<?php $this->layout()->hideMenu = true; ?>
+<?php $this->layout()->pageTitle = 'Request Type Admin'; ?>
 
 <ul class="editMenu">
     <?php $this->requestTypes->orderBy('getName'); ?>
diff --git a/application/modules/requests/views/scripts/withdrawn/index.phtml b/application/modules/requests/views/scripts/withdrawn/index.phtml
index f618117117a35540f313950b05f8e035abd5d374..5949d61bb67f253775d9c287550176c6fce50687 100644
--- a/application/modules/requests/views/scripts/withdrawn/index.phtml
+++ b/application/modules/requests/views/scripts/withdrawn/index.phtml
@@ -1,4 +1,4 @@
-<?php $this->layout()->breadcrumbs = array('Withdrawn Requests'); ?>
+<?php $this->layout()->pageTitle = 'Withdrawn Requests'; ?>
 <?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/requests/withdrawn.css', 'all'); ?>
 
 <table>
diff --git a/docs/README.txt b/docs/README.txt
new file mode 100644
index 0000000000000000000000000000000000000000..efd9a7ef5f7014fef6acb98a4ad67ba62f477404
--- /dev/null
+++ b/docs/README.txt
@@ -0,0 +1,30 @@
+README
+======
+
+This directory should be used to place project specfic documentation including
+but not limited to project notes, generated API/phpdoc documentation, or
+manual files generated or hand written.  Ideally, this directory would remain
+in your development environment only and should not be deployed with your
+application to it's final production location.
+
+
+Setting Up Your VHOST
+=====================
+
+The following is a sample VHOST you might want to consider for your project.
+
+<VirtualHost *:80>
+   DocumentRoot "/Volumes/Storage/Network_Users/tsteiner/Sites/CREQ3/public"
+   ServerName CREQ3.local
+
+   # This should be omitted in the production environment
+   SetEnv APPLICATION_ENV development
+
+   <Directory "/Volumes/Storage/Network_Users/tsteiner/Sites/CREQ3/public">
+       Options Indexes MultiViews FollowSymLinks
+       AllowOverride All
+       Order allow,deny
+       Allow from all
+   </Directory>
+
+</VirtualHost>
diff --git a/document_root/index.php b/document_root/index.php
index 9256bf5a9c58f008ab72e28be51fa9c1f909ed4e..c9589d1007f0a2fb168b1104e19d456505e64266 100644
--- a/document_root/index.php
+++ b/document_root/index.php
@@ -1,78 +1,26 @@
 <?php
 
-$startTime = microtime(true);
-
-define('APPLICATION_DIR', dirname(__FILE__) . '/../application');
-define('MODULES_DIR', APPLICATION_DIR . '/modules');
-
-set_include_path(get_include_path() . PATH_SEPARATOR . '../library');
-require_once 'Zend/Loader/Autoloader.php';
-require_once 'Unl/Loader.php';
-$autoloader = Zend_Loader_Autoloader::getInstance();
-$autoloader->registerNamespace('Creq_');
-$autoloader->registerNamespace('Unl_');
-$autoloader->pushAutoloader(new Unl_Loader_Autoloader());
-
-$config = new Zend_Config_Ini(APPLICATION_DIR . '/config.ini');
-Zend_Registry::set('config', $config);
-
-$pearPath = $config->pear->include_path;
-if ($pearPath) {
-    set_include_path(get_include_path() . PATH_SEPARATOR . $pearPath);
-}
-
-$sessionConfig = $config->session->toArray();
-$sessionConfig['cookie_path'] = $config->application->baseUrl;
-Zend_Session::setOptions($sessionConfig);
-Zend_Session::start();
-if (count($_SESSION) > 0) {
-    setcookie(session_name(), $_COOKIE[session_name()], time() + ini_get('session.cookie_lifetime'), $config->application->baseUrl);
-}
-
-$cache = Zend_Cache::factory(
-    'Core',
-    'Memcached',
-    array('lifetime' => 60, 'automatic_serialization' => true),
-    array('servers' => array('host' => 'localhost', 'port' => 11211))
+// Define path to application directory
+defined('APPLICATION_PATH')
+    || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
+
+// Define application environment
+defined('APPLICATION_ENV')
+    || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));
+
+// Ensure library/ is on include_path
+set_include_path(implode(PATH_SEPARATOR, array(
+    realpath(APPLICATION_PATH . '/../vendor/ZendFramework/library'),
+    get_include_path(),
+)));
+
+/** Zend_Application */
+require_once 'Zend/Application.php';
+
+// Create application, bootstrap, and run
+$application = new Zend_Application(
+    APPLICATION_ENV,
+    APPLICATION_PATH . '/configs/application.ini'
 );
-Zend_Registry::set('cache', $cache);
-Zend_Date::setOptions(array('cache' => $cache)); 
-
-$db = Zend_Db::factory($config->database);
-$db->query('SET NAMES utf8');
-Zend_Registry::set('db', $db);
-$db->getProfiler()->setEnabled(true);
-
-$scheduleDb = Zend_Db::factory($config->scheduleDb);
-Zend_Registry::set('scheduleDb', $scheduleDb);
-
-// Set up potential loggers.
-$log = new Zend_Log();
-$log->addWriter(new Zend_Log_Writer_Null());
-if ($config->log instanceof Zend_Config) {
-    if ($config->log->stream) {
-        $log->addWriter(new Zend_Log_Writer_Stream($config->log->stream));
-    }
-    if ($config->log->firebug) {
-        $log->addWriter(new Zend_Log_Writer_Firebug());
-    }
-    if ($config->log->syslog instanceof Zend_Config) {
-        $log->addWriter(new Zend_Log_Writer_Syslog($config->log->syslog->toArray()));
-    }
-}
-Zend_Registry::set('log', $log);
-
-Zend_Layout::startMvc();
-$layout = Zend_Layout::getMvcInstance();
-$layout->setLayoutPath(MODULES_DIR . '/default/views/scripts');
-
-$front = Zend_Controller_Front::getInstance();
-$front->addModuleDirectory(MODULES_DIR);
-$front->setBaseUrl($config->application->baseUrl);
-$front->dispatch();
-
-/*
-echo '<!-- Query Count:  ' . $db->getProfiler()->getTotalNumQueries() . "\n";
-echo '     Query Time:   ' . $db->getProfiler()->getTotalElapsedSecs() . "\n";
-echo '     Request Time: ' . (microtime(true) - $startTime) . ' seconds -->';
-*/
+$application->bootstrap()
+            ->run();
diff --git a/library/Creq/Controller/Action.php b/library/Creq/Controller/Action.php
index ac76490dc6b6b6507e871113c17b90e98bb67e2a..c38351323c5c374f1073f5db6ed877faa0cee3b9 100644
--- a/library/Creq/Controller/Action.php
+++ b/library/Creq/Controller/Action.php
@@ -11,25 +11,5 @@ class Creq_Controller_Action extends Unl_Controller_Action
         parent::init();
         $this->view->addHelperPath(dirname(__FILE__) . '/../View/Helper', 'Creq_View_Helper');
         $this->view->doctype()->setDoctype(Zend_View_Helper_Doctype::XHTML1_TRANSITIONAL);
-        // Zend_Controller_Action_HelperBroker::addPrefix('Creq_Controller_Helper');
-        
-        $this->_transparentCasLogin();
-    }
-    
-    protected function _transparentCasLogin()
-    {
-    	// The auth module is doing its thing (probably an active login or logout). Let it be.
-    	if (get_class($this) == 'Auth_IndexController') {
-    		return;
-    	}
-    	
-    	// If a user is already logged in, only redirect to CAS if this is a GET request.
-    	if (Zend_Auth::getInstance()->hasIdentity() && $_SERVER['REQUEST_METHOD'] != 'GET') {
-    	    return;
-    	}
-    	
-        if (array_key_exists('unl_sso', $_COOKIE) || Zend_Auth::getInstance()->hasIdentity()) {	
-            Auth_UserModel::authenticateUser();
-        }
     }
 }
diff --git a/tests/application/controllers/IndexControllerTest.php b/tests/application/controllers/IndexControllerTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..b63670f2837a7ae2d73cbb5c169c29373dc03a82
--- /dev/null
+++ b/tests/application/controllers/IndexControllerTest.php
@@ -0,0 +1,14 @@
+<?php
+
+class IndexControllerTest extends Zend_Test_PHPUnit_ControllerTestCase
+{
+
+    public function setUp()
+    {
+        $this->bootstrap = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
+        parent::setUp();
+    }
+
+
+}
+
diff --git a/tests/bootstrap.php b/tests/bootstrap.php
new file mode 100644
index 0000000000000000000000000000000000000000..7022b5cad3f0df232aeb2e561b3cefebd3597555
--- /dev/null
+++ b/tests/bootstrap.php
@@ -0,0 +1,18 @@
+<?php
+
+// Define path to application directory
+defined('APPLICATION_PATH')
+    || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
+
+// Define application environment
+defined('APPLICATION_ENV')
+    || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'testing'));
+
+// Ensure library/ is on include_path
+set_include_path(implode(PATH_SEPARATOR, array(
+    realpath(APPLICATION_PATH . '/../library'),
+    get_include_path(),
+)));
+
+require_once 'Zend/Loader/Autoloader.php';
+Zend_Loader_Autoloader::getInstance();
diff --git a/tests/phpunit.xml b/tests/phpunit.xml
new file mode 100644
index 0000000000000000000000000000000000000000..75dc6ede83fc4ee4e9154b4e8a8c2cfbd3135983
--- /dev/null
+++ b/tests/phpunit.xml
@@ -0,0 +1,17 @@
+<phpunit bootstrap="./bootstrap.php">
+    <testsuite name="Application Test Suite">
+        <directory>./application</directory>
+    </testsuite>
+    <testsuite name="Library Test Suite">
+        <directory>./library</directory>
+    </testsuite>
+    
+    <filter>
+        <!-- If Zend Framework is inside your project's library, uncomment this filter -->
+        <!-- 
+        <whitelist>
+            <directory suffix=".php">../../library/Zend</directory>
+        </whitelist>
+        -->
+    </filter>
+</phpunit>
diff --git a/vendor/pyrus/.configsnapshots/configsnapshot-2012-03-14 18-35-30.xml b/vendor/pyrus/.configsnapshots/configsnapshot-2012-03-14 18-35-30.xml
new file mode 100644
index 0000000000000000000000000000000000000000..8a622a523c76ed9e4774853fd33532fbfa010283
--- /dev/null
+++ b/vendor/pyrus/.configsnapshots/configsnapshot-2012-03-14 18-35-30.xml	
@@ -0,0 +1,2 @@
+<?xml version="1.0"?>
+<pearconfig version="1.0"><php_dir>/Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/php</php_dir><ext_dir>/usr/lib/php/extensions/no-debug-non-zts-20090626</ext_dir><cfg_dir>/Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/cfg</cfg_dir><doc_dir>/Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/docs</doc_dir><bin_dir>/usr/bin</bin_dir><data_dir>/Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/data</data_dir><www_dir>/Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/www</www_dir><test_dir>/Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/tests</test_dir><src_dir>/Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/src</src_dir><php_bin>/usr/bin/php</php_bin><php_ini>/private/etc/php.ini</php_ini><php_prefix></php_prefix><php_suffix></php_suffix></pearconfig>
diff --git a/vendor/pyrus/.configsnapshots/configsnapshot-2012-04-16 13-19-44.xml b/vendor/pyrus/.configsnapshots/configsnapshot-2012-04-16 13-19-44.xml
new file mode 100644
index 0000000000000000000000000000000000000000..4612b89d62687222ab170d1e4b52e361ef1ae63f
--- /dev/null
+++ b/vendor/pyrus/.configsnapshots/configsnapshot-2012-04-16 13-19-44.xml	
@@ -0,0 +1,2 @@
+<?xml version="1.0"?>
+<pearconfig version="1.0"><php_dir>/Volumes/Storage/Network_Users/tsteiner/Sites/CREQ3/vendor/pyrus/php</php_dir><ext_dir>/usr/lib/php/extensions/no-debug-non-zts-20090626</ext_dir><cfg_dir>/Volumes/Storage/Network_Users/tsteiner/Sites/CREQ3/vendor/pyrus/cfg</cfg_dir><doc_dir>/Volumes/Storage/Network_Users/tsteiner/Sites/CREQ3/vendor/pyrus/docs</doc_dir><bin_dir>/usr/bin</bin_dir><data_dir>/Volumes/Storage/Network_Users/tsteiner/Sites/CREQ3/vendor/pyrus/data</data_dir><www_dir>/Volumes/Storage/Network_Users/tsteiner/Sites/CREQ3/vendor/pyrus/www</www_dir><test_dir>/Volumes/Storage/Network_Users/tsteiner/Sites/CREQ3/vendor/pyrus/tests</test_dir><src_dir>/Volumes/Storage/Network_Users/tsteiner/Sites/CREQ3/vendor/pyrus/src</src_dir><php_bin>/usr/bin/php</php_bin><php_ini>/private/etc/php.ini</php_ini><php_prefix></php_prefix><php_suffix></php_suffix></pearconfig>
diff --git a/vendor/pyrus/.pear2registry b/vendor/pyrus/.pear2registry
new file mode 100644
index 0000000000000000000000000000000000000000..f45eda32d1bf1c8490fa5e365d9a75d2a1ed0b13
Binary files /dev/null and b/vendor/pyrus/.pear2registry differ
diff --git a/vendor/pyrus/bin/pyrus.phar b/vendor/pyrus/bin/pyrus.phar
new file mode 100644
index 0000000000000000000000000000000000000000..8e9cdb9bf040946c321e9f78f6b9b7d6fce38b7d
Binary files /dev/null and b/vendor/pyrus/bin/pyrus.phar differ
diff --git a/vendor/pyrus/bin/pyrus.sh b/vendor/pyrus/bin/pyrus.sh
new file mode 100755
index 0000000000000000000000000000000000000000..734c707b07f52232c3940c7511f282083b606691
--- /dev/null
+++ b/vendor/pyrus/bin/pyrus.sh
@@ -0,0 +1,16 @@
+#!/usr/bin/php
+<?php
+
+$root = realpath(__DIR__ . '/..');
+$pyrus = escapeshellarg($root . '/bin/pyrus.phar');
+$args = array();
+foreach ($_SERVER['argv'] as $i => $arg) {
+    if ($i == 0) {
+        continue;
+    }
+    $args[] = escapeshellarg($arg);
+}
+$root = escapeshellarg($root);
+$args = implode(' ', $args);
+passthru("php $pyrus $root $args");
+
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/cssUNLTemplates.ini b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/cssUNLTemplates.ini
new file mode 100644
index 0000000000000000000000000000000000000000..b2223e4ce489bd1e63b0da5ccc208bae6363e6f1
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/cssUNLTemplates.ini
@@ -0,0 +1,9 @@
+;php /usr/local/php5/lib/php/UNL/DWT/createTemplates.php cssUNLTemplates.ini
+[UNL_DWT]
+dwt_location    = /Users/bbieber/Documents/workspace/wdntemplates/Templates/
+class_location  = /Users/bbieber/Documents/workspace/UNL_Templates/src/UNL/Templates/Version3x1
+tpl_location    = /Users/bbieber/Documents/workspace/UNL_Templates/data/tpl_cache/Version3x1
+class_prefix    = UNL_Templates_Version3x1_
+generator_exclude_regex = "/^(asp|php)/i"
+extends         = UNL_Templates
+extends_location	= "UNL/Templates.php"
\ No newline at end of file
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Document.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Document.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..caccfd6889e95717b4a3e85f9cbe58141c86e3ff
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Document.tpl
@@ -0,0 +1,111 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" ><!-- InstanceBegin template="/Templates/document.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Document Template</title>
+<!-- InstanceEndEditable -->
+<!-- Codebase:UNLFramework 20070105 -->
+<link rel="stylesheet" type="text/css" media="screen" href="/ucomm/templatedependents/templatecss/layouts/main.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/ucomm/templatedependents/templatecss/layouts/print.css"/>
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/all_compressed.js"></script>
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/browsersniffers/ie.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/comments/developersnote.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/metanfavico/metanfavico.html" -->
+
+<!-- InstanceBeginEditable name="head" -->
+<script type="text/javascript">
+var navl2Links = 0; //Default navline2 links to display (zero based counting)
+</script>
+<!-- InstanceEndEditable -->
+
+</head>
+<body id="doc">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/siteheader/siteheader.shtml" -->
+
+<div id="red-header">
+	<div class="clear">
+		<h1>University of Nebraska&ndash;Lincoln</h1>
+		<div id="breadcrumbs"> 
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+<!-- InstanceEndEditable -->
+ </div>
+	</div>
+</div>
+<!-- close red-header -->
+
+<div id="container">
+	<div class="clear">
+		<div id="title"> 
+<!-- InstanceBeginEditable name="collegenavigationlist" -->
+ 
+<!-- InstanceEndEditable -->
+			<div id="titlegraphic">
+				<!-- WDN: see glossary item 'title graphics' -->
+				
+<!-- InstanceBeginEditable name="titlegraphic" -->
+				<h1>Department</h1>
+				<h2>Taglines - We Do The Heavy Lifting</h2>
+				
+<!-- InstanceEndEditable -->
+</div>
+			<!-- maintitle -->
+		</div>
+		<!-- close title -->
+		
+		<div id="navigation">
+			<h4 id="sec_nav">Navigation</h4>
+			
+
+			<div id="nav_end"></div>
+			
+			<!-- WDN: see glossary item 'sidebar links' -->
+			<div id="leftcollinks"> 
+				<!-- WDN: see glossary item 'sidebar links' -->
+				
+ </div>
+		</div>
+		<!-- close navigation -->
+		
+		<div id="main_right" class="mainwrapper">
+			<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+			
+			<div id="maincontent"> 
+
+				<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/browsersniffers/noscript.html" -->
+				<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+				
+<!-- InstanceBeginEditable name="maincontentarea" -->
+				<p style="margin:20px; border:3px solid #CC0000;padding:10px; text-align:center"> <strong>Delete this box and place your content here.</strong><br />
+					Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://www.unl.edu/webdevnet/">Web Developer Network</a>. <br />
+					<a href="http://validator.unl.edu/check/referer">Click here to check Validation</a> </p>
+				
+<!-- InstanceEndEditable -->
+				<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+				
+ </div>
+			 </div>
+		<!-- close main right -->
+	</div>
+</div>
+<!-- close container -->
+<div id="footer">
+	<div id="footer_floater"> 
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+		<div id="copyright"> 
+<!-- InstanceBeginEditable name="footercontent" -->
+			<!--#include virtual="../sharedcode/footer.html" -->
+			
+<!-- InstanceEndEditable -->
+ <span><a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a> <a href="http://validator.unl.edu/check/referer">W3C</a> <a href="http://www1.unl.edu/feeds/">RSS</a> </span><a href="http://www.unl.edu/" title="UNL Home"><img src="/ucomm/templatedependents/templatecss/images/wordmark.png" alt="UNL's wordmark" id="wordmark" /></a></div>
+	</div>
+</div>
+<!-- close footer -->
+<!-- sifr -->
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/sifr_replacements.js"></script>
+</body>
+<!-- InstanceEnd --></html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Fixed.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Fixed.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..44626d93af9f1c53c95d37cb602f685708b08c41
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Fixed.tpl
@@ -0,0 +1,137 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" ><!-- InstanceBegin template="/Templates/fixed.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- Codebase:UNLFramework 20070105 -->
+<link rel="stylesheet" type="text/css" media="screen" href="/ucomm/templatedependents/templatecss/layouts/main.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/ucomm/templatedependents/templatecss/layouts/print.css"/>
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/all_compressed.js"></script>
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/browsersniffers/ie.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/comments/developersnote.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/metanfavico/metanfavico.html" -->
+
+<!-- InstanceBeginEditable name="head" -->
+<script type="text/javascript">
+var navl2Links = 0; //Default navline2 links to display (zero based counting)
+</script>
+<!-- InstanceEndEditable -->
+
+</head>
+<body id="fixed">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/siteheader/siteheader.shtml" -->
+
+<div id="red-header">
+	<div class="clear">
+		<h1>University of Nebraska&ndash;Lincoln</h1>
+		<div id="breadcrumbs"> 
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+			<!-- WDN: see glossary item 'breadcrumbs' -->
+			<ul>
+				<li class="first"><a href="http://www.unl.edu/">UNL</a></li>
+				<li><a href="http://www.unl.edu/">Department</a></li>
+				<li>New Page</li>
+			</ul>
+			
+<!-- InstanceEndEditable -->
+ </div>
+	</div>
+</div>
+<!-- close red-header -->
+
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/shelf/shelf.shtml" -->
+
+<div id="container">
+	<div class="clear">
+		<div id="title"> 
+<!-- InstanceBeginEditable name="collegenavigationlist" -->
+ 
+<!-- InstanceEndEditable -->
+			<div id="titlegraphic">
+				<!-- WDN: see glossary item 'title graphics' -->
+				
+<!-- InstanceBeginEditable name="titlegraphic" -->
+				<h1>Department</h1>
+				<h2>Taglines - We Do The Heavy Lifting</h2>
+				
+<!-- InstanceEndEditable -->
+</div>
+			<!-- maintitle -->
+		</div>
+		<!-- close title -->
+		
+		<div id="navigation">
+			<h4 id="sec_nav">Navigation</h4>
+			
+
+			<div id="navlinks"> 
+<!-- InstanceBeginEditable name="navlinks" -->
+				<!--#include virtual="../sharedcode/navigation.html" -->
+				
+<!-- InstanceEndEditable -->
+</div>
+			
+
+			<div id="nav_end"></div>
+			
+<!-- InstanceBeginEditable name="leftRandomPromo" -->
+			<div class="image_small_short" id="leftRandomPromo"> <a href="#" id="leftRandomPromoAnchor"><img id="leftRandomPromoImage" alt="" src="/ucomm/templatedependents/templatecss/images/transpixel.gif" /></a>
+				<script type="text/javascript" src="../sharedcode/leftRandomPromo.js"></script>
+			</div>
+			
+<!-- InstanceEndEditable -->
+			<!-- WDN: see glossary item 'sidebar links' -->
+			<div id="leftcollinks"> 
+<!-- InstanceBeginEditable name="leftcollinks" -->
+				<!-- WDN: see glossary item 'sidebar links' -->
+				<!--#include virtual="../sharedcode/relatedLinks.html" -->
+				
+<!-- InstanceEndEditable -->
+ </div>
+		</div>
+		<!-- close navigation -->
+		
+		<div id="main_right" class="mainwrapper">
+			<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+			
+			<div id="maincontent"> 
+
+				<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/browsersniffers/noscript.html" -->
+				<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+				
+<!-- InstanceBeginEditable name="maincontentarea" -->
+				<p style="margin:20px; border:3px solid #CC0000;padding:10px; text-align:center"> <strong>Delete this box and place your content here.</strong><br />
+					Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://www.unl.edu/webdevnet/">Web Developer Network</a>. <br />
+					<a href="http://validator.unl.edu/check/referer">Click here to check Validation</a> </p>
+				
+<!-- InstanceEndEditable -->
+				<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+				
+ </div>
+			 </div>
+		<!-- close main right -->
+	</div>
+</div>
+<!-- close container -->
+<div id="footer">
+	<div id="footer_floater"> 
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+		<div id="copyright"> 
+<!-- InstanceBeginEditable name="footercontent" -->
+			<!--#include virtual="../sharedcode/footer.html" -->
+			
+<!-- InstanceEndEditable -->
+ <span><a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a> <a href="http://validator.unl.edu/check/referer">W3C</a> <a href="http://www1.unl.edu/feeds/">RSS</a> </span><a href="http://www.unl.edu/" title="UNL Home"><img src="/ucomm/templatedependents/templatecss/images/wordmark.png" alt="UNL's wordmark" id="wordmark" /></a></div>
+	</div>
+</div>
+<!-- close footer -->
+<!-- sifr -->
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/sifr_replacements.js"></script>
+</body>
+<!-- InstanceEnd --></html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Liquid.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Liquid.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..bcbe8718485706ce70b4b570379fb366d1fc454c
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Liquid.tpl
@@ -0,0 +1,137 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" ><!-- InstanceBegin template="/Templates/liquid.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- Codebase:UNLFramework 20070105 -->
+<link rel="stylesheet" type="text/css" media="screen" href="/ucomm/templatedependents/templatecss/layouts/main.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/ucomm/templatedependents/templatecss/layouts/print.css"/>
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/all_compressed.js"></script>
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/browsersniffers/ie.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/comments/developersnote.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/metanfavico/metanfavico.html" -->
+
+<!-- InstanceBeginEditable name="head" -->
+<script type="text/javascript">
+var navl2Links = 0; //Default navline2 links to display (zero based counting)
+</script>
+<!-- InstanceEndEditable -->
+
+</head>
+<body id="liquid">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/siteheader/siteheader.shtml" -->
+
+<div id="red-header">
+	<div class="clear">
+		<h1>University of Nebraska&ndash;Lincoln</h1>
+		<div id="breadcrumbs"> 
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+			<!-- WDN: see glossary item 'breadcrumbs' -->
+			<ul>
+				<li class="first"><a href="http://www.unl.edu/">UNL</a></li>
+				<li><a href="http://www.unl.edu/">Department</a></li>
+				<li>New Page</li>
+			</ul>
+			
+<!-- InstanceEndEditable -->
+ </div>
+	</div>
+</div>
+<!-- close red-header -->
+
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/shelf/shelf.shtml" -->
+
+<div id="container">
+	<div class="clear">
+		<div id="title"> 
+<!-- InstanceBeginEditable name="collegenavigationlist" -->
+ 
+<!-- InstanceEndEditable -->
+			<div id="titlegraphic">
+				<!-- WDN: see glossary item 'title graphics' -->
+				
+<!-- InstanceBeginEditable name="titlegraphic" -->
+				<h1>Department</h1>
+				<h2>Taglines - We Do The Heavy Lifting</h2>
+				
+<!-- InstanceEndEditable -->
+</div>
+			<!-- maintitle -->
+		</div>
+		<!-- close title -->
+		
+		<div id="navigation">
+			<h4 id="sec_nav">Navigation</h4>
+			
+
+			<div id="navlinks"> 
+<!-- InstanceBeginEditable name="navlinks" -->
+				<!--#include virtual="../sharedcode/navigation.html" -->
+				
+<!-- InstanceEndEditable -->
+</div>
+			
+
+			<div id="nav_end"></div>
+			
+<!-- InstanceBeginEditable name="leftRandomPromo" -->
+			<div class="image_small_short" id="leftRandomPromo"> <a href="#" id="leftRandomPromoAnchor"><img id="leftRandomPromoImage" alt="" src="/ucomm/templatedependents/templatecss/images/transpixel.gif" /></a>
+				<script type="text/javascript" src="../sharedcode/leftRandomPromo.js"></script>
+			</div>
+			
+<!-- InstanceEndEditable -->
+			<!-- WDN: see glossary item 'sidebar links' -->
+			<div id="leftcollinks"> 
+<!-- InstanceBeginEditable name="leftcollinks" -->
+				<!-- WDN: see glossary item 'sidebar links' -->
+				<!--#include virtual="../sharedcode/relatedLinks.html" -->
+				
+<!-- InstanceEndEditable -->
+ </div>
+		</div>
+		<!-- close navigation -->
+		
+		<div id="main_right" class="mainwrapper">
+			<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+			
+			<div id="maincontent"> 
+
+				<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/browsersniffers/noscript.html" -->
+				<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+				
+<!-- InstanceBeginEditable name="maincontentarea" -->
+				<p style="margin:20px; border:3px solid #CC0000;padding:10px; text-align:center"> <strong>Delete this box and place your content here.</strong><br />
+					Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://www.unl.edu/webdevnet/">Web Developer Network</a>. <br />
+					<a href="http://validator.unl.edu/check/referer">Click here to check Validation</a> </p>
+				
+<!-- InstanceEndEditable -->
+				<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+				
+ </div>
+			 </div>
+		<!-- close main right -->
+	</div>
+</div>
+<!-- close container -->
+<div id="footer">
+	<div id="footer_floater"> 
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+		<div id="copyright"> 
+<!-- InstanceBeginEditable name="footercontent" -->
+			<!--#include virtual="../sharedcode/footer.html" -->
+			
+<!-- InstanceEndEditable -->
+ <span><a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a> <a href="http://validator.unl.edu/check/referer">W3C</a> <a href="http://www1.unl.edu/feeds/">RSS</a> </span><a href="http://www.unl.edu/" title="UNL Home"><img src="/ucomm/templatedependents/templatecss/images/wordmark.png" alt="UNL's wordmark" id="wordmark" /></a></div>
+	</div>
+</div>
+<!-- close footer -->
+<!-- sifr -->
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/sifr_replacements.js"></script>
+</body>
+<!-- InstanceEnd --></html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Popup.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Popup.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..cc3bcb33aa00c73412638da3d416e3b443b31263
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Popup.tpl
@@ -0,0 +1,109 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" ><!-- InstanceBegin template="/Templates/popup.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- Codebase:UNLFramework 20070105 -->
+<link rel="stylesheet" type="text/css" media="screen" href="/ucomm/templatedependents/templatecss/layouts/main.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/ucomm/templatedependents/templatecss/layouts/print.css"/>
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/all_compressed.js"></script>
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/browsersniffers/ie.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/comments/developersnote.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/metanfavico/metanfavico.html" -->
+
+<!-- InstanceBeginEditable name="head" -->
+<script type="text/javascript">
+var navl2Links = 0; //Default navline2 links to display (zero based counting)
+</script>
+<!-- InstanceEndEditable -->
+
+</head>
+<body id="popup">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/siteheader/siteheader.shtml" -->
+
+<div id="red-header">
+	<div class="clear">
+		<h1>University of Nebraska&ndash;Lincoln</h1>
+		<div id="breadcrumbs"> 
+
+ </div>
+	</div>
+</div>
+<!-- close red-header -->
+
+<div id="container">
+	<div class="clear">
+		<div id="title"> 
+<!-- InstanceBeginEditable name="collegenavigationlist" -->
+ 
+<!-- InstanceEndEditable -->
+			<div id="titlegraphic">
+				<!-- WDN: see glossary item 'title graphics' -->
+				
+<!-- InstanceBeginEditable name="titlegraphic" -->
+				<h1>Department</h1>
+				<h2>Taglines - We Do The Heavy Lifting</h2>
+				
+<!-- InstanceEndEditable -->
+</div>
+			<!-- maintitle -->
+		</div>
+		<!-- close title -->
+		
+		<div id="navigation">
+			<h4 id="sec_nav">Navigation</h4>
+			
+
+			<div id="nav_end"></div>
+			
+			<!-- WDN: see glossary item 'sidebar links' -->
+			<div id="leftcollinks"> 
+
+ </div>
+		</div>
+		<!-- close navigation -->
+		
+		<div id="main_right" class="mainwrapper">
+			<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+			
+			<div id="maincontent"> 
+
+				<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/browsersniffers/noscript.html" -->
+				<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+				
+<!-- InstanceBeginEditable name="maincontentarea" -->
+				<p style="margin:20px; border:3px solid #CC0000;padding:10px; text-align:center"> <strong>Delete this box and place your content here.</strong><br />
+					Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://www.unl.edu/webdevnet/">Web Developer Network</a>. <br />
+					<a href="http://validator.unl.edu/check/referer">Click here to check Validation</a> </p>
+				
+<!-- InstanceEndEditable -->
+				<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+				
+ </div>
+			 </div>
+		<!-- close main right -->
+	</div>
+</div>
+<!-- close container -->
+<div id="footer">
+	<div id="footer_floater"> 
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+		<div id="copyright"> 
+<!-- InstanceBeginEditable name="footercontent" -->
+			<!--#include virtual="../sharedcode/footer.html" -->
+			
+<!-- InstanceEndEditable -->
+ <span><a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a> <a href="http://validator.unl.edu/check/referer">W3C</a> <a href="http://www1.unl.edu/feeds/">RSS</a> </span><a href="http://www.unl.edu/" title="UNL Home"><img src="/ucomm/templatedependents/templatecss/images/wordmark.png" alt="UNL's wordmark" id="wordmark" /></a></div>
+	</div>
+</div>
+<!-- close footer -->
+<!-- sifr -->
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/sifr_replacements.js"></script>
+</body>
+<!-- InstanceEnd --></html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Secure.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Secure.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..53bb949fe3a4bee0549b403a9438650afb19c894
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Secure.tpl
@@ -0,0 +1,131 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" ><!-- InstanceBegin template="/Templates/secure.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- Codebase:UNLFramework 20070105 -->
+<link rel="stylesheet" type="text/css" media="screen" href="/ucomm/templatedependents/templatecss/layouts/main.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/ucomm/templatedependents/templatecss/layouts/print.css"/>
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/all_compressed.js"></script>
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/browsersniffers/ie.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/comments/developersnote.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/metanfavico/metanfavico.html" -->
+
+<link rel="stylesheet" type="text/css" media="screen" href="/ucomm/templatedependents/templatecss/layouts/secure.css"/>
+<!-- InstanceBeginEditable name="head" -->
+<script type="text/javascript">
+var navl2Links = 0; //Default navline2 links to display (zero based counting)
+</script>
+<!-- InstanceEndEditable -->
+
+</head>
+<body id="secure">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/siteheader/siteheader_secure.shtml" -->
+
+<div id="red-header">
+	<div class="clear">
+		<h1>University of Nebraska&ndash;Lincoln</h1>
+		<div id="breadcrumbs"> 
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+			<!-- WDN: see glossary item 'breadcrumbs' -->
+			<ul>
+				<li class="first"><a href="http://www.unl.edu/">UNL</a></li>
+				<li><a href="http://www.unl.edu/">Department</a></li>
+				<li>New Page</li>
+			</ul>
+			<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/badges/secure.html" -->
+			
+<!-- InstanceEndEditable -->
+ </div>
+	</div>
+</div>
+<!-- close red-header -->
+
+<div id="container">
+	<div class="clear">
+		<div id="title"> 
+<!-- InstanceBeginEditable name="collegenavigationlist" -->
+ 
+<!-- InstanceEndEditable -->
+			<div id="titlegraphic">
+				<!-- WDN: see glossary item 'title graphics' -->
+				
+<!-- InstanceBeginEditable name="titlegraphic" -->
+				<h1>Department</h1>
+				<h2>Taglines - We Do The Heavy Lifting</h2>
+				
+<!-- InstanceEndEditable -->
+</div>
+			<!-- maintitle -->
+		</div>
+		<!-- close title -->
+		
+		<div id="navigation">
+			<h4 id="sec_nav">Navigation</h4>
+			
+
+			<div id="navlinks"> 
+<!-- InstanceBeginEditable name="navlinks" -->
+				<!--#include virtual="../sharedcode/navigation.html" -->
+				
+<!-- InstanceEndEditable -->
+</div>
+			
+
+			<div id="nav_end"></div>
+			
+			<!-- WDN: see glossary item 'sidebar links' -->
+			<div id="leftcollinks"> 
+<!-- InstanceBeginEditable name="leftcollinks" -->
+				<!-- WDN: see glossary item 'sidebar links' -->
+				<!--#include virtual="../sharedcode/relatedLinks.html" -->
+				
+<!-- InstanceEndEditable -->
+ </div>
+		</div>
+		<!-- close navigation -->
+		
+		<div id="main_right" class="mainwrapper">
+			<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+			
+			<div id="maincontent"> 
+
+				<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/browsersniffers/noscript.html" -->
+				<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+				
+<!-- InstanceBeginEditable name="maincontentarea" -->
+				<p style="margin:20px; border:3px solid #CC0000;padding:10px; text-align:center"> <strong>Delete this box and place your content here.</strong><br />
+					Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://www.unl.edu/webdevnet/">Web Developer Network</a>. <br />
+					<a href="http://validator.unl.edu/check/referer">Click here to check Validation</a> </p>
+				
+<!-- InstanceEndEditable -->
+				<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+				
+ </div>
+			 </div>
+		<!-- close main right -->
+	</div>
+</div>
+<!-- close container -->
+<div id="footer">
+	<div id="footer_floater"> 
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+		<div id="copyright"> 
+<!-- InstanceBeginEditable name="footercontent" -->
+			<!--#include virtual="../sharedcode/footer.html" -->
+			
+<!-- InstanceEndEditable -->
+ <span><a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a> <a href="http://validator.unl.edu/check/referer">W3C</a> <a href="http://www1.unl.edu/feeds/">RSS</a> </span><a href="http://www.unl.edu/" title="UNL Home"><img src="/ucomm/templatedependents/templatecss/images/wordmark.png" alt="UNL's wordmark" id="wordmark" /></a></div>
+	</div>
+</div>
+<!-- close footer -->
+<!-- sifr -->
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/sifr_replacements.js"></script>
+</body>
+<!-- InstanceEnd --></html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Unlaffiliate.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Unlaffiliate.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..dfa57e846e6949c53dd9c75da45a65b032f63553
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Unlaffiliate.tpl
@@ -0,0 +1,125 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" ><!-- InstanceBegin template="/Templates/unlaffiliate.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL Redesign</title>
+<!-- InstanceEndEditable -->
+<!-- Codebase:UNLFramework 20061013 -->
+<link rel="stylesheet" type="text/css" media="screen" href="/ucomm/templatedependents/templatecss/layouts/main.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/ucomm/templatedependents/templatecss/layouts/print.css"/>
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/all_compressed.js"></script>
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/browsersniffers/ie.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/comments/developersnote.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/metanfavico/metanfavico.html" -->
+<!-- InstanceBeginEditable name="head" -->
+<link rel="stylesheet" type="text/css" media="all" href="/ucomm/templatedependents/templatecss/layouts/affiliate.css" />
+<!-- InstanceEndEditable -->
+<!-- TemplateParam name="leftRandomPromo" type="boolean" value="true" -->
+</head>
+<body id="affiliate">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+<!-- InstanceBeginEditable name="siteheader" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/siteheader/affiliate.shtml" -->
+<!-- InstanceEndEditable -->
+<div id="red-header">
+	<div class="clear"><!-- InstanceBeginEditable name="affiliate_name" -->
+		<h1>Affiliated Organization Name</h1>
+		
+<!-- InstanceEndEditable -->
+		<div id="breadcrumbs"> 
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+			<!-- WDN: see glossary item 'breadcrumbs' -->
+			<ul>
+				<li class="first"><a href="http://www.unl.edu/">UNL</a></li>
+				<li>UNL Framework</li>
+			</ul>
+			
+<!-- InstanceEndEditable -->
+ </div>
+	</div>
+</div>
+<!-- close red-header -->
+<!-- InstanceBeginEditable name="shelf" -->
+
+<!-- InstanceEndEditable -->
+<div id="container">
+	<div class="clear">
+		<div id="title">
+			<div id="titlegraphic">
+				<!-- WDN: see glossary item 'title graphics' -->
+				
+<!-- InstanceBeginEditable name="titlegraphic" -->
+				<h1>Affiliate</h1>
+				<h2>Taglines - We Do The Heavy Lifting</h2>
+				
+<!-- InstanceEndEditable -->
+</div>
+			<!-- maintitle -->
+		</div>
+		<!-- close title -->
+		<div id="navigation">
+			<h4 id="sec_nav">Navigation</h4>
+			<div id="navlinks"> 
+<!-- InstanceBeginEditable name="navlinks" -->
+				<!--#include virtual="../sharedcode/navigation.html" -->
+				
+<!-- InstanceEndEditable -->
+</div>
+			<div id="nav_end"></div>
+			<!-- TemplateBeginIf cond="_document['leftRandomPromo']" -->
+<!-- InstanceBeginEditable name="leftRandomPromo" -->
+			<div class="image_small_short" id="leftRandomPromo"> <a href="#" id="leftRandomPromoAnchor"><img id="leftRandomPromoImage" alt="" src="/ucomm/templatedependents/templatecss/images/transpixel.gif" /></a>
+				<script type="text/javascript" src="../sharedcode/leftRandomPromo.js"></script>
+			</div>
+			
+<!-- InstanceEndEditable -->
+<!-- TemplateEndIf -->
+			<!-- WDN: see glossary item 'sidebar links' -->
+			<div id="leftcollinks"> 
+<!-- InstanceBeginEditable name="leftcollinks" -->
+				<!--#include virtual="../sharedcode/relatedLinks.html" -->
+				
+<!-- InstanceEndEditable -->
+ </div>
+		</div>
+		<!-- close navigation -->
+		<div id="main_right" class="mainwrapper">
+			<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+			
+			<div id="maincontent">
+			<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/browsersniffers/noscript.html" -->
+			<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+			
+<!-- InstanceBeginEditable name="maincontentarea" -->
+			<h2 class="sec_main">This template is only for affiliates of UNL, or units that have been granted a marketing exemption from the university. Confirm your use of this template before using it!</h2>
+			<p style="margin:20px; border:3px solid #CC0000;padding:10px; text-align:center"> <strong>Delete this box and place your content here.</strong><br />
+				Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://www.unl.edu/webdevnet/">Web Developer Network</a>. <br />
+				<a href="http://validator.unl.edu/check/referer">Click here to check Validation</a> </p>
+			<!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+			
+<!-- InstanceEndEditable -->
+			</div>
+		</div>
+		<!-- close main right -->
+	</div>
+</div>
+<!-- close container -->
+<div id="footer">
+	<div id="footer_floater"> 
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+		<div id="copyright"> 
+<!-- InstanceBeginEditable name="footercontent" -->
+			<!--#include virtual="../sharedcode/footer.html" -->
+			
+<!-- InstanceEndEditable -->
+ <span><a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a> <a href="http://validator.unl.edu/check/referer">W3C</a> <a href="http://www1.unl.edu/feeds/">RSS</a> </span><a href="http://www.unl.edu/" title="UNL Home"><img src="/ucomm/templatedependents/templatecss/images/wordmark.png" alt="UNL's wordmark" id="wordmark" /></a></div>
+	</div>
+</div>
+<!-- close footer -->
+<!-- sifr -->
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/sifr_replacements.js"></script>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Unlframework.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Unlframework.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..bfd6a5ac32fa3b6b6c60c16e7975d902b93f556c
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Unlframework.tpl
@@ -0,0 +1,112 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" ><!-- InstanceBegin template="/Templates/unlframework.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL Redesign</title>
+<!-- InstanceEndEditable -->
+<!-- Codebase:UNLFramework 20070105 -->
+<link rel="stylesheet" type="text/css" media="screen" href="/ucomm/templatedependents/templatecss/layouts/main.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/ucomm/templatedependents/templatecss/layouts/print.css"/>
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/all_compressed.js"></script>
+<!-- InstanceBeginEditable name="head" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/browsersniffers/ie.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/comments/developersnote.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/metanfavico/metanfavico.html" -->
+<!-- InstanceEndEditable -->
+<!-- TemplateParam name="collegenavigation" type="boolean" value="true" --><!-- TemplateParam name="bodyid" type="text" value="" -->
+</head>
+<body id="@@(bodyid)@@">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+<!-- InstanceBeginEditable name="siteheader" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/siteheader/siteheader.shtml" -->
+<!-- InstanceEndEditable -->
+<div id="red-header">
+	<div class="clear">
+		<h1>University of Nebraska&ndash;Lincoln</h1>
+		<div id="breadcrumbs"> 
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+			<!-- WDN: see glossary item 'breadcrumbs' -->
+			<ul>
+				<li class="first"><a href="http://www.unl.edu/">UNL</a></li>
+				<li>UNL Framework</li>
+			</ul>
+			
+<!-- InstanceEndEditable -->
+ </div>
+	</div>
+</div>
+<!-- close red-header -->
+<!-- InstanceBeginEditable name="shelf" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/shelf/shelf.shtml" -->
+<!-- InstanceEndEditable -->
+<div id="container">
+	<div class="clear">
+		<div id="title"> <!-- TemplateBeginIf cond="collegenavigation" -->
+<!-- InstanceBeginEditable name="collegenavigationlist" -->
+ 
+<!-- InstanceEndEditable -->
+<!-- TemplateEndIf -->
+			<div id="titlegraphic">
+				<!-- WDN: see glossary item 'title graphics' -->
+				
+<!-- InstanceBeginEditable name="titlegraphic" -->
+				<h1>Department</h1>
+				<h2>Taglines - We Do The Heavy Lifting</h2>
+				
+<!-- InstanceEndEditable -->
+</div>
+			<!-- maintitle -->
+		</div>
+		<!-- close title -->
+		
+<!-- InstanceBeginEditable name="leftcolcontent" -->
+		<div id="navigation">
+			<h4 id="sec_nav">Navigation</h4>
+			<div id="navlinks">
+				<!--#include virtual="../sharedcode/navigation.html" -->
+			</div>
+			<div id="nav_end"></div>
+			<div class="image_small_short" id="leftRandomPromo"> <a href="#" id="leftRandomPromoAnchor"><img id="leftRandomPromoImage" alt="" src="/ucomm/templatedependents/templatecss/images/transpixel.gif" /></a>
+				<script type="text/javascript" src="../sharedcode/leftRandomPromo.js"></script>
+			</div>
+			<!-- WDN: see glossary item 'sidebar links' -->
+			<div id="leftcollinks">
+				<!--#include virtual="../sharedcode/relatedLinks.html" -->
+			</div>
+		</div>
+		<!-- close navigation -->
+		
+<!-- InstanceEndEditable -->
+		<div id="main_right" class="mainwrapper">
+			<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+			
+<!-- InstanceBeginEditable name="maincolcontent" -->
+			<!-- optional main big content image -->
+			<div id="maincontent">
+				<p style="margin:20px; border:3px solid #CC0000;padding:10px; text-align:center"> <strong>Delete this box and place your content here.</strong><br />
+					Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://www.unl.edu/webdevnet/">Web Developer Network</a>. <br />
+					<a href="http://validator.unl.edu/check/referer">Click here to check Validation</a> </p>
+			</div>
+			<!-- close right-area -->
+			
+<!-- InstanceEndEditable -->
+ </div>
+		<!-- close main right -->
+	</div>
+</div>
+<!-- close container -->
+<!-- InstanceBeginEditable name="bigfooter" -->
+<div id="footer">
+	<div id="footer_floater">
+		<div id="copyright">
+			<!--#include virtual="../sharedcode/footer.html" -->
+			<span><a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a> <a href="http://validator.unl.edu/check/referer">W3C</a> <a href="http://www1.unl.edu/feeds/">RSS</a> </span><a href="http://www.unl.edu/" title="UNL Home"><img src="/ucomm/templatedependents/templatecss/images/wordmark.png" alt="UNL's wordmark" id="wordmark" /></a></div>
+	</div>
+</div>
+<!-- InstanceEndEditable -->
+<!-- close footer -->
+<!-- sifr -->
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/sifr_replacements.js"></script>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Unlstandardtemplate.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Unlstandardtemplate.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..bff353a14b810d69b7f0cb54ed809f8f6cf56507
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version2/Unlstandardtemplate.tpl
@@ -0,0 +1,131 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" ><!-- InstanceBegin template="/Templates/unlstandardtemplate.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL Redesign</title>
+<!-- InstanceEndEditable -->
+<!-- Codebase:UNLFramework 20070105 -->
+<link rel="stylesheet" type="text/css" media="screen" href="/ucomm/templatedependents/templatecss/layouts/main.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/ucomm/templatedependents/templatecss/layouts/print.css"/>
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/all_compressed.js"></script>
+
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/browsersniffers/ie.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/comments/developersnote.html" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/metanfavico/metanfavico.html" -->
+<!-- InstanceBeginEditable name="head" -->
+<!-- InstanceEndEditable -->
+<!-- TemplateParam name="leftRandomPromo" type="boolean" value="true" -->
+<!-- InstanceParam name="bodyid" type="text" value="" passthrough="true" -->
+</head>
+<body id="@@@(bodyid)@@@">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+<!-- InstanceBeginEditable name="siteheader" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/siteheader/siteheader.shtml" -->
+<!-- InstanceEndEditable -->
+<div id="red-header">
+	<div class="clear">
+		<h1>University of Nebraska&ndash;Lincoln</h1>
+		<div id="breadcrumbs"> 
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+			<ul>
+				<li class="first"><a href="http://www.unl.edu/">UNL</a></li>
+				<li>UNL Standard Template</li>
+			</ul>
+			
+<!-- InstanceEndEditable -->
+ </div>
+	</div>
+</div>
+<!-- close red-header -->
+<!-- InstanceBeginEditable name="shelf" -->
+<!--#include virtual="/ucomm/templatedependents/templatesharedcode/includes/shelf/shelf.shtml" -->
+<!-- InstanceEndEditable -->
+<div id="container">
+	<div class="clear">
+		<div id="title"> 
+<!-- InstanceBeginEditable name="collegenavigationlist" -->
+ 
+<!-- InstanceEndEditable -->
+			<div id="titlegraphic">
+				<!-- WDN: see glossary item 'title graphics' -->
+				
+<!-- InstanceBeginEditable name="titlegraphic" -->
+				<h1>Department</h1>
+				<h2>Taglines - We Do The Heavy Lifting</h2>
+				
+<!-- InstanceEndEditable -->
+</div>
+			<!-- maintitle -->
+		</div>
+		<!-- close title -->
+		
+
+		<div id="navigation">
+			<h4 id="sec_nav">Navigation</h4>
+			
+<!-- InstanceBeginEditable name="navcontent" -->
+			<div id="navlinks">
+				<!--#include virtual="../sharedcode/navigation.html" -->
+			</div>
+			
+<!-- InstanceEndEditable -->
+			<div id="nav_end"></div>
+			<!-- TemplateBeginIf cond="_document['leftRandomPromo']" -->
+<!-- InstanceBeginEditable name="leftRandomPromo" -->
+			<div class="image_small_short" id="leftRandomPromo"> <a href="#" id="leftRandomPromoAnchor"><img id="leftRandomPromoImage" alt="" src="/ucomm/templatedependents/templatecss/images/transpixel.gif" /></a>
+				<script type="text/javascript" src="../sharedcode/leftRandomPromo.js"></script>
+			</div>
+			
+<!-- InstanceEndEditable -->
+<!-- TemplateEndIf -->
+			<!-- WDN: see glossary item 'sidebar links' -->
+			<div id="leftcollinks"> 
+<!-- InstanceBeginEditable name="leftcollinks" -->
+				<h3>Related Links</h3>
+				<!--#include virtual="../sharedcode/relatedLinks.html" -->
+				
+<!-- InstanceEndEditable -->
+ </div>
+		</div>
+		<!-- close navigation -->
+		
+
+		<div id="main_right" class="mainwrapper">
+			<!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+			
+
+			<div id="maincontent"> 
+<!-- InstanceBeginEditable name="maincontent" -->
+				<p style="margin:20px; border:3px solid #CC0000;padding:10px; text-align:center"> <strong>Delete this box and place your content here.</strong><br />
+					Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://www.unl.edu/webdevnet/">Web Developer Network</a>. <br />
+					<a href="http://validator.unl.edu/check/referer">Click here to check Validation</a> </p>
+				
+<!-- InstanceEndEditable -->
+ </div>
+			
+ </div>
+		<!-- close main right -->
+	</div>
+</div>
+<!-- close container -->
+
+<div id="footer">
+	<div id="footer_floater"> 
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+		<div id="copyright"> 
+<!-- InstanceBeginEditable name="footercontent" -->
+			<!--#include virtual="../sharedcode/footer.html" -->
+			
+<!-- InstanceEndEditable -->
+ <span><a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a> <a href="http://validator.unl.edu/check/referer">W3C</a> <a href="http://www1.unl.edu/feeds/">RSS</a> </span><a href="http://www.unl.edu/" title="UNL Home"><img src="/ucomm/templatedependents/templatecss/images/wordmark.png" alt="UNL's wordmark" id="wordmark" /></a></div>
+	</div>
+</div>
+
+<!-- close footer -->
+<!-- sifr -->
+<script type="text/javascript" src="/ucomm/templatedependents/templatesharedcode/scripts/sifr_replacements.js"></script>
+</body>
+<!-- InstanceEnd --></html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Absolute.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Absolute.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..cd8ac123bc8a06cba0c40c92fde17b1862a01911
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Absolute.tpl
@@ -0,0 +1,119 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><!-- InstanceBegin template="/Templates/absolute.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: absolute.dwt 1390 2010-11-18 15:24:33Z bbieber2 $
+-->
+<link rel="stylesheet" type="text/css" media="screen" href="http://www.unl.edu/wdn/templates_3.0/css/all.css" />
+<link rel="stylesheet" type="text/css" media="print" href="http://www.unl.edu/wdn/templates_3.0/css/print.css" />
+<script type="text/javascript" src="http://www.unl.edu/wdn/templates_3.0/scripts/all.js"></script>
+<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics.html" -->
+<!--#include virtual="/wdn/templates_3.0/includes/metanfavico.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+<!-- InstanceEndEditable -->
+</head>
+<body class="fixed">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+<div id="wdn_wrapper">
+    <div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="http://www.unl.edu/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
+        <h1>University of Nebraska&ndash;Lincoln</h1>
+        <!--#include virtual="/wdn/templates_3.0/includes/wdnTools.html" -->
+    </div>
+    <div id="wdn_navigation_bar">
+        <div id="breadcrumbs">
+            <!-- WDN: see glossary item 'breadcrumbs' -->
+            
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+            <ul>
+                <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
+                <li>Department</li>
+            </ul>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="wdn_navigation_wrapper">
+            <div id="navigation">
+<!-- InstanceBeginEditable name="navlinks" -->
+                <!--#include virtual="../sharedcode/navigation.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+        </div>
+    </div>
+    <div id="wdn_content_wrapper">
+        <div id="titlegraphic">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+            <h1>Department</h1>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="pagetitle">
+<!-- InstanceBeginEditable name="pagetitle" -->
+ 
+<!-- InstanceEndEditable -->
+</div>
+        <div id="maincontent">
+            <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+            
+<!-- InstanceBeginEditable name="maincontentarea" -->
+            <p>Place your content here.<br />
+                Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
+                <a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
+            
+<!-- InstanceEndEditable -->
+            <div class="clear"></div>
+            <!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
+            <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+        </div>
+        <div id="footer">
+            <div id="footer_floater"></div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/feedback.html" -->
+            </div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="leftcollinks" -->
+                <!--#include virtual="../sharedcode/relatedLinks.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="contactinfo" -->
+                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/socialmediashare.html" -->
+            </div>
+            
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+            <div id="wdn_copyright">
+<!-- InstanceBeginEditable name="footercontent" -->
+                <!--#include virtual="../sharedcode/footer.html" -->
+                
+<!-- InstanceEndEditable -->
+                <!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
+                | <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="http://www.unl.edu/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
+        </div>
+    </div>
+    <div id="wdn_wrapper_footer"> </div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Debug.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Debug.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..d7d4bf586ef2537891c31f55e51740beb45ea296
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Debug.tpl
@@ -0,0 +1,119 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><!-- InstanceBegin template="/Templates/debug.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: debug.dwt 1390 2010-11-18 15:24:33Z bbieber2 $
+-->
+<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/debug.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
+<script type="text/javascript" src="/wdn/templates_3.0/scripts/debug.js"></script>
+<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics.html" -->
+<!--#include virtual="/wdn/templates_3.0/includes/metanfavico.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+<!-- InstanceEndEditable -->
+</head>
+<body class="fixed debug">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+<div id="wdn_wrapper">
+    <div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
+        <h1>University of Nebraska&ndash;Lincoln</h1>
+        <!--#include virtual="/wdn/templates_3.0/includes/wdnTools.html" -->
+    </div>
+    <div id="wdn_navigation_bar">
+        <div id="breadcrumbs">
+            <!-- WDN: see glossary item 'breadcrumbs' -->
+            
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+            <ul>
+                <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
+                <li>Department</li>
+            </ul>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="wdn_navigation_wrapper">
+            <div id="navigation">
+<!-- InstanceBeginEditable name="navlinks" -->
+                <!--#include virtual="../sharedcode/navigation.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+        </div>
+    </div>
+    <div id="wdn_content_wrapper">
+        <div id="titlegraphic">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+            <h1>Department</h1>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="pagetitle">
+<!-- InstanceBeginEditable name="pagetitle" -->
+ 
+<!-- InstanceEndEditable -->
+</div>
+        <div id="maincontent">
+            <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+            
+<!-- InstanceBeginEditable name="maincontentarea" -->
+            <p>Place your content here.<br />
+                Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
+                <a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
+            
+<!-- InstanceEndEditable -->
+            <div class="clear"></div>
+            <!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
+            <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+        </div>
+        <div id="footer">
+            <div id="footer_floater"></div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/feedback.html" -->
+            </div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="leftcollinks" -->
+                <!--#include virtual="../sharedcode/relatedLinks.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="contactinfo" -->
+                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/socialmediashare.html" -->
+            </div>
+            
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+            <div id="wdn_copyright">
+<!-- InstanceBeginEditable name="footercontent" -->
+                <!--#include virtual="../sharedcode/footer.html" -->
+                
+<!-- InstanceEndEditable -->
+                <!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
+                | <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
+        </div>
+    </div>
+    <div id="wdn_wrapper_footer"> </div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Document.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Document.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..ddddea7f83c591b0334c3b26350ec8e29a7a2734
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Document.tpl
@@ -0,0 +1,91 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><!-- InstanceBegin template="/Templates/document.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: document.dwt 1390 2010-11-18 15:24:33Z bbieber2 $
+-->
+<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/all.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
+<script type="text/javascript" src="/wdn/templates_3.0/scripts/all.js"></script>
+<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics.html" -->
+<!--#include virtual="/wdn/templates_3.0/includes/metanfavico.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+<!-- InstanceEndEditable -->
+</head>
+<body class="document">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+<div id="wdn_wrapper">
+    <div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
+        <h1>University of Nebraska&ndash;Lincoln</h1>
+    </div>
+    <div id="wdn_navigation_bar">
+        <div id="breadcrumbs">
+            <!-- WDN: see glossary item 'breadcrumbs' -->
+            
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+            <ul>
+                <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
+                <li>Department</li>
+            </ul>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="wdn_navigation_wrapper">
+            <div id="navigation"></div>
+        </div>
+    </div>
+    <div id="wdn_content_wrapper">
+        <div id="titlegraphic">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+            <h1>Department</h1>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="pagetitle">
+<!-- InstanceBeginEditable name="pagetitle" -->
+ 
+<!-- InstanceEndEditable -->
+</div>
+        <div id="maincontent">
+            <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+            
+<!-- InstanceBeginEditable name="maincontentarea" -->
+            <p>Place your content here.<br />
+                Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
+                <a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
+            
+<!-- InstanceEndEditable -->
+            <div class="clear"></div>
+            <!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
+            <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+        </div>
+        <div id="footer">
+            <div id="footer_floater"></div>
+            <div id="wdn_copyright">
+<!-- InstanceBeginEditable name="footercontent" -->
+                <!--#include virtual="../sharedcode/footer.html" -->
+                
+<!-- InstanceEndEditable -->
+                <!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
+                | <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
+        </div>
+    </div>
+    <div id="wdn_wrapper_footer"> </div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Fixed.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Fixed.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..6b2aff63fe372c0862e4767d20145f4b432447ba
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Fixed.tpl
@@ -0,0 +1,119 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><!-- InstanceBegin template="/Templates/fixed.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: fixed.dwt 1390 2010-11-18 15:24:33Z bbieber2 $
+-->
+<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/all.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
+<script type="text/javascript" src="/wdn/templates_3.0/scripts/all.js"></script>
+<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics.html" -->
+<!--#include virtual="/wdn/templates_3.0/includes/metanfavico.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+<!-- InstanceEndEditable -->
+</head>
+<body class="fixed">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+<div id="wdn_wrapper">
+    <div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
+        <h1>University of Nebraska&ndash;Lincoln</h1>
+        <!--#include virtual="/wdn/templates_3.0/includes/wdnTools.html" -->
+    </div>
+    <div id="wdn_navigation_bar">
+        <div id="breadcrumbs">
+            <!-- WDN: see glossary item 'breadcrumbs' -->
+            
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+            <ul>
+                <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
+                <li>Department</li>
+            </ul>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="wdn_navigation_wrapper">
+            <div id="navigation">
+<!-- InstanceBeginEditable name="navlinks" -->
+                <!--#include virtual="../sharedcode/navigation.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+        </div>
+    </div>
+    <div id="wdn_content_wrapper">
+        <div id="titlegraphic">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+            <h1>Department</h1>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="pagetitle">
+<!-- InstanceBeginEditable name="pagetitle" -->
+ 
+<!-- InstanceEndEditable -->
+</div>
+        <div id="maincontent">
+            <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+            
+<!-- InstanceBeginEditable name="maincontentarea" -->
+            <p>Place your content here.<br />
+                Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
+                <a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
+            
+<!-- InstanceEndEditable -->
+            <div class="clear"></div>
+            <!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
+            <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+        </div>
+        <div id="footer">
+            <div id="footer_floater"></div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/feedback.html" -->
+            </div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="leftcollinks" -->
+                <!--#include virtual="../sharedcode/relatedLinks.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="contactinfo" -->
+                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/socialmediashare.html" -->
+            </div>
+            
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+            <div id="wdn_copyright">
+<!-- InstanceBeginEditable name="footercontent" -->
+                <!--#include virtual="../sharedcode/footer.html" -->
+                
+<!-- InstanceEndEditable -->
+                <!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
+                | <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
+        </div>
+    </div>
+    <div id="wdn_wrapper_footer"> </div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Fixed_html5.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Fixed_html5.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..fd316a6e4f1f77bd3085fa440794820e381766d7
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Fixed_html5.tpl
@@ -0,0 +1,119 @@
+<!DOCTYPE html>
+<html lang="en"><!-- InstanceBegin template="/Templates/fixed_html5.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!--#include virtual="/wdn/templates_3.0/includes/metanfavico_html5.html" -->
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: fixed_html5.dwt 1918 2011-07-07 15:59:13Z bbieber2 $
+-->
+<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/all.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
+<script type="text/javascript" src="/wdn/templates_3.0/scripts/all.js"></script>
+<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics_html5.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+<!-- InstanceEndEditable -->
+</head>
+<body class="html5 fixed">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+<div id="wdn_wrapper">
+    <div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
+        <h1>University of Nebraska&ndash;Lincoln</h1>
+        <!--#include virtual="/wdn/templates_3.0/includes/wdnTools.html" -->
+    </div>
+    <div id="wdn_navigation_bar">
+        <div id="breadcrumbs">
+            <!-- WDN: see glossary item 'breadcrumbs' -->
+            
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+            <ul>
+                <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
+                <li>Department</li>
+            </ul>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="wdn_navigation_wrapper">
+            <div id="navigation">
+<!-- InstanceBeginEditable name="navlinks" -->
+                <!--#include virtual="../sharedcode/navigation.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+        </div>
+    </div>
+    <div id="wdn_content_wrapper">
+        <div id="titlegraphic">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+            <h1>Department</h1>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="pagetitle">
+<!-- InstanceBeginEditable name="pagetitle" -->
+ 
+<!-- InstanceEndEditable -->
+</div>
+        <div id="maincontent">
+            <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+            
+<!-- InstanceBeginEditable name="maincontentarea" -->
+            <p>Place your content here.<br />
+                Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
+                <a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
+            
+<!-- InstanceEndEditable -->
+            <div class="clear"></div>
+            <!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
+            <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+        </div>
+        <div id="footer">
+            <div id="footer_floater"></div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/feedback.html" -->
+            </div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="leftcollinks" -->
+                <!--#include virtual="../sharedcode/relatedLinks.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="contactinfo" -->
+                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/socialmediashare.html" -->
+            </div>
+            
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+            <div id="wdn_copyright">
+<!-- InstanceBeginEditable name="footercontent" -->
+                <!--#include virtual="../sharedcode/footer.html" -->
+                
+<!-- InstanceEndEditable -->
+                <!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
+                | <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
+        </div>
+    </div>
+    <div id="wdn_wrapper_footer"> </div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Liquid.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Liquid.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..903f7678d86317bb2718459896d20f9552b0c429
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Liquid.tpl
@@ -0,0 +1,119 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><!-- InstanceBegin template="/Templates/liquid.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: liquid.dwt 1390 2010-11-18 15:24:33Z bbieber2 $
+-->
+<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/all.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
+<script type="text/javascript" src="/wdn/templates_3.0/scripts/all.js"></script>
+<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics.html" -->
+<!--#include virtual="/wdn/templates_3.0/includes/metanfavico.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+<!-- InstanceEndEditable -->
+</head>
+<body class="liquid">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+<div id="wdn_wrapper">
+    <div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
+        <h1>University of Nebraska&ndash;Lincoln</h1>
+        <!--#include virtual="/wdn/templates_3.0/includes/wdnTools.html" -->
+    </div>
+    <div id="wdn_navigation_bar">
+        <div id="breadcrumbs">
+            <!-- WDN: see glossary item 'breadcrumbs' -->
+            
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+            <ul>
+                <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
+                <li>Department</li>
+            </ul>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="wdn_navigation_wrapper">
+            <div id="navigation">
+<!-- InstanceBeginEditable name="navlinks" -->
+                <!--#include virtual="../sharedcode/navigation.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+        </div>
+    </div>
+    <div id="wdn_content_wrapper">
+        <div id="titlegraphic">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+            <h1>Department</h1>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="pagetitle">
+<!-- InstanceBeginEditable name="pagetitle" -->
+ 
+<!-- InstanceEndEditable -->
+</div>
+        <div id="maincontent">
+            <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+            
+<!-- InstanceBeginEditable name="maincontentarea" -->
+            <p>Place your content here.<br />
+                Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
+                <a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
+            
+<!-- InstanceEndEditable -->
+            <div class="clear"></div>
+            <!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
+            <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+        </div>
+        <div id="footer">
+            <div id="footer_floater"></div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/feedback.html" -->
+            </div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="leftcollinks" -->
+                <!--#include virtual="../sharedcode/relatedLinks.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="contactinfo" -->
+                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/socialmediashare.html" -->
+            </div>
+            
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+            <div id="wdn_copyright">
+<!-- InstanceBeginEditable name="footercontent" -->
+                <!--#include virtual="../sharedcode/footer.html" -->
+                
+<!-- InstanceEndEditable -->
+                <!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
+                | <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
+        </div>
+    </div>
+    <div id="wdn_wrapper_footer"> </div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Mobile.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Mobile.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..38c61a852be894ab7da21d4a66884d4798cce439
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Mobile.tpl
@@ -0,0 +1,119 @@
+<!DOCTYPE html>
+<html lang="en"><!-- InstanceBegin template="/Templates/mobile.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!--#include virtual="/wdn/templates_3.0/includes/metanfavico_html5.html" -->
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: mobile.dwt 756 2009-09-15 02:31:02Z bbieber2 $
+-->
+<meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width" />
+<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/mobile.css" />
+<script type="text/javascript" src="/wdn/templates_3.0/scripts/mobile.js"></script>
+<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics_html5.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+<!-- InstanceEndEditable -->
+</head>
+<body class="html5 mobile">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+<div id="wdn_wrapper">
+    <div id="header"> <a href="http://m.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
+        <h1>University of Nebraska&ndash;Lincoln</h1>
+        <!--#include virtual="/wdn/templates_3.0/includes/wdnTools_html5.html" -->
+    </div>
+    <div id="wdn_navigation_bar">
+        <div id="breadcrumbs">
+            <!-- WDN: see glossary item 'breadcrumbs' -->
+            
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+            <ul>
+                <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
+                <li>Department</li>
+            </ul>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="wdn_navigation_wrapper">
+            <div id="navigation">
+<!-- InstanceBeginEditable name="navlinks" -->
+                <!--#include virtual="../sharedcode/navigation.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+        </div>
+    </div>
+    <div id="wdn_content_wrapper">
+        <div id="titlegraphic">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+            <h1>Department</h1>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="pagetitle">
+<!-- InstanceBeginEditable name="pagetitle" -->
+ 
+<!-- InstanceEndEditable -->
+</div>
+        <div id="maincontent">
+            <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+            
+<!-- InstanceBeginEditable name="maincontentarea" -->
+            <p>Place your content here.<br />
+                Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
+                <a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
+            
+<!-- InstanceEndEditable -->
+            <div class="clear"></div>
+            <!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
+            <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+        </div>
+        <div id="footer">
+            <div id="footer_floater"></div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/feedback.html" -->
+            </div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="leftcollinks" -->
+                <!--#include virtual="../sharedcode/relatedLinks.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="contactinfo" -->
+                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/socialmediashare.html" -->
+            </div>
+            
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+            <div id="wdn_copyright">
+<!-- InstanceBeginEditable name="footercontent" -->
+                <!--#include virtual="../sharedcode/footer.html" -->
+                
+<!-- InstanceEndEditable -->
+                <!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
+                | <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
+        </div>
+    </div>
+    <div id="wdn_wrapper_footer"> </div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Popup.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Popup.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..c1ce640ae2ef55c47ea29a7d31102da1928ced8b
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Popup.tpl
@@ -0,0 +1,75 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><!-- InstanceBegin template="/Templates/popup.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: popup.dwt 1390 2010-11-18 15:24:33Z bbieber2 $
+-->
+<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/all.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
+<script type="text/javascript" src="/wdn/templates_3.0/scripts/all.js"></script>
+<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics.html" -->
+<!--#include virtual="/wdn/templates_3.0/includes/metanfavico.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+<!-- InstanceEndEditable -->
+</head>
+<body class="popup">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+<div id="wdn_wrapper">
+    <div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
+        <h1>University of Nebraska&ndash;Lincoln</h1>
+    </div>
+    <div id="wdn_content_wrapper">
+        <div id="titlegraphic">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+            <h1>Department</h1>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="pagetitle">
+<!-- InstanceBeginEditable name="pagetitle" -->
+ 
+<!-- InstanceEndEditable -->
+</div>
+        <div id="maincontent">
+            <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+            
+<!-- InstanceBeginEditable name="maincontentarea" -->
+            <p>Place your content here.<br />
+                Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
+                <a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
+            
+<!-- InstanceEndEditable -->
+            <div class="clear"></div>
+            <!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
+            <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+        </div>
+        <div id="footer">
+            <div id="footer_floater"></div>
+            <div id="wdn_copyright">
+<!-- InstanceBeginEditable name="footercontent" -->
+                <!--#include virtual="../sharedcode/footer.html" -->
+                
+<!-- InstanceEndEditable -->
+                <!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
+                | <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
+        </div>
+    </div>
+    <div id="wdn_wrapper_footer"> </div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Secure.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Secure.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..7d30b122432d272988eddc5e399df842bcb157fa
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Secure.tpl
@@ -0,0 +1,96 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><!-- InstanceBegin template="/Templates/secure.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: secure.dwt 1390 2010-11-18 15:24:33Z bbieber2 $
+-->
+<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/debug.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
+<script type="text/javascript" src="/wdn/templates_3.0/scripts/all.js"></script>
+<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics.html" -->
+<!--#include virtual="/wdn/templates_3.0/includes/metanfavico.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+<!-- InstanceEndEditable -->
+</head>
+<body class="secure fixed">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+<div id="wdn_wrapper">
+    <div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
+        <h1>University of Nebraska&ndash;Lincoln</h1>
+    </div>
+    <div id="wdn_navigation_bar">
+        <div id="breadcrumbs">
+            <!-- WDN: see glossary item 'breadcrumbs' -->
+            
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+            <ul>
+                <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
+                <li>Department</li>
+            </ul>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="wdn_navigation_wrapper">
+            <div id="navigation">
+<!-- InstanceBeginEditable name="navlinks" -->
+                <!--#include virtual="../sharedcode/navigation.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+        </div>
+    </div>
+    <div id="wdn_content_wrapper">
+        <div id="titlegraphic">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+            <h1>Department</h1>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="pagetitle">
+<!-- InstanceBeginEditable name="pagetitle" -->
+ 
+<!-- InstanceEndEditable -->
+</div>
+        <div id="maincontent">
+            <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+            
+<!-- InstanceBeginEditable name="maincontentarea" -->
+            <p>Place your content here.<br />
+                Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
+                <a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
+            
+<!-- InstanceEndEditable -->
+            <div class="clear"></div>
+            <!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
+            <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+        </div>
+        <div id="footer">
+            <div id="footer_floater"></div>
+            <div id="wdn_copyright">
+<!-- InstanceBeginEditable name="footercontent" -->
+                <!--#include virtual="../sharedcode/footer.html" -->
+                
+<!-- InstanceEndEditable -->
+                <!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
+                | <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
+        </div>
+    </div>
+    <div id="wdn_wrapper_footer"> </div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Shared_column_left.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Shared_column_left.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..c87ba9f1bac6ba746bc0506ed0402d5557838865
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Shared_column_left.tpl
@@ -0,0 +1,131 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><!-- InstanceBegin template="/Templates/shared_column_left.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: shared_column_left.dwt 1390 2010-11-18 15:24:33Z bbieber2 $
+-->
+<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/all.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
+<script type="text/javascript" src="/wdn/templates_3.0/scripts/all.js"></script>
+<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics.html" -->
+<!--#include virtual="/wdn/templates_3.0/includes/metanfavico.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+<!-- InstanceEndEditable -->
+</head>
+<body class="fixed">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+<div id="wdn_wrapper">
+    <div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
+        <h1>University of Nebraska&ndash;Lincoln</h1>
+        <!--#include virtual="/wdn/templates_3.0/includes/wdnTools.html" -->
+    </div>
+    <div id="wdn_navigation_bar">
+        <div id="breadcrumbs">
+            <!-- WDN: see glossary item 'breadcrumbs' -->
+            
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+            <ul>
+                <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
+                <li>Department</li>
+            </ul>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="wdn_navigation_wrapper">
+            <div id="navigation">
+<!-- InstanceBeginEditable name="navlinks" -->
+                <!--#include virtual="../sharedcode/navigation.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+        </div>
+    </div>
+    <div id="wdn_content_wrapper">
+        <div id="titlegraphic">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+            <h1>Department</h1>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="pagetitle">
+<!-- InstanceBeginEditable name="pagetitle" -->
+ 
+<!-- InstanceEndEditable -->
+</div>
+        <div id="maincontent">
+            <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+            
+<!-- InstanceBeginEditable name="sharedcolumn" -->
+            <div class="col left">
+                <!--#include virtual="../sharedcode/sharedColumn.html" -->
+            </div>
+            
+<!-- InstanceEndEditable -->
+            <div class="three_col right"> 
+<!-- InstanceBeginEditable name="maincontentarea" -->
+                <p>Place your content here.<br />
+                    Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
+                    <a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="clear"></div>
+            <!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
+            <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+        </div>
+        <div id="footer">
+            <div id="footer_floater"></div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/feedback.html" -->
+            </div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="leftcollinks" -->
+                <!--#include virtual="../sharedcode/relatedLinks.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="contactinfo" -->
+                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/socialmediashare.html" -->
+            </div>
+            
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+            <div id="wdn_copyright">
+<!-- InstanceBeginEditable name="footercontent" -->
+                <!--#include virtual="../sharedcode/footer.html" -->
+                
+<!-- InstanceEndEditable -->
+                <ul>
+                    <li><a href="http://validator.unl.edu/check/referer">W3C</a></li>
+                    <li><a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a></li>
+                </ul>
+                <!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
+                <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
+        </div>
+    </div>
+    <div id="wdn_wrapper_footer"> </div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Shared_column_right.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Shared_column_right.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..ed15b31f80eea62c3e70d0ba91147340221b4e72
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Shared_column_right.tpl
@@ -0,0 +1,131 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><!-- InstanceBegin template="/Templates/shared_column_right.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: shared_column_right.dwt 1390 2010-11-18 15:24:33Z bbieber2 $
+-->
+<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/all.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
+<script type="text/javascript" src="/wdn/templates_3.0/scripts/all.js"></script>
+<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics.html" -->
+<!--#include virtual="/wdn/templates_3.0/includes/metanfavico.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+<!-- InstanceEndEditable -->
+</head>
+<body class="fixed">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+<div id="wdn_wrapper">
+    <div id="header"> <a href="http://www.unl.edu/" title="UNL website"><img src="/wdn/templates_3.0/images/logo.png" alt="UNL graphic identifier" id="logo" /></a>
+        <h1>University of Nebraska&ndash;Lincoln</h1>
+        <!--#include virtual="/wdn/templates_3.0/includes/wdnTools.html" -->
+    </div>
+    <div id="wdn_navigation_bar">
+        <div id="breadcrumbs">
+            <!-- WDN: see glossary item 'breadcrumbs' -->
+            
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+            <ul>
+                <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
+                <li>Department</li>
+            </ul>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="wdn_navigation_wrapper">
+            <div id="navigation">
+<!-- InstanceBeginEditable name="navlinks" -->
+                <!--#include virtual="../sharedcode/navigation.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+        </div>
+    </div>
+    <div id="wdn_content_wrapper">
+        <div id="titlegraphic">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+            <h1>Department</h1>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="pagetitle">
+<!-- InstanceBeginEditable name="pagetitle" -->
+ 
+<!-- InstanceEndEditable -->
+</div>
+        <div id="maincontent">
+            <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+            <div class="three_col left"> 
+<!-- InstanceBeginEditable name="maincontentarea" -->
+                <p>Place your content here.<br />
+                    Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
+                    <a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
+                
+<!-- InstanceEndEditable -->
+</div>
+            
+<!-- InstanceBeginEditable name="sharedcolumn" -->
+            <div class="col right">
+                <!--#include virtual="../sharedcode/sharedColumn.html" -->
+            </div>
+            
+<!-- InstanceEndEditable -->
+            <div class="clear"></div>
+            <!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
+            <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+        </div>
+        <div id="footer">
+            <div id="footer_floater"></div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/feedback.html" -->
+            </div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="leftcollinks" -->
+                <!--#include virtual="../sharedcode/relatedLinks.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="contactinfo" -->
+                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/socialmediashare.html" -->
+            </div>
+            
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+            <div id="wdn_copyright">
+<!-- InstanceBeginEditable name="footercontent" -->
+                <!--#include virtual="../sharedcode/footer.html" -->
+                
+<!-- InstanceEndEditable -->
+                <ul>
+                    <li><a href="http://validator.unl.edu/check/referer">W3C</a></li>
+                    <li><a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a></li>
+                </ul>
+                <!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
+                <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
+        </div>
+    </div>
+    <div id="wdn_wrapper_footer"> </div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Unlaffiliate.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Unlaffiliate.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..dd91819adbceb4f1ce75d6980cd858a9d21d982e
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3/Unlaffiliate.tpl
@@ -0,0 +1,127 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: unlaffiliate.dwt 1390 2010-11-18 15:24:33Z bbieber2 $
+-->
+<link rel="stylesheet" type="text/css" media="screen" href="/wdn/templates_3.0/css/all.css" />
+<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.0/css/print.css" />
+<link rel="stylesheet" type="text/css" media="screen" href="../sharedcode/affiliate.css" />
+<script type="text/javascript" src="/wdn/templates_3.0/scripts/all.js"></script>
+<!--#include virtual="/wdn/templates_3.0/includes/browserspecifics.html" -->
+<!--#include virtual="/wdn/templates_3.0/includes/metanfavico.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>UNL | Department | New Page</title>
+<!-- InstanceEndEditable -->
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+<!-- InstanceEndEditable -->
+</head>
+<body class="fixed">
+<p class="skipnav"> <a class="skipnav" href="#maincontent">Skip Navigation</a> </p>
+<div id="wdn_wrapper">
+    <div id="header"> 	
+		
+<!-- InstanceBeginEditable name="sitebranding" -->
+		<div id="affiliate_note"><a href="http://www.unl.edu" title="University of Nebraska&ndash;Lincoln">An affiliate of the University of Nebraska&ndash;Lincoln</a></div>
+		<a href="/" title="Through the Eyes of the Child Initiative"><img src="../sharedcode/affiliate_imgs/affiliate_logo.png" alt="Through the Eyes of the Child Initiative" id="logo" /></a>
+    	<h1>Through the Eyes of the Child Initiative</h1>
+		<div id='tag_line'>A Nebraska Supreme Court Initiative</div>
+		
+<!-- InstanceEndEditable -->
+		<!--#include virtual="/wdn/templates_3.0/includes/wdnTools.html" -->
+    </div>
+    <div id="wdn_navigation_bar">
+        <div id="breadcrumbs">
+            <!-- WDN: see glossary item 'breadcrumbs' -->
+            
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+            <ul>
+                <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
+                <li>Department</li>
+            </ul>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="wdn_navigation_wrapper">
+            <div id="navigation">
+<!-- InstanceBeginEditable name="navlinks" -->
+                <!--#include virtual="../sharedcode/navigation.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+        </div>
+    </div>
+    <div id="wdn_content_wrapper">
+        <div id="titlegraphic">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+            <h1>Department</h1>
+            
+<!-- InstanceEndEditable -->
+</div>
+        <div id="pagetitle">
+<!-- InstanceBeginEditable name="pagetitle" -->
+ 
+<!-- InstanceEndEditable -->
+</div>
+        <div id="maincontent">
+            <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+            
+<!-- InstanceBeginEditable name="maincontentarea" -->
+            <p>Place your content here.<br />
+                Remember to validate your pages before publishing! Sample layouts are available through the <a href="http://wdn.unl.edu//">Web Developer Network</a>. <br />
+                <a href="http://validator.unl.edu/check/referer">Check this page</a> </p>
+            
+<!-- InstanceEndEditable -->
+            <div class="clear"></div>
+            <!--#include virtual="/wdn/templates_3.0/includes/noscript.html" -->
+            <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+        </div>
+        <div id="footer">
+            <div id="footer_floater"></div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/feedback.html" -->
+            </div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="leftcollinks" -->
+                <!--#include virtual="../sharedcode/relatedLinks.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+<!-- InstanceBeginEditable name="contactinfo" -->
+                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col">
+                <!--#include virtual="/wdn/templates_3.0/includes/socialmediashare.html" -->
+            </div>
+            
+<!-- InstanceBeginEditable name="optionalfooter" -->
+ 
+<!-- InstanceEndEditable -->
+            <div id="wdn_copyright">
+<!-- InstanceBeginEditable name="footercontent" -->
+                <!--#include virtual="../sharedcode/footer.html" -->
+                
+<!-- InstanceEndEditable -->
+                <!--#include virtual="/wdn/templates_3.0/includes/wdn.html" -->
+                | <a href="http://validator.unl.edu/check/referer">W3C</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a> <a href="http://www.unl.edu/" title="UNL Home" id="wdn_unl_wordmark"><img src="/wdn/templates_3.0/css/footer/images/wordmark.png" alt="UNL's wordmark" /></a> </div>
+        </div>
+    </div>
+    <div id="wdn_wrapper_footer"> </div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Debug.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Debug.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..5427bfa87ed24b06434c2c0b983ae783d824cfff
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Debug.tpl
@@ -0,0 +1,137 @@
+<!DOCTYPE html>
+<!--[if IEMobile 7 ]><html class="ie iem7"><!-- InstanceBegin template="/Templates/debug.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><!-- InstanceBegin template="/Templates/debug.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if IE 7 ]><html class="ie ie7" lang="en"><!-- InstanceBegin template="/Templates/debug.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if IE 8 ]><html class="ie ie8" lang="en"><!-- InstanceBegin template="/Templates/debug.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><!-- InstanceBegin template="/Templates/debug.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!-- InstanceBegin template="/Templates/debug.dwt" codeOutsideHTMLIsLocked="false" --><!--<![endif]-->
+<head>
+<!--#include virtual="/wdn/templates_3.1/includes/metanfavico.html" -->
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: debug.dwt | ea2608181e2b6604db76106fd982b39218ddcb8b | Fri Mar 9 12:20:43 2012 -0600 | Kevin Abel  $
+-->
+<!--#include virtual="/wdn/templates_3.1/includes/scriptsandstyles_debug.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>Use a descriptive page title | Optional Site Title (use for context) | University of Nebraska&ndash;Lincoln</title>
+<!-- InstanceEndEditable -->
+
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+
+<!-- InstanceEndEditable -->
+<!-- TemplateParam name="class" type="text" value="fixed debug" -->
+</head>
+<body class="@@(_document['class'])@@" data-version="3.1">
+    <nav class="skipnav">
+        <a class="skipnav" href="#maincontent">Skip Navigation</a>
+    </nav>
+    <div id="wdn_wrapper">
+        <header id="header" role="banner">
+            <a id="logo" href="http://www.unl.edu/" title="UNL website">UNL</a>
+            <span id="wdn_institution_title">University of Nebraska&ndash;Lincoln</span>
+            <span id="wdn_site_title">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+The Title of My Site
+<!-- InstanceEndEditable -->
+</span>
+            <!--#include virtual="/wdn/templates_3.1/includes/idm.html" -->
+            <!--#include virtual="/wdn/templates_3.1/includes/wdnTools.html" -->
+        </header>
+        <div id="wdn_navigation_bar">
+            <nav id="breadcrumbs">
+                <!-- WDN: see glossary item 'breadcrumbs' -->
+                <h3 class="wdn_list_descriptor hidden">Breadcrumbs</h3>
+                
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+                <ul>
+                    <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
+                    <li class="selected"><a href="#" title="Site Title">Site Title</a></li>
+                    <li>Page Title</li>
+                </ul>
+                
+<!-- InstanceEndEditable -->
+            </nav>
+            <div id="wdn_navigation_wrapper">
+                <nav id="navigation" role="navigation">
+                    <h3 class="wdn_list_descriptor hidden">Navigation</h3>
+                    
+<!-- InstanceBeginEditable name="navlinks" -->
+                    <!--#include virtual="../sharedcode/navigation.html" -->
+                    
+<!-- InstanceEndEditable -->
+                </nav>
+            </div>
+        </div>
+        <div id="wdn_content_wrapper">
+            <div id="pagetitle">
+                
+<!-- InstanceBeginEditable name="pagetitle" -->
+                <h1>This is your page title. It's now an &lt;h1&gt;, baby!</h1>
+                
+<!-- InstanceEndEditable -->
+            </div>
+            <div id="maincontent" role="main">
+                <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+                
+<!-- InstanceBeginEditable name="maincontentarea" -->
+                <h2>This is a blank page</h2>
+                <p>Impress your audience with awesome content!</p> 
+                
+<!-- InstanceEndEditable -->
+                <div class="clear"></div>
+                <!--#include virtual="/wdn/templates_3.1/includes/noscript.html" -->
+                <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+            </div>
+        </div>
+        <footer id="footer">
+            <div id="footer_floater"></div>
+            <div class="footer_col" id="wdn_footer_feedback">
+                <!--#include virtual="/wdn/templates_3.1/includes/feedback.html" -->
+            </div>
+            <div class="footer_col" id="wdn_footer_related">
+                
+<!-- InstanceBeginEditable name="leftcollinks" -->
+                <!--#include virtual="../sharedcode/relatedLinks.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col" id="wdn_footer_contact">
+                
+<!-- InstanceBeginEditable name="contactinfo" -->
+                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col" id="wdn_footer_share">
+                <!--#include virtual="/wdn/templates_3.1/includes/socialmediashare.html" -->
+            </div>
+            
+<!-- InstanceBeginEditable name="optionalfooter" -->
+            
+<!-- InstanceEndEditable -->
+            <div id="wdn_copyright">
+                <div>
+                    
+<!-- InstanceBeginEditable name="footercontent" -->
+                    <!--#include virtual="../sharedcode/footer.html" -->
+                    
+<!-- InstanceEndEditable -->
+                    <!--#include virtual="/wdn/templates_3.1/includes/wdn.html" -->
+                </div>
+                <!--#include virtual="/wdn/templates_3.1/includes/logos.html" -->
+            </div>
+        </footer>
+    </div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Fixed.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Fixed.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..2ab5dd2792ca321bfcfa2413ea1150aea1e48f61
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Fixed.tpl
@@ -0,0 +1,137 @@
+<!DOCTYPE html>
+<!--[if IEMobile 7 ]><html class="ie iem7"><!-- InstanceBegin template="/Templates/fixed.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><!-- InstanceBegin template="/Templates/fixed.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if IE 7 ]><html class="ie ie7" lang="en"><!-- InstanceBegin template="/Templates/fixed.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if IE 8 ]><html class="ie ie8" lang="en"><!-- InstanceBegin template="/Templates/fixed.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><!-- InstanceBegin template="/Templates/fixed.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!-- InstanceBegin template="/Templates/fixed.dwt" codeOutsideHTMLIsLocked="false" --><!--<![endif]-->
+<head>
+<!--#include virtual="/wdn/templates_3.1/includes/metanfavico.html" -->
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: fixed.dwt | ea2608181e2b6604db76106fd982b39218ddcb8b | Fri Mar 9 12:20:43 2012 -0600 | Kevin Abel  $
+-->
+<!--#include virtual="/wdn/templates_3.1/includes/scriptsandstyles.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>Use a descriptive page title | Optional Site Title (use for context) | University of Nebraska&ndash;Lincoln</title>
+<!-- InstanceEndEditable -->
+
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+
+<!-- InstanceEndEditable -->
+<!-- TemplateParam name="class" type="text" value="fixed" -->
+</head>
+<body class="@@(_document['class'])@@" data-version="3.1">
+    <nav class="skipnav">
+        <a class="skipnav" href="#maincontent">Skip Navigation</a>
+    </nav>
+    <div id="wdn_wrapper">
+        <header id="header" role="banner">
+            <a id="logo" href="http://www.unl.edu/" title="UNL website">UNL</a>
+            <span id="wdn_institution_title">University of Nebraska&ndash;Lincoln</span>
+            <span id="wdn_site_title">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+The Title of My Site
+<!-- InstanceEndEditable -->
+</span>
+            <!--#include virtual="/wdn/templates_3.1/includes/idm.html" -->
+            <!--#include virtual="/wdn/templates_3.1/includes/wdnTools.html" -->
+        </header>
+        <div id="wdn_navigation_bar">
+            <nav id="breadcrumbs">
+                <!-- WDN: see glossary item 'breadcrumbs' -->
+                <h3 class="wdn_list_descriptor hidden">Breadcrumbs</h3>
+                
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+                <ul>
+                    <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
+                    <li class="selected"><a href="#" title="Site Title">Site Title</a></li>
+                    <li>Page Title</li>
+                </ul>
+                
+<!-- InstanceEndEditable -->
+            </nav>
+            <div id="wdn_navigation_wrapper">
+                <nav id="navigation" role="navigation">
+                    <h3 class="wdn_list_descriptor hidden">Navigation</h3>
+                    
+<!-- InstanceBeginEditable name="navlinks" -->
+                    <!--#include virtual="../sharedcode/navigation.html" -->
+                    
+<!-- InstanceEndEditable -->
+                </nav>
+            </div>
+        </div>
+        <div id="wdn_content_wrapper">
+            <div id="pagetitle">
+                
+<!-- InstanceBeginEditable name="pagetitle" -->
+                <h1>This is your page title. It's now an &lt;h1&gt;, baby!</h1>
+                
+<!-- InstanceEndEditable -->
+            </div>
+            <div id="maincontent" role="main">
+                <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+                
+<!-- InstanceBeginEditable name="maincontentarea" -->
+                <h2>This is a blank page</h2>
+                <p>Impress your audience with awesome content!</p> 
+                
+<!-- InstanceEndEditable -->
+                <div class="clear"></div>
+                <!--#include virtual="/wdn/templates_3.1/includes/noscript.html" -->
+                <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+            </div>
+        </div>
+        <footer id="footer">
+            <div id="footer_floater"></div>
+            <div class="footer_col" id="wdn_footer_feedback">
+                <!--#include virtual="/wdn/templates_3.1/includes/feedback.html" -->
+            </div>
+            <div class="footer_col" id="wdn_footer_related">
+                
+<!-- InstanceBeginEditable name="leftcollinks" -->
+                <!--#include virtual="../sharedcode/relatedLinks.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col" id="wdn_footer_contact">
+                
+<!-- InstanceBeginEditable name="contactinfo" -->
+                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col" id="wdn_footer_share">
+                <!--#include virtual="/wdn/templates_3.1/includes/socialmediashare.html" -->
+            </div>
+            
+<!-- InstanceBeginEditable name="optionalfooter" -->
+            
+<!-- InstanceEndEditable -->
+            <div id="wdn_copyright">
+                <div>
+                    
+<!-- InstanceBeginEditable name="footercontent" -->
+                    <!--#include virtual="../sharedcode/footer.html" -->
+                    
+<!-- InstanceEndEditable -->
+                    <!--#include virtual="/wdn/templates_3.1/includes/wdn.html" -->
+                </div>
+                <!--#include virtual="/wdn/templates_3.1/includes/logos.html" -->
+            </div>
+        </footer>
+    </div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Local.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Local.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..2bd3f2525ae9b07ff75b113cf2f9207c5321a7a6
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Local.tpl
@@ -0,0 +1,137 @@
+<!DOCTYPE html>
+<!--[if IEMobile 7 ]><html class="ie iem7"><!-- InstanceBegin template="/Templates/local.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><!-- InstanceBegin template="/Templates/local.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if IE 7 ]><html class="ie ie7" lang="en"><!-- InstanceBegin template="/Templates/local.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if IE 8 ]><html class="ie ie8" lang="en"><!-- InstanceBegin template="/Templates/local.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><!-- InstanceBegin template="/Templates/local.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!-- InstanceBegin template="/Templates/local.dwt" codeOutsideHTMLIsLocked="false" --><!--<![endif]-->
+<head>
+<!--#include virtual="/wdn/templates_3.1/includes/metanfavico.html" -->
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: local.dwt | d3b0e517ecafe3e1f81c45ddafa7a316adcc45dd | Fri Mar 9 11:41:56 2012 -0600 | Kevin Abel  $
+-->
+<!--#include virtual="/wdn/templates_3.1/includes/scriptsandstyles_local.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>Use a descriptive page title | Optional Site Title (use for context) | University of Nebraska&ndash;Lincoln</title>
+<!-- InstanceEndEditable -->
+
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+
+<!-- InstanceEndEditable -->
+<!-- TemplateParam name="class" type="text" value="fixed" -->
+</head>
+<body class="@@(_document['class'])@@" data-version="3.1">
+    <nav class="skipnav">
+        <a class="skipnav" href="#maincontent">Skip Navigation</a>
+    </nav>
+    <div id="wdn_wrapper">
+        <header id="header" role="banner">
+            <a id="logo" href="http://www.unl.edu/" title="UNL website">UNL</a>
+            <span id="wdn_institution_title">University of Nebraska&ndash;Lincoln</span>
+            <span id="wdn_site_title">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+The Title of My Site
+<!-- InstanceEndEditable -->
+</span>
+            <!--#include virtual="/wdn/templates_3.1/includes/idm.html" -->
+            <!--#include virtual="/wdn/templates_3.1/includes/wdnTools.html" -->
+        </header>
+        <div id="wdn_navigation_bar">
+            <nav id="breadcrumbs">
+                <!-- WDN: see glossary item 'breadcrumbs' -->
+                <h3 class="wdn_list_descriptor hidden">Breadcrumbs</h3>
+                
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+                <ul>
+                    <li><a href="http://www.unl.edu/" title="University of Nebraska&ndash;Lincoln">UNL</a></li>
+                    <li class="selected"><a href="#" title="Site Title">Site Title</a></li>
+                    <li>Page Title</li>
+                </ul>
+                
+<!-- InstanceEndEditable -->
+            </nav>
+            <div id="wdn_navigation_wrapper">
+                <nav id="navigation" role="navigation">
+                    <h3 class="wdn_list_descriptor hidden">Navigation</h3>
+                    
+<!-- InstanceBeginEditable name="navlinks" -->
+                    <!--#include virtual="../sharedcode/navigation.html" -->
+                    
+<!-- InstanceEndEditable -->
+                </nav>
+            </div>
+        </div>
+        <div id="wdn_content_wrapper">
+            <div id="pagetitle">
+                
+<!-- InstanceBeginEditable name="pagetitle" -->
+                <h1>This is your page title. It's now an &lt;h1&gt;, baby!</h1>
+                
+<!-- InstanceEndEditable -->
+            </div>
+            <div id="maincontent" role="main">
+                <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+                
+<!-- InstanceBeginEditable name="maincontentarea" -->
+                <h2>This is a blank page</h2>
+                <p>Impress your audience with awesome content!</p> 
+                
+<!-- InstanceEndEditable -->
+                <div class="clear"></div>
+                <!--#include virtual="/wdn/templates_3.1/includes/noscript.html" -->
+                <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+            </div>
+        </div>
+        <footer id="footer">
+            <div id="footer_floater"></div>
+            <div class="footer_col" id="wdn_footer_feedback">
+                <!--#include virtual="/wdn/templates_3.1/includes/feedback.html" -->
+            </div>
+            <div class="footer_col" id="wdn_footer_related">
+                
+<!-- InstanceBeginEditable name="leftcollinks" -->
+                <!--#include virtual="../sharedcode/relatedLinks.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col" id="wdn_footer_contact">
+                
+<!-- InstanceBeginEditable name="contactinfo" -->
+                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col" id="wdn_footer_share">
+                <!--#include virtual="/wdn/templates_3.1/includes/socialmediashare.html" -->
+            </div>
+            
+<!-- InstanceBeginEditable name="optionalfooter" -->
+            
+<!-- InstanceEndEditable -->
+            <div id="wdn_copyright">
+                <div>
+                    
+<!-- InstanceBeginEditable name="footercontent" -->
+                    <!--#include virtual="../sharedcode/footer.html" -->
+                    
+<!-- InstanceEndEditable -->
+                    <!--#include virtual="/wdn/templates_3.1/includes/wdn.html" -->
+                </div>
+                <!--#include virtual="/wdn/templates_3.1/includes/logos.html" -->
+            </div>
+        </footer>
+    </div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Unlaffiliate.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Unlaffiliate.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..e17a0b841a4eb7180ca46dd17999816a71ada354
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Unlaffiliate.tpl
@@ -0,0 +1,141 @@
+<!DOCTYPE html>
+<!--[if IEMobile 7 ]><html class="ie iem7"><!-- InstanceBegin template="/Templates/unlaffiliate.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if IE 7 ]><html class="ie ie7" lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if IE 8 ]><html class="ie ie8" lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate.dwt" codeOutsideHTMLIsLocked="false" --><!--<![endif]-->
+<head>
+<!--#include virtual="/wdn/templates_3.1/includes/metanfavico.html" -->
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: unlaffiliate.dwt | ea2608181e2b6604db76106fd982b39218ddcb8b | Fri Mar 9 12:20:43 2012 -0600 | Kevin Abel  $
+-->
+<!--#include virtual="/wdn/templates_3.1/includes/scriptsandstyles.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>Use a descriptive page title | Optional Site Title (use for context) | UNL Affiliate</title>
+<!-- InstanceEndEditable -->
+
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+<link rel="stylesheet" type="text/css" media="screen" href="../sharedcode/affiliate.css" />
+<link href="../sharedcode/affiliate_imgs/favicon.ico" rel="shortcut icon" />
+<!-- InstanceEndEditable -->
+<!-- TemplateParam name="class" type="text" value="fixed" -->
+</head>
+<body class="@@(_document['class'])@@" data-version="3.1">
+    <nav class="skipnav">
+        <a class="skipnav" href="#maincontent">Skip Navigation</a>
+    </nav>
+    <div id="wdn_wrapper">
+        <header id="header" role="banner">
+            <!-- InstanceBeginEditable name="sitebranding_logo" -->
+            <a id="logo" href="http://www.throughtheeyes.org/" title="Through the Eyes of the Child Initiative">Through the Eyes of the Child Initiative</a>
+            
+<!-- InstanceEndEditable -->
+            <span id="wdn_institution_title"><!-- InstanceBeginEditable name="sitebranding_affiliate" --><a href="http://www.unl.edu" title="University of Nebraska&ndash;Lincoln">An affiliate of the University of Nebraska&ndash;Lincoln</a>
+<!-- InstanceEndEditable -->
+</span>            
+    		<span id="wdn_site_title">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+Throught the Eyes of a Child Initiative<span>A Nebraska Supreme Court Initiative</span>
+<!-- InstanceEndEditable -->
+</span>
+    		<!--#include virtual="/wdn/templates_3.1/includes/idm.html" -->
+            <!--#include virtual="/wdn/templates_3.1/includes/wdnTools.html" -->
+        </header>
+        <div id="wdn_navigation_bar">
+            <nav id="breadcrumbs">
+                <!-- WDN: see glossary item 'breadcrumbs' -->
+                <h3 class="wdn_list_descriptor hidden">Breadcrumbs</h3>
+                
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+                <ul>
+                    <li><a href="http://www.throughtheeyes.org/" title="Through the Eyes of the Child Initiative">Home</a></li>
+                </ul>
+                
+<!-- InstanceEndEditable -->
+            </nav>
+            <div id="wdn_navigation_wrapper">
+                <nav id="navigation" role="navigation">
+                    <h3 class="wdn_list_descriptor hidden">Navigation</h3>
+                    
+<!-- InstanceBeginEditable name="navlinks" -->
+                    <!--#include virtual="../sharedcode/navigation.html" -->
+                    
+<!-- InstanceEndEditable -->
+                </nav>
+            </div>
+        </div>
+        <div id="wdn_content_wrapper">
+            <div id="pagetitle">
+                
+<!-- InstanceBeginEditable name="pagetitle" -->
+                <h1>This is your page title. It's now an &lt;h1&gt;, baby!</h1>
+                
+<!-- InstanceEndEditable -->
+            </div>
+            <div id="maincontent" role="main">
+                <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+                
+<!-- InstanceBeginEditable name="maincontentarea" -->
+                <h2>This is a blank page</h2>
+                <p>Impress your audience with awesome content!</p> 
+                
+<!-- InstanceEndEditable -->
+                <div class="clear"></div>
+                <!--#include virtual="/wdn/templates_3.1/includes/noscript.html" -->
+                <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+            </div>
+        </div>
+        <footer id="footer">
+            <div id="footer_floater"></div>
+            <div class="footer_col" id="wdn_footer_feedback">
+                <!--#include virtual="/wdn/templates_3.1/includes/feedback.html" -->
+            </div>
+            <div class="footer_col" id="wdn_footer_related">
+                
+<!-- InstanceBeginEditable name="leftcollinks" -->
+                <!--#include virtual="../sharedcode/relatedLinks.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col" id="wdn_footer_contact">
+                
+<!-- InstanceBeginEditable name="contactinfo" -->
+                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col" id="wdn_footer_share">
+                <!--#include virtual="/wdn/templates_3.1/includes/socialmediashare.html" -->
+            </div>
+            
+<!-- InstanceBeginEditable name="optionalfooter" -->
+            
+<!-- InstanceEndEditable -->
+            <div id="wdn_copyright">
+                <div>
+                    
+<!-- InstanceBeginEditable name="footercontent" -->
+                    <!--#include virtual="../sharedcode/footer.html" -->
+                    
+<!-- InstanceEndEditable -->
+                    <!--#include virtual="/wdn/templates_3.1/includes/wdn.html" -->
+                </div>
+                <!--#include virtual="/wdn/templates_3.1/includes/logos.html" -->
+            </div>
+        </footer>
+    </div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Unlaffiliate_debug.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Unlaffiliate_debug.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..e09fc843aa01c2fa4c3b5aa9fb6fbca4d8a130c1
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Unlaffiliate_debug.tpl
@@ -0,0 +1,141 @@
+<!DOCTYPE html>
+<!--[if IEMobile 7 ]><html class="ie iem7"><!-- InstanceBegin template="/Templates/unlaffiliate_debug.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate_debug.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if IE 7 ]><html class="ie ie7" lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate_debug.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if IE 8 ]><html class="ie ie8" lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate_debug.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate_debug.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate_debug.dwt" codeOutsideHTMLIsLocked="false" --><!--<![endif]-->
+<head>
+<!--#include virtual="/wdn/templates_3.1/includes/metanfavico.html" -->
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: unlaffiliate_debug.dwt | ea2608181e2b6604db76106fd982b39218ddcb8b | Fri Mar 9 12:20:43 2012 -0600 | Kevin Abel  $
+-->
+<!--#include virtual="/wdn/templates_3.1/includes/scriptsandstyles_debug.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>Use a descriptive page title | Optional Site Title (use for context) | UNL Affiliate</title>
+<!-- InstanceEndEditable -->
+
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+<link rel="stylesheet" type="text/css" media="screen" href="../sharedcode/affiliate.css" />
+<link href="../sharedcode/affiliate_imgs/favicon.ico" rel="shortcut icon" />
+<!-- InstanceEndEditable -->
+<!-- TemplateParam name="class" type="text" value="fixed debug" -->
+</head>
+<body class="@@(_document['class'])@@" data-version="3.1">
+    <nav class="skipnav">
+        <a class="skipnav" href="#maincontent">Skip Navigation</a>
+    </nav>
+    <div id="wdn_wrapper">
+        <header id="header" role="banner">
+            <!-- InstanceBeginEditable name="sitebranding_logo" -->
+            <a id="logo" href="http://www.throughtheeyes.org/" title="Through the Eyes of the Child Initiative">Through the Eyes of the Child Initiative</a>
+            
+<!-- InstanceEndEditable -->
+            <span id="wdn_institution_title"><!-- InstanceBeginEditable name="sitebranding_affiliate" --><a href="http://www.unl.edu" title="University of Nebraska&ndash;Lincoln">An affiliate of the University of Nebraska&ndash;Lincoln</a>
+<!-- InstanceEndEditable -->
+</span>            
+    		<span id="wdn_site_title">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+Throught the Eyes of a Child Initiative<span>A Nebraska Supreme Court Initiative</span>
+<!-- InstanceEndEditable -->
+</span>
+    		<!--#include virtual="/wdn/templates_3.1/includes/idm.html" -->
+            <!--#include virtual="/wdn/templates_3.1/includes/wdnTools.html" -->
+        </header>
+        <div id="wdn_navigation_bar">
+            <nav id="breadcrumbs">
+                <!-- WDN: see glossary item 'breadcrumbs' -->
+                <h3 class="wdn_list_descriptor hidden">Breadcrumbs</h3>
+                
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+                <ul>
+                    <li><a href="http://www.throughtheeyes.org/" title="Through the Eyes of the Child Initiative">Home</a></li>
+                </ul>
+                
+<!-- InstanceEndEditable -->
+            </nav>
+            <div id="wdn_navigation_wrapper">
+                <nav id="navigation" role="navigation">
+                    <h3 class="wdn_list_descriptor hidden">Navigation</h3>
+                    
+<!-- InstanceBeginEditable name="navlinks" -->
+                    <!--#include virtual="../sharedcode/navigation.html" -->
+                    
+<!-- InstanceEndEditable -->
+                </nav>
+            </div>
+        </div>
+        <div id="wdn_content_wrapper">
+            <div id="pagetitle">
+                
+<!-- InstanceBeginEditable name="pagetitle" -->
+                <h1>This is your page title. It's now an &lt;h1&gt;, baby!</h1>
+                
+<!-- InstanceEndEditable -->
+            </div>
+            <div id="maincontent" role="main">
+                <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+                
+<!-- InstanceBeginEditable name="maincontentarea" -->
+                <h2>This is a blank page</h2>
+                <p>Impress your audience with awesome content!</p> 
+                
+<!-- InstanceEndEditable -->
+                <div class="clear"></div>
+                <!--#include virtual="/wdn/templates_3.1/includes/noscript.html" -->
+                <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+            </div>
+        </div>
+        <footer id="footer">
+            <div id="footer_floater"></div>
+            <div class="footer_col" id="wdn_footer_feedback">
+                <!--#include virtual="/wdn/templates_3.1/includes/feedback.html" -->
+            </div>
+            <div class="footer_col" id="wdn_footer_related">
+                
+<!-- InstanceBeginEditable name="leftcollinks" -->
+                <!--#include virtual="../sharedcode/relatedLinks.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col" id="wdn_footer_contact">
+                
+<!-- InstanceBeginEditable name="contactinfo" -->
+                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col" id="wdn_footer_share">
+                <!--#include virtual="/wdn/templates_3.1/includes/socialmediashare.html" -->
+            </div>
+            
+<!-- InstanceBeginEditable name="optionalfooter" -->
+            
+<!-- InstanceEndEditable -->
+            <div id="wdn_copyright">
+                <div>
+                    
+<!-- InstanceBeginEditable name="footercontent" -->
+                    <!--#include virtual="../sharedcode/footer.html" -->
+                    
+<!-- InstanceEndEditable -->
+                    <!--#include virtual="/wdn/templates_3.1/includes/wdn.html" -->
+                </div>
+                <!--#include virtual="/wdn/templates_3.1/includes/logos.html" -->
+            </div>
+        </footer>
+    </div>
+</body>
+</html>
diff --git a/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Unlaffiliate_local.tpl b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Unlaffiliate_local.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..865cee1f2020efac54b8aa65417fed32337f24da
--- /dev/null
+++ b/vendor/pyrus/data/pear.unl.edu/UNL_Templates/tpl_cache/Version3x1/Unlaffiliate_local.tpl
@@ -0,0 +1,141 @@
+<!DOCTYPE html>
+<!--[if IEMobile 7 ]><html class="ie iem7"><!-- InstanceBegin template="/Templates/unlaffiliate_local.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate_local.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if IE 7 ]><html class="ie ie7" lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate_local.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if IE 8 ]><html class="ie ie8" lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate_local.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if (gte IE 9)|(gt IEMobile 7) ]><html class="ie" lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate_local.dwt" codeOutsideHTMLIsLocked="false" --><![endif]-->
+<!--[if !(IEMobile) | !(IE)]><!--><html lang="en"><!-- InstanceBegin template="/Templates/unlaffiliate_local.dwt" codeOutsideHTMLIsLocked="false" --><!--<![endif]-->
+<head>
+<!--#include virtual="/wdn/templates_3.1/includes/metanfavico.html" -->
+<!--
+    Membership and regular participation in the UNL Web Developer Network
+    is required to use the UNL templates. Visit the WDN site at 
+    http://wdn.unl.edu/. Click the WDN Registry link to log in and
+    register your unl.edu site.
+    All UNL template code is the property of the UNL Web Developer Network.
+    The code seen in a source code view is not, and may not be used as, a 
+    template. You may not use this code, a reverse-engineered version of 
+    this code, or its associated visual presentation in whole or in part to
+    create a derivative work.
+    This message may not be removed from any pages based on the UNL site template.
+    
+    $Id: unlaffiliate_local.dwt | d3b0e517ecafe3e1f81c45ddafa7a316adcc45dd | Fri Mar 9 11:41:56 2012 -0600 | Kevin Abel  $
+-->
+<!--#include virtual="/wdn/templates_3.1/includes/scriptsandstyles_local.html" -->
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>Use a descriptive page title | Optional Site Title (use for context) | UNL Affiliate</title>
+<!-- InstanceEndEditable -->
+
+<!-- InstanceBeginEditable name="head" -->
+<!-- Place optional header elements here -->
+<link rel="stylesheet" type="text/css" media="screen" href="../sharedcode/affiliate.css" />
+<link href="../sharedcode/affiliate_imgs/favicon.ico" rel="shortcut icon" />
+<!-- InstanceEndEditable -->
+<!-- TemplateParam name="class" type="text" value="fixed" -->
+</head>
+<body class="@@(_document['class'])@@" data-version="3.1">
+    <nav class="skipnav">
+        <a class="skipnav" href="#maincontent">Skip Navigation</a>
+    </nav>
+    <div id="wdn_wrapper">
+        <header id="header" role="banner">
+            <!-- InstanceBeginEditable name="sitebranding_logo" -->
+            <a id="logo" href="http://www.throughtheeyes.org/" title="Through the Eyes of the Child Initiative">Through the Eyes of the Child Initiative</a>
+            
+<!-- InstanceEndEditable -->
+            <span id="wdn_institution_title"><!-- InstanceBeginEditable name="sitebranding_affiliate" --><a href="http://www.unl.edu" title="University of Nebraska&ndash;Lincoln">An affiliate of the University of Nebraska&ndash;Lincoln</a>
+<!-- InstanceEndEditable -->
+</span>            
+    		<span id="wdn_site_title">
+<!-- InstanceBeginEditable name="titlegraphic" -->
+Throught the Eyes of a Child Initiative<span>A Nebraska Supreme Court Initiative</span>
+<!-- InstanceEndEditable -->
+</span>
+    		<!--#include virtual="/wdn/templates_3.1/includes/idm.html" -->
+            <!--#include virtual="/wdn/templates_3.1/includes/wdnTools.html" -->
+        </header>
+        <div id="wdn_navigation_bar">
+            <nav id="breadcrumbs">
+                <!-- WDN: see glossary item 'breadcrumbs' -->
+                <h3 class="wdn_list_descriptor hidden">Breadcrumbs</h3>
+                
+<!-- InstanceBeginEditable name="breadcrumbs" -->
+                <ul>
+                    <li><a href="http://www.throughtheeyes.org/" title="Through the Eyes of the Child Initiative">Home</a></li>
+                </ul>
+                
+<!-- InstanceEndEditable -->
+            </nav>
+            <div id="wdn_navigation_wrapper">
+                <nav id="navigation" role="navigation">
+                    <h3 class="wdn_list_descriptor hidden">Navigation</h3>
+                    
+<!-- InstanceBeginEditable name="navlinks" -->
+                    <!--#include virtual="../sharedcode/navigation.html" -->
+                    
+<!-- InstanceEndEditable -->
+                </nav>
+            </div>
+        </div>
+        <div id="wdn_content_wrapper">
+            <div id="pagetitle">
+                
+<!-- InstanceBeginEditable name="pagetitle" -->
+                <h1>This is your page title. It's now an &lt;h1&gt;, baby!</h1>
+                
+<!-- InstanceEndEditable -->
+            </div>
+            <div id="maincontent" role="main">
+                <!--THIS IS THE MAIN CONTENT AREA; WDN: see glossary item 'main content area' -->
+                
+<!-- InstanceBeginEditable name="maincontentarea" -->
+                <h2>This is a blank page</h2>
+                <p>Impress your audience with awesome content!</p> 
+                
+<!-- InstanceEndEditable -->
+                <div class="clear"></div>
+                <!--#include virtual="/wdn/templates_3.1/includes/noscript.html" -->
+                <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->
+            </div>
+        </div>
+        <footer id="footer">
+            <div id="footer_floater"></div>
+            <div class="footer_col" id="wdn_footer_feedback">
+                <!--#include virtual="/wdn/templates_3.1/includes/feedback.html" -->
+            </div>
+            <div class="footer_col" id="wdn_footer_related">
+                
+<!-- InstanceBeginEditable name="leftcollinks" -->
+                <!--#include virtual="../sharedcode/relatedLinks.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col" id="wdn_footer_contact">
+                
+<!-- InstanceBeginEditable name="contactinfo" -->
+                <!--#include virtual="../sharedcode/footerContactInfo.html" -->
+                
+<!-- InstanceEndEditable -->
+</div>
+            <div class="footer_col" id="wdn_footer_share">
+                <!--#include virtual="/wdn/templates_3.1/includes/socialmediashare.html" -->
+            </div>
+            
+<!-- InstanceBeginEditable name="optionalfooter" -->
+            
+<!-- InstanceEndEditable -->
+            <div id="wdn_copyright">
+                <div>
+                    
+<!-- InstanceBeginEditable name="footercontent" -->
+                    <!--#include virtual="../sharedcode/footer.html" -->
+                    
+<!-- InstanceEndEditable -->
+                    <!--#include virtual="/wdn/templates_3.1/includes/wdn.html" -->
+                </div>
+                <!--#include virtual="/wdn/templates_3.1/includes/logos.html" -->
+            </div>
+        </footer>
+    </div>
+</body>
+</html>
diff --git a/vendor/pyrus/docs/UNL_DWT/docs/examples/Template_style1.php b/vendor/pyrus/docs/UNL_DWT/docs/examples/Template_style1.php
new file mode 100644
index 0000000000000000000000000000000000000000..69514f230bf152a46ef0f78f1341cd90657de011
--- /dev/null
+++ b/vendor/pyrus/docs/UNL_DWT/docs/examples/Template_style1.php
@@ -0,0 +1,25 @@
+<?php
+/**
+ * Template Definition for template_style1.dwt
+ */
+require_once 'UNL/DWT.php';
+
+class UNL_DWT_Template_style1 extends UNL_DWT 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    var $__template = 'Template_style1.tpl';                                // template name
+    var $doctitle = "<title>Sample Template Style 1</title>";                       // string()  
+    var $head = "";                           // string()  
+    var $header = "Header";                         // string()  
+    var $leftnav = "<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut. </p>";                        // string()  
+    var $content = "<h2>Subheading</h2> <p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. </p> <p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>";                        // string()  
+    var $footer = "Footer";                         // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_DWT_Template_style1',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/docs/UNL_DWT/docs/examples/Template_style1.tpl b/vendor/pyrus/docs/UNL_DWT/docs/examples/Template_style1.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..bd63d0408c2fdc1289ca180fdf4a09a0b64c069b
--- /dev/null
+++ b/vendor/pyrus/docs/UNL_DWT/docs/examples/Template_style1.tpl
@@ -0,0 +1,86 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/template_style1.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>Sample Template Style 1</title>
+<!-- InstanceEndEditable -->
+<style type="text/css">
+#container
+{
+width: 90%;
+margin: 10px auto;
+background-color: #fff;
+color: #333;
+border: 1px solid gray;
+line-height: 130%;
+}
+#top
+{
+padding: .5em;
+background-color: #ddd;
+border-bottom: 1px solid gray;
+}
+#top h1
+{
+padding: 0;
+margin: 0;
+}
+#leftnav
+{
+float: left;
+width: 160px;
+margin: 0;
+padding: 1em;
+}
+#content
+{
+margin-left: 200px;
+border-left: 1px solid gray;
+padding: 1em;
+max-width: 36em;
+}
+#footer
+{
+clear: both;
+margin: 0;
+padding: .5em;
+color: #333;
+background-color: #ddd;
+border-top: 1px solid gray;
+}
+#leftnav p { margin: 0 0 1em 0; }
+#content h2 { margin: 0 0 .5em 0; }
+</style>
+<!-- InstanceBeginEditable name="head" -->
+<!-- InstanceEndEditable -->
+</head>
+<body>
+<div id="container">
+<div id="top">
+<h1>
+<!-- InstanceBeginEditable name="header" -->
+Header
+<!-- InstanceEndEditable -->
+</h1>
+</div>
+<div id="leftnav">
+<!-- InstanceBeginEditable name="leftnav" -->
+    <p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut. </p>
+<!-- InstanceEndEditable -->
+</div>
+<div id="content">
+<!-- InstanceBeginEditable name="content" -->
+    <h2>Subheading</h2>
+    <p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. </p>
+    <p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>
+<!-- InstanceEndEditable -->
+</div>
+<div id="footer">
+<!-- InstanceBeginEditable name="footer" -->
+Footer
+<!-- InstanceEndEditable -->
+</div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/docs/UNL_DWT/docs/examples/example.ini b/vendor/pyrus/docs/UNL_DWT/docs/examples/example.ini
new file mode 100644
index 0000000000000000000000000000000000000000..081e37d2c3fce02c2428d59d3ddd4b18b4dbdcc2
--- /dev/null
+++ b/vendor/pyrus/docs/UNL_DWT/docs/examples/example.ini
@@ -0,0 +1,5 @@
+[UNL_DWT]
+dwt_location    = /Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/docs/UNL_DWT/docs/examples/
+class_location  = /Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/docs/UNL_DWT/docs/examples/
+tpl_location	= /Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/docs/UNL_DWT/docs/examples/
+class_prefix    = UNL_DWT_
\ No newline at end of file
diff --git a/vendor/pyrus/docs/UNL_DWT/docs/examples/example_style1.php b/vendor/pyrus/docs/UNL_DWT/docs/examples/example_style1.php
new file mode 100644
index 0000000000000000000000000000000000000000..2eb08503319d72153e304e20033f10e708c47d4c
--- /dev/null
+++ b/vendor/pyrus/docs/UNL_DWT/docs/examples/example_style1.php
@@ -0,0 +1,28 @@
+<?php
+/**
+ * This example uses the DWT object generated by: '/usr/bin/php /Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/php/UNL/DWT/createTemplates.php /Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/docs/UNL_DWT/docs/examples/example.ini'
+ * 
+ */
+ini_set('display_errors',true);
+error_reporting(E_ALL|E_STRICT);
+
+require_once 'UNL/DWT.php';
+if ('/Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/data' == '@'.'DATA_DIR@') {
+    $configfile = 'example.test.ini';
+} else {
+    $configfile = '/Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/docs/UNL_DWT/docs/examples/example.ini';
+}
+$config = parse_ini_file($configfile, true);
+foreach($config as $class=>$values) {
+   UNL_DWT::$options = $values;
+}
+$page = UNL_DWT::factory('Template_style1');
+$page->header  = "Example Using Template Style 1";
+$page->leftnav = "<ul><li><a href='http://pear.unl.edu/'>UNL PEAR Channel</a></li></ul>";
+$page->content = "<p>This example demonstrates the usefulness of the DWT object generator for Dreamweaver Templates.</p>";
+$page->content .= "<p>Included with the DWT package is a Dreamweaver template with 4 editable regions [template_style1.dwt]. This page is rendered using the DWT class created from that template.</p>";
+$page->content .= "<p>To create classes for your Templates, create a .ini file with the location of your Dreamweaver templates (dwt's) and then run the createTemplates.php script to generate objects for each of your template files.</p>";
+$page->content .= "<p>Here is the ini file used to create the Template_style1:<pre><code>".file_get_contents($configfile)."</code></pre></p>";
+$page->content .= "<p>And the command used to create the template classes:<pre><code>/usr/bin/php /Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/php/UNL/DWT/createTemplates.php /Volumes/Storage/Network_Users/tsteiner/Sites/email-workflow/vendor/pyrus/docs/UNL_DWT/docs/examples/example.ini</code></pre></p>";
+$page->footer  = "<a href='mailto:brett.bieber@gmail.com'>Brett Bieber</a>";
+echo $page->toHtml();
\ No newline at end of file
diff --git a/vendor/pyrus/docs/UNL_DWT/docs/examples/scanner_example.php b/vendor/pyrus/docs/UNL_DWT/docs/examples/scanner_example.php
new file mode 100644
index 0000000000000000000000000000000000000000..c0ba19014a1b6cbe7ff14b1b150e2fa916c00504
--- /dev/null
+++ b/vendor/pyrus/docs/UNL_DWT/docs/examples/scanner_example.php
@@ -0,0 +1,11 @@
+<?php
+require_once 'UNL/DWT/Scanner.php';
+
+$file = file_get_contents(dirname(__FILE__).'/'.'template_style1.dwt');
+
+$scanned = new UNL_DWT_Scanner($file);
+
+echo $scanned->leftnav;
+echo $scanned->content;
+
+?>
\ No newline at end of file
diff --git a/vendor/pyrus/docs/UNL_DWT/docs/examples/template_style1.dwt b/vendor/pyrus/docs/UNL_DWT/docs/examples/template_style1.dwt
new file mode 100644
index 0000000000000000000000000000000000000000..f22ce6abf12031903536a83ed335547cd9044b28
--- /dev/null
+++ b/vendor/pyrus/docs/UNL_DWT/docs/examples/template_style1.dwt
@@ -0,0 +1,80 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<!-- TemplateBeginEditable name="doctitle" -->
+<title>Sample Template Style 1</title>
+<!-- TemplateEndEditable -->
+<style type="text/css">
+#container
+{
+width: 90%;
+margin: 10px auto;
+background-color: #fff;
+color: #333;
+border: 1px solid gray;
+line-height: 130%;
+}
+
+#top
+{
+padding: .5em;
+background-color: #ddd;
+border-bottom: 1px solid gray;
+}
+
+#top h1
+{
+padding: 0;
+margin: 0;
+}
+
+#leftnav
+{
+float: left;
+width: 160px;
+margin: 0;
+padding: 1em;
+}
+
+#content
+{
+margin-left: 200px;
+border-left: 1px solid gray;
+padding: 1em;
+max-width: 36em;
+}
+
+#footer
+{
+clear: both;
+margin: 0;
+padding: .5em;
+color: #333;
+background-color: #ddd;
+border-top: 1px solid gray;
+}
+
+#leftnav p { margin: 0 0 1em 0; }
+#content h2 { margin: 0 0 .5em 0; }
+</style>
+<!-- TemplateBeginEditable name="head" --><!-- TemplateEndEditable -->
+</head>
+
+<body>
+<div id="container">
+<div id="top">
+<h1><!-- TemplateBeginEditable name="header" -->Header<!-- TemplateEndEditable --></h1>
+</div>
+<div id="leftnav"><!-- TemplateBeginEditable name="leftnav" -->
+    <p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut. </p>
+<!-- TemplateEndEditable --></div>
+<div id="content"><!-- TemplateBeginEditable name="content" -->
+    <h2>Subheading</h2>
+    <p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. </p>
+    <p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>
+<!-- TemplateEndEditable --></div>
+<div id="footer"><!-- TemplateBeginEditable name="footer" -->Footer<!-- TemplateEndEditable --></div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/Template_style1.php b/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/Template_style1.php
new file mode 100644
index 0000000000000000000000000000000000000000..69514f230bf152a46ef0f78f1341cd90657de011
--- /dev/null
+++ b/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/Template_style1.php
@@ -0,0 +1,25 @@
+<?php
+/**
+ * Template Definition for template_style1.dwt
+ */
+require_once 'UNL/DWT.php';
+
+class UNL_DWT_Template_style1 extends UNL_DWT 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    var $__template = 'Template_style1.tpl';                                // template name
+    var $doctitle = "<title>Sample Template Style 1</title>";                       // string()  
+    var $head = "";                           // string()  
+    var $header = "Header";                         // string()  
+    var $leftnav = "<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut. </p>";                        // string()  
+    var $content = "<h2>Subheading</h2> <p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. </p> <p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>";                        // string()  
+    var $footer = "Footer";                         // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_DWT_Template_style1',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/Template_style1.tpl b/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/Template_style1.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..bd63d0408c2fdc1289ca180fdf4a09a0b64c069b
--- /dev/null
+++ b/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/Template_style1.tpl
@@ -0,0 +1,86 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/template_style1.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>Sample Template Style 1</title>
+<!-- InstanceEndEditable -->
+<style type="text/css">
+#container
+{
+width: 90%;
+margin: 10px auto;
+background-color: #fff;
+color: #333;
+border: 1px solid gray;
+line-height: 130%;
+}
+#top
+{
+padding: .5em;
+background-color: #ddd;
+border-bottom: 1px solid gray;
+}
+#top h1
+{
+padding: 0;
+margin: 0;
+}
+#leftnav
+{
+float: left;
+width: 160px;
+margin: 0;
+padding: 1em;
+}
+#content
+{
+margin-left: 200px;
+border-left: 1px solid gray;
+padding: 1em;
+max-width: 36em;
+}
+#footer
+{
+clear: both;
+margin: 0;
+padding: .5em;
+color: #333;
+background-color: #ddd;
+border-top: 1px solid gray;
+}
+#leftnav p { margin: 0 0 1em 0; }
+#content h2 { margin: 0 0 .5em 0; }
+</style>
+<!-- InstanceBeginEditable name="head" -->
+<!-- InstanceEndEditable -->
+</head>
+<body>
+<div id="container">
+<div id="top">
+<h1>
+<!-- InstanceBeginEditable name="header" -->
+Header
+<!-- InstanceEndEditable -->
+</h1>
+</div>
+<div id="leftnav">
+<!-- InstanceBeginEditable name="leftnav" -->
+    <p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut. </p>
+<!-- InstanceEndEditable -->
+</div>
+<div id="content">
+<!-- InstanceBeginEditable name="content" -->
+    <h2>Subheading</h2>
+    <p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. </p>
+    <p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>
+<!-- InstanceEndEditable -->
+</div>
+<div id="footer">
+<!-- InstanceBeginEditable name="footer" -->
+Footer
+<!-- InstanceEndEditable -->
+</div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/example.ini b/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/example.ini
new file mode 100644
index 0000000000000000000000000000000000000000..edf2b239e2d2d653bf45049ecc277572de2266f5
--- /dev/null
+++ b/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/example.ini
@@ -0,0 +1,5 @@
+[UNL_DWT]
+dwt_location    = @DOC_DIR@/UNL_DWT/docs/examples/
+class_location  = @DOC_DIR@/UNL_DWT/docs/examples/
+tpl_location	= @DOC_DIR@/UNL_DWT/docs/examples/
+class_prefix    = UNL_DWT_
\ No newline at end of file
diff --git a/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/example.test.ini b/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/example.test.ini
new file mode 100644
index 0000000000000000000000000000000000000000..6f24a0b77b8e13197c9649c42aa2139a647de3fc
--- /dev/null
+++ b/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/example.test.ini
@@ -0,0 +1,5 @@
+[UNL_DWT]
+dwt_location    = ./
+class_location  = ./
+tpl_location	= ./
+class_prefix    = UNL_DWT_
\ No newline at end of file
diff --git a/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/example_style1.php b/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/example_style1.php
new file mode 100644
index 0000000000000000000000000000000000000000..632c8afa2e6f26b57c5a32c9e5c5c228860e2972
--- /dev/null
+++ b/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/example_style1.php
@@ -0,0 +1,30 @@
+<?php
+/**
+ * This example uses the DWT object generated by: '@PHP_BIN@ @PHP_DIR@/UNL/DWT/createTemplates.php @DOC_DIR@/UNL_DWT/docs/examples/example.ini'
+ * 
+ */
+ini_set('display_errors',true);
+error_reporting(E_ALL|E_STRICT);
+
+set_include_path(dirname(__DIR__).'/../src');
+
+require_once 'UNL/DWT.php';
+if ('@DATA_DIR@' == '@'.'DATA_DIR@') {
+    $configfile = 'example.test.ini';
+} else {
+    $configfile = '@DOC_DIR@/UNL_DWT/docs/examples/example.ini';
+}
+$config = parse_ini_file($configfile, true);
+foreach($config as $class=>$values) {
+   UNL_DWT::$options = $values;
+}
+$page = UNL_DWT::factory('Template_style1');
+$page->header  = "Example Using Template Style 1";
+$page->leftnav = "<ul><li><a href='http://pear.unl.edu/'>UNL PEAR Channel</a></li></ul>";
+$page->content = "<p>This example demonstrates the usefulness of the DWT object generator for Dreamweaver Templates.</p>";
+$page->content .= "<p>Included with the DWT package is a Dreamweaver template with 4 editable regions [template_style1.dwt]. This page is rendered using the DWT class created from that template.</p>";
+$page->content .= "<p>To create classes for your Templates, create a .ini file with the location of your Dreamweaver templates (dwt's) and then run the createTemplates.php script to generate objects for each of your template files.</p>";
+$page->content .= "<p>Here is the ini file used to create the Template_style1:<pre><code>".file_get_contents($configfile)."</code></pre></p>";
+$page->content .= "<p>And the command used to create the template classes:<pre><code>@PHP_BIN@ @PHP_DIR@/UNL/DWT/createTemplates.php @DOC_DIR@/UNL_DWT/docs/examples/example.ini</code></pre></p>";
+$page->footer  = "<a href='mailto:brett.bieber@gmail.com'>Brett Bieber</a>";
+echo $page->toHtml();
\ No newline at end of file
diff --git a/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/scanner_example.php b/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/scanner_example.php
new file mode 100644
index 0000000000000000000000000000000000000000..52d9629a66e5a7c0988f73631b5920833e8e833f
--- /dev/null
+++ b/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/scanner_example.php
@@ -0,0 +1,14 @@
+<?php
+
+set_include_path(dirname(__DIR__).'/../src');
+
+require_once 'UNL/DWT/Scanner.php';
+
+$file = file_get_contents(dirname(__FILE__).'/'.'template_style1.dwt');
+
+$scanned = new UNL_DWT_Scanner($file);
+
+echo $scanned->leftnav;
+echo $scanned->content;
+
+?>
\ No newline at end of file
diff --git a/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/template_style1.dwt b/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/template_style1.dwt
new file mode 100644
index 0000000000000000000000000000000000000000..f22ce6abf12031903536a83ed335547cd9044b28
--- /dev/null
+++ b/vendor/pyrus/docs/pear.unl.edu/UNL_DWT/examples/template_style1.dwt
@@ -0,0 +1,80 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<!-- TemplateBeginEditable name="doctitle" -->
+<title>Sample Template Style 1</title>
+<!-- TemplateEndEditable -->
+<style type="text/css">
+#container
+{
+width: 90%;
+margin: 10px auto;
+background-color: #fff;
+color: #333;
+border: 1px solid gray;
+line-height: 130%;
+}
+
+#top
+{
+padding: .5em;
+background-color: #ddd;
+border-bottom: 1px solid gray;
+}
+
+#top h1
+{
+padding: 0;
+margin: 0;
+}
+
+#leftnav
+{
+float: left;
+width: 160px;
+margin: 0;
+padding: 1em;
+}
+
+#content
+{
+margin-left: 200px;
+border-left: 1px solid gray;
+padding: 1em;
+max-width: 36em;
+}
+
+#footer
+{
+clear: both;
+margin: 0;
+padding: .5em;
+color: #333;
+background-color: #ddd;
+border-top: 1px solid gray;
+}
+
+#leftnav p { margin: 0 0 1em 0; }
+#content h2 { margin: 0 0 .5em 0; }
+</style>
+<!-- TemplateBeginEditable name="head" --><!-- TemplateEndEditable -->
+</head>
+
+<body>
+<div id="container">
+<div id="top">
+<h1><!-- TemplateBeginEditable name="header" -->Header<!-- TemplateEndEditable --></h1>
+</div>
+<div id="leftnav"><!-- TemplateBeginEditable name="leftnav" -->
+    <p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut. </p>
+<!-- TemplateEndEditable --></div>
+<div id="content"><!-- TemplateBeginEditable name="content" -->
+    <h2>Subheading</h2>
+    <p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. </p>
+    <p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>
+<!-- TemplateEndEditable --></div>
+<div id="footer"><!-- TemplateBeginEditable name="footer" -->Footer<!-- TemplateEndEditable --></div>
+</div>
+</body>
+</html>
diff --git a/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/convert.php b/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/convert.php
new file mode 100644
index 0000000000000000000000000000000000000000..f16cee1a920f7454552afff3648e2937605588ba
--- /dev/null
+++ b/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/convert.php
@@ -0,0 +1,37 @@
+#!/usr/bin/env php
+<?php
+if (!isset($_SERVER['argv'],$_SERVER['argv'][1])
+    || $_SERVER['argv'][1] == '--help' || $_SERVER['argc'] != 2) {
+    echo "This program requires 1 argument.\n";
+    echo "convert.php oldfile.shtml newfile.shtml\n\n";
+    exit();
+}
+
+require_once 'UNL/Autoload.php';
+
+if (!file_exists($_SERVER['argv'][1])) {
+    echo "Filename does not exist!\n";
+    exit();
+}
+
+UNL_Templates::$options['version'] = 3;
+UNL_Templates::$options['templatedependentspath'] = '/Library/WebServer/Documents';
+
+
+$p = new UNL_Templates_Scanner(file_get_contents($_SERVER['argv'][1]));
+
+
+
+$new = UNL_Templates::factory('Fixed');
+UNL_Templates::$options['templatedependentspath'] = '/Library/WebServer/Documents';
+
+
+foreach ($p->getRegions() as $region) {
+    if (count($region)) {
+        $new->{$region->name} = $region->value;
+    }
+}
+UNL_Templates::$options['templatedependentspath'] = 'paththatdoesnotexist!';
+
+echo $new;
+?>
\ No newline at end of file
diff --git a/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/customization/CustomClass.php b/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/customization/CustomClass.php
new file mode 100644
index 0000000000000000000000000000000000000000..6f19d2e430592fbc844acd86fc785b001d7e2a55
--- /dev/null
+++ b/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/customization/CustomClass.php
@@ -0,0 +1,105 @@
+<?php
+
+set_include_path(dirname(dirname(dirname(__DIR__))).'/src'.PATH_SEPARATOR.dirname(dirname(dirname(__DIR__))).'/vendor/php');
+
+
+require_once 'UNL/Templates.php';
+
+class CustomClass
+{
+    public $template;
+    
+    function __construct()
+    {
+        $this->template = UNL_Templates::factory('Fixed');
+        $this->autoGenerate('Department of Mathematics', 'Math');
+    }
+    
+    function autoGenerateBreadcrumbs($unitShortName, array $organization = array('name' => 'UNL', 'url' => 'http://www.unl.edu/'), $delimiter = ' | ')
+    {
+        $fileName             = array_shift(explode('.', array_pop(explode(DIRECTORY_SEPARATOR, htmlentities($_SERVER['SCRIPT_NAME'])))));
+        $generatedBreadcrumbs = '';
+        $generatedDocTitle    = '';
+        
+        $isIndexPage = preg_match('/index/', $fileName);
+        
+        $searchFor = array($_SERVER['DOCUMENT_ROOT'], '_');
+        $replaceWith = array($unitShortName, ' ');
+        
+        $keys = explode(DIRECTORY_SEPARATOR, str_replace($searchFor, $replaceWith, getcwd()));
+        $values = array();
+        
+        for ($i = count($keys)-1; $i >= 0; $i--) {
+            array_push($values, str_replace($_SERVER['DOCUMENT_ROOT'], '', implode(DIRECTORY_SEPARATOR, explode(DIRECTORY_SEPARATOR, getcwd(), -$i)).DIRECTORY_SEPARATOR));
+        }
+        
+        for ($i = 0; $i < count($keys)  - $isIndexPage ; $i++) {
+            $generatedBreadcrumbs .= '<li><a href="'. $values[$i] .'">' . ucwords($keys[$i]) .' </a></li> '; 
+            $generatedDocTitle    .= ucwords($keys[$i]) . $delimiter;
+        }
+    
+        if ($isIndexPage) {
+            $generatedBreadcrumbs .= '<li>'. ucwords(end($keys)) .'</li></ul>';
+            $generatedDocTitle    .= ucwords(end($keys));
+        } else {
+            $generatedBreadcrumbs .= '<li>'. ucwords($fileName) .'</li></ul>';
+            $generatedDocTitle    .= ucwords($fileName);
+        }
+        
+        $doctitle    = '<title>' . $organization['name'] . $delimiter . $generatedDocTitle . '</title>';
+        $breadcrumbs = '<ul><li class="first"><a href="'.$organization['url'].'">'.$organization['name'].'</a></li> ' . $generatedBreadcrumbs;
+    
+        $this->template->doctitle = $doctitle;
+        $this->template->breadcrumbs = $breadcrumbs;
+    }
+    
+    /**
+     * This function finds an html file with the content of the body file and
+     * inserts it into the template.
+     *
+     * @param string $unitName Name of the department/unit
+     * 
+     * @return void
+     */
+    function autoGenerateBody($unitName)
+    {
+        // The file that has the body is in the same dir with the same base file name.
+        $bodyFile = array_shift(explode('.', array_pop(explode(DIRECTORY_SEPARATOR, htmlentities($_SERVER['SCRIPT_NAME']))))) . '.html';
+    
+        $maincontentarea_array = file($bodyFile);
+        $maincontentarea       = implode(' ', $maincontentarea_array);
+        $subhead               = preg_replace('/<!--\s*(.+)\s*-->/i', '$1', array_shift($maincontentarea_array));
+    
+        $titlegraphic = '<h1>' . $unitName . '</h1><h2>' . $subhead    . '</h2>';
+    
+        $this->template->titlegraphic    = $titlegraphic;
+        $this->template->maincontentarea = $maincontentarea;
+    }
+    
+    /**
+     * Autogenerate the contents of a page.
+     *
+     * @param string $unitName      name of the unit/department
+     * @param string $unitShortName abbreviation for the unit
+     * @param array  $organization  organization heirarchy
+     * @param string $delimiter     what separates files
+     * 
+     * @return void
+     */
+    function autoGenerate($unitName, $unitShortName, array $organization = array('name' => 'UNL', 'url' => 'http://www.unl.edu/'), $delimiter = ' | ')
+    {
+        $this->autoGenerateBreadcrumbs($unitShortName, $organization, $delimiter);
+        $this->autoGenerateBody($unitName);
+    }
+    
+    /**
+     * renders a string representation of the template
+     *
+     * @return unknown
+     */
+    function __toString()
+    {
+        return $this->template->toHtml();
+    }
+}
+?>
\ No newline at end of file
diff --git a/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/customization/customization_example.html b/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/customization/customization_example.html
new file mode 100644
index 0000000000000000000000000000000000000000..0b9cbc15ae93a78f3367828241a62fbd8bef3714
--- /dev/null
+++ b/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/customization/customization_example.html
@@ -0,0 +1 @@
+This is the main content of the body.
\ No newline at end of file
diff --git a/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/customization/customization_example.php b/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/customization/customization_example.php
new file mode 100644
index 0000000000000000000000000000000000000000..4cd36edbcd8d519f56989dd67dd088caff39f0dc
--- /dev/null
+++ b/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/customization/customization_example.php
@@ -0,0 +1,8 @@
+<?php
+require_once 'CustomClass.php';
+
+$page = new CustomClass();
+
+echo $page;
+
+?>
\ No newline at end of file
diff --git a/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/example1.php b/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/example1.php
new file mode 100644
index 0000000000000000000000000000000000000000..94fa01578df1883635adf95f86e4b193973e7387
--- /dev/null
+++ b/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/example1.php
@@ -0,0 +1,28 @@
+<?php
+/**
+ * This example demonstrates the usage of the UNL Templates.
+ *
+ * 
+ * @package UNL_Templates
+ */
+ini_set('display_errors', true);
+error_reporting(E_ALL);
+set_include_path(dirname(dirname(__DIR__)).'/src'.PATH_SEPARATOR.dirname(dirname(__DIR__)).'/vendor/php');
+require_once 'UNL/Templates.php';
+
+// Optionally set the version you'd like to use
+UNL_Templates::$options['version'] = 3.1;
+
+$page = UNL_Templates::factory('Fixed', array('sharedcodepath' => 'sharedcode'));
+$page->addScript('test.js');
+$page->addScriptDeclaration('function sayHello(){alert("Hello!");}');
+$page->addStylesheet('foo.css');
+$page->addStyleDeclaration('.foo {font-weight:bold;}');
+$page->titlegraphic     = 'Hello UNL Templates';
+$page->pagetitle        = '<h1>This is my page title h1.</h1>';
+$page->maincontentarea  = '<p>This is my main content.</p>';
+$page->navlinks         = '<ul><li><a href="#">Hello world!</a></li></ul>';
+$page->leftRandomPromo  = '';
+$page->maincontentarea  .= highlight_file(__FILE__, true);
+$page->loadSharedcodeFiles();
+echo $page;
diff --git a/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/scanner.php b/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/scanner.php
new file mode 100644
index 0000000000000000000000000000000000000000..ce6ac1e7cc07db1998e6aa8d4a1093ff5c8e24d1
--- /dev/null
+++ b/vendor/pyrus/docs/pear.unl.edu/UNL_Templates/examples/scanner.php
@@ -0,0 +1,14 @@
+<?php
+
+set_include_path(dirname(dirname(__DIR__)).'/src'.PATH_SEPARATOR.dirname(dirname(__DIR__)).'/vendor/php');
+
+highlight_file(__FILE__);
+require_once 'UNL/Templates/Scanner.php';
+
+$html = file_get_contents('http://www.unl.edu/ucomm/unltoday/');
+
+// Scan this rendered UNL template-based page for editable regions
+$scanner = new UNL_Templates_Scanner($html);
+
+// All editable regions are now member variables of the scanner object.
+echo $scanner->maincontentarea;
diff --git a/vendor/pyrus/downloads/UNL_DWT-0.7.1.tgz b/vendor/pyrus/downloads/UNL_DWT-0.7.1.tgz
new file mode 100644
index 0000000000000000000000000000000000000000..573413bc464c0418d8f78a7cde905362bb555050
Binary files /dev/null and b/vendor/pyrus/downloads/UNL_DWT-0.7.1.tgz differ
diff --git a/vendor/pyrus/downloads/UNL_DWT-0.7.2.tgz b/vendor/pyrus/downloads/UNL_DWT-0.7.2.tgz
new file mode 100644
index 0000000000000000000000000000000000000000..c2375c729a9fe36701c90c7ea351d44af862ddf4
Binary files /dev/null and b/vendor/pyrus/downloads/UNL_DWT-0.7.2.tgz differ
diff --git a/vendor/pyrus/downloads/UNL_Templates-1.2.0.tgz b/vendor/pyrus/downloads/UNL_Templates-1.2.0.tgz
new file mode 100644
index 0000000000000000000000000000000000000000..f8765662990f550d9727cc4fc810072caa48e352
Binary files /dev/null and b/vendor/pyrus/downloads/UNL_Templates-1.2.0.tgz differ
diff --git a/vendor/pyrus/downloads/UNL_Templates-1.3.0RC2.tgz b/vendor/pyrus/downloads/UNL_Templates-1.3.0RC2.tgz
new file mode 100644
index 0000000000000000000000000000000000000000..0f67623b0fce5fd123f380fdb2a405a548628f88
Binary files /dev/null and b/vendor/pyrus/downloads/UNL_Templates-1.3.0RC2.tgz differ
diff --git a/vendor/pyrus/php/UNL/DWT.php b/vendor/pyrus/php/UNL/DWT.php
new file mode 100644
index 0000000000000000000000000000000000000000..43aac0a311532abae9bb8f3e81cd18d4ea71e70a
--- /dev/null
+++ b/vendor/pyrus/php/UNL/DWT.php
@@ -0,0 +1,274 @@
+<?php
+/**
+ * This package is intended to create PHP Class files (Objects) from 
+ * Dreamweaver template (.dwt) files. It allows designers to create a
+ * standalone Dreamweaver template for the website design, and developers
+ * to use that design in php pages without interference.
+ *
+ * Similar to the way DB_DataObject works, the DWT package uses a 
+ * Generator to scan a .dwt file for editable regions and creates an 
+ * appropriately named class for that .dwt file with member variables for
+ * each region.
+ *
+ * Once the objects have been generated, you can render a html page from 
+ * the template.
+ * 
+ * $page = new UNL_DWT::factory('Template_style1');
+ * $page->pagetitle = "Contact Information";
+ * $page->maincontent = "Contact us by telephone at 111-222-3333.";
+ * echo $page->toHtml();
+ *
+ * Parts of this package are modeled on (borrowed from) the PEAR package 
+ * DB_DataObject.
+ * 
+ * PHP version 5
+ * 
+ * @category  Templates
+ * @package   UNL_DWT
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @created   01/18/2006
+ * @copyright 2008 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/package/UNL_DWT
+ */
+
+/**
+ * Base class which understands Dreamweaver Templates.
+ * 
+ * @category  Templates
+ * @package   UNL_DWT
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @created   01/18/2006
+ * @copyright 2008 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/package/UNL_DWT
+ */
+class UNL_DWT
+{
+    
+    public $__template;
+    
+    /**
+     * Run-time configuration options
+     *
+     * @var array
+     * @see UNL_DWT::setOption()
+     */
+    static public $options = array(
+        'debug' => 0,
+    );
+    
+    /**
+     * Constructor
+     */
+    function __construct()
+    {
+        
+    }
+    
+    /**
+     * Returns the given DWT with all regions replaced with their assigned
+     * content.
+     * 
+     * @return string
+     */
+    public function toHtml()
+    {
+        $options = &UNL_DWT::$options;
+        if (!isset($this->__template)) {
+            return '';
+        }
+        /*
+        More Options for this method:
+            Extend this to automatically generate the .tpl files and cache.
+            Check for a cached copy of the template file.
+            Connect to a template server and get the latest template copy.
+            
+            Ex: $p = file_get_contents("http://pear.unl.edu/UNL/Templates/server.php?template=".$this->__template);
+        */
+        $p = file_get_contents($options['tpl_location'].$this->__template);
+        
+        $regions = get_object_vars($this);
+        return $this->replaceRegions($p, $regions);
+    }
+    
+    /**
+    * Replaces region tags within a template file wth their contents.
+    * 
+    * @param string $p       Page with DW Region tags.
+    * @param array  $regions Associative array with content to replace.
+    * 
+    * @return string page with replaced regions
+    */
+    function replaceRegions($p, $regions)
+    {
+        UNL_DWT::debug('Replacing regions.', 'replaceRegions', 5);
+        foreach ($regions as $region=>$value) {
+            /* Replace the region with the replacement text */
+            if (strpos($p, "<!--"." TemplateBeginEditable name=\"{$region}\" -->")) {
+                $p = str_replace(UNL_DWT_between("<!--"." TemplateBeginEditable name=\"{$region}\" -->",
+                                    "<!--"." TemplateEndEditable -->", $p),
+                    $value, $p);
+                UNL_DWT::debug("$region is replaced with $value.",
+                               'replaceRegions', 5);
+            } elseif (strpos($p, "<!--"." InstanceBeginEditable name=\"{$region}\" -->")) {
+                $p = str_replace("<!--"." InstanceBeginEditable name=\"{$region}\" -->".
+                                    UNL_DWT_between("<!--"." InstanceBeginEditable name=\"{$region}\" -->", "<!--"." InstanceEndEditable -->", $p).
+                                    "<!--"." InstanceEndEditable -->", "<!--"." InstanceBeginEditable name=\"{$region}\" -->".$value."<!--"." InstanceEndEditable -->", $p);
+                UNL_DWT::debug("$region is replaced with $value.", 'replaceRegions', 5);
+            } else {
+                UNL_DWT::debug("Could not find region $region!", 'replaceRegions', 3);
+            }    
+        }
+        return $p;
+    }
+    
+    
+    /**
+    * Create a new UNL_DWT object for the specified layout type
+    *
+    * @param string $type     the template type (eg "fixed")
+    * @param array  $coptions an associative array of option names and values
+    *
+    * @return object  a new UNL_DWT.  A UNL_DWT_Error object on failure.
+    *
+    * @see UNL_DWT::setOption()
+    */
+    static function &factory($type, $coptions = false)
+    {
+        $options =& UNL_DWT::$options;
+        
+        include_once $options['class_location']."{$type}.php";
+        
+        if (!is_array($coptions)) {
+            $coptions = array();
+        }
+        
+        $classname = $options['class_prefix'].$type;
+        
+        if (!class_exists($classname)) {
+            throw new UNL_DWT_Exception("Unable to include the {$options['class_location']}{$type}.php file.");
+        }
+        
+        @$obj = new $classname;
+        
+        foreach ($coptions as $option => $value) {
+            $test = $obj->setOption($option, $value);
+        }
+        
+        return $obj;
+    }
+    
+    /**
+    * Sets options.
+    * 
+    * @param string $option Option to set
+    * @param mixed  $value  Value to set for this option
+    *
+    * @return void
+    */
+    function setOption($option, $value)
+    {
+        self::$options[$option] = $value;
+    }
+    
+    /* ----------------------- Debugger ------------------ */
+
+    /**
+     * Debugger. - use this in your extended classes to output debugging 
+     * information.
+     *
+     * Uses UNL_DWT::debugLevel(x) to turn it on
+     *
+     * @param string $message message to output
+     * @param string $logtype bold at start
+     * @param string $level   output level
+     * 
+     * @return   none
+     */
+    static function debug($message, $logtype = 0, $level = 1)
+    {
+        if (empty(self::$options['debug'])  || 
+            (is_numeric(self::$options['debug']) &&  self::$options['debug'] < $level)) {
+            return;
+        }
+        // this is a bit flaky due to php's wonderfull class passing around crap..
+        // but it's about as good as it gets..
+        $class = (isset($this) && ($this instanceof UNL_DWT)) ? get_class($this) : 'UNL_DWT';
+        
+        if (!is_string($message)) {
+            $message = print_r($message, true);
+        }
+        if (!is_numeric(self::$options['debug']) && is_callable(self::$options['debug'])) {
+            return call_user_func(self::$options['debug'], $class, $message, $logtype, $level);
+        }
+        
+        if (!ini_get('html_errors')) {
+            echo "$class   : $logtype       : $message\n";
+            flush();
+            return;
+        }
+        if (!is_string($message)) {
+            $message = print_r($message, true);
+        }
+        $colorize = ($logtype == 'ERROR') ? '<font color="red">' : '<font>';
+        echo "<code>{$colorize}<strong>$class: $logtype:</strong> ". nl2br(htmlspecialchars($message)) . "</font></code><br />\n";
+        flush();
+    }
+
+    /**
+     * sets and returns debug level
+     * eg. UNL_DWT::debugLevel(4);
+     *
+     * @param int $v level
+     * 
+     * @return void
+     */
+    function debugLevel($v = null)
+    {
+        if ($v !== null) {
+            $r = isset(self::$options['debug']) ? self::$options['debug'] : 0;
+            self::$options['debug']  = $v;
+            return $r;
+        }
+        return isset(self::$options['debug']) ? self::$options['debug'] : 0;
+    }
+
+}
+
+/**
+ * exception used by the UNL_DWT class
+ * 
+ * @category  Templates
+ * @package   UNL_DWT
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @copyright 2008 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/package/UNL_DWT
+ */
+class UNL_DWT_Exception extends Exception
+{
+    
+}
+ 
+if (!function_exists('UNL_DWT_between')) {
+    /**
+     * Returns content between two strings
+     *
+     * @param string $start String which bounds the start
+     * @param string $end   end collecting content when you see this
+     * @param string $p     larger body of content to search
+     * 
+     * @return string
+     */
+    function UNL_DWT_between($start, $end, $p)
+    {
+        if (!empty($start) && strpos($p, $start)!=false) {
+            $p = substr($p, strpos($p, $start)+strlen($start));
+        }
+        if (strpos($p, $end)!=false) {
+            $p = substr($p, 0, strpos($p, $end));
+        }
+        return $p;
+    }
+}
\ No newline at end of file
diff --git a/vendor/pyrus/php/UNL/DWT/Generator.php b/vendor/pyrus/php/UNL/DWT/Generator.php
new file mode 100644
index 0000000000000000000000000000000000000000..172ac6a885d4d1edcd16764e6fed87c530d3bb4d
--- /dev/null
+++ b/vendor/pyrus/php/UNL/DWT/Generator.php
@@ -0,0 +1,476 @@
+<?php
+/**
+ * The Generator is used to generate UNL_DWT classes and cached .tpl files from
+ * Dreamweaver Template files.
+ *
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_DWT
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @created   01/18/2006
+ * @copyright 2008 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/package/UNL_DWT
+ */
+
+require_once 'UNL/DWT.php';
+require_once 'UNL/DWT/Region.php';
+
+/**
+ * The generator parses actual .dwt Dreamweaver Template files to create object relationship
+ * files which have member variables for editable regions within the dreamweaver templates.
+ * 
+ * @category  Templates
+ * @package   UNL_DWT
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @created   01/18/2006
+ * @copyright 2008 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/package/UNL_DWT
+ */
+class UNL_DWT_Generator extends UNL_DWT
+{
+
+    /**
+     * Array of template names.
+     */
+    var $templates;
+    
+    /**
+     * Current template being output
+     */
+    var $template;
+    
+    /**
+     * Assoc array of template region names.
+     * $_regions[$template] = array();
+     */
+    var $_regions;
+    
+    /**
+     * class being extended (can be overridden by
+     * [UNL_DWT_Generator] extends=xxxx
+     *
+     * @var    string
+     * @access private
+     */
+    var $_extends = 'UNL_DWT';
+    
+    /**
+     * line to use for require_once 'UNL/DWT.php';
+     *
+     * @var    string
+     * @access private
+     */
+    var $_extendsFile = 'UNL/DWT.php';
+    
+    /**
+     * begins generation of template files
+     *
+     * @return void
+     */
+    function start()
+    {
+        $this->debugLevel(3);
+        $this->createTemplateList();
+        $this->generateTemplates();
+        $this->generateClasses();
+    }
+    
+    /**
+     * Generates .tpl files from .dwt
+     * 
+     * @return void
+     */
+    function generateTemplates()
+    {
+        $dwt_location = UNL_DWT::$options['dwt_location'];
+        if (!file_exists(UNL_DWT::$options['dwt_location'])) {
+            include_once 'System.php';
+            System::mkdir(array('-p', UNL_DWT::$options['dwt_location']));
+        }
+        if (!file_exists($options['tpl_location'])) {
+            include_once 'System.php';
+            System::mkdir(array('-p', UNL_DWT::$options['tpl_location']));
+        }
+        foreach ($this->templates as $this->template) {
+            $dwt = file_get_contents($dwt_location.$this->template);
+            $dwt = $this->scanRegions($dwt);
+            
+            $sanitizedName = $this->sanitizeTemplateName($this->template);
+            //Write out the .tpl file?
+            if (strpos(UNL_DWT::$options['tpl_location'], '%s') !== false) {
+                $outfilename = sprintf(UNL_DWT::$options['tpl_location'], $sanitizedName);
+            } else {
+                $outfilename = UNL_DWT::$options['tpl_location']."/{$sanitizedName}.tpl";
+            }
+            $this->debug("Writing {$sanitizedName} to {$outfilename}", 
+                         'generateTemplates');
+            $fh = fopen($outfilename, "w");
+            fputs($fh, $dwt);
+            fclose($fh);
+        }
+    }
+    
+    /**
+     * Create a list of dwts
+     * 
+     * @return void
+     */
+    function createTemplateList()
+    {
+        $this->templates = array();
+        
+        $dwt_location = UNL_DWT::$options['dwt_location'];
+        if (is_dir($dwt_location)) {
+            $handle = opendir($dwt_location);
+            while (false !== ($file = readdir($handle))) {
+                if (isset(UNL_DWT::$options['generator_include_regex']) &&
+                !preg_match(UNL_DWT::$options['generator_include_regex'], $file)) {
+                    continue;
+                } else if (isset(UNL_DWT::$options['generator_exclude_regex']) &&
+                preg_match(UNL_DWT::$options['generator_exclude_regex'], $file)) {
+                    continue;
+                }
+                if (substr($file, strlen($file)-4) == '.dwt') {
+                    $this->debug("Adding {$file} to the list of templates.",
+                                'createTemplateList');
+                    $this->templates[] = $file;
+                }
+            }
+        } else {
+            throw new UNL_DWT_Exception("dwt_location is incorrect\n");
+        }
+    }
+    
+    /**
+     * Generate the classes for templates in $this->templates
+     *
+     * @return void
+     */
+    function generateClasses()
+    {        
+        if ($extends = @UNL_DWT::$options['extends']) {
+            $this->_extends     = $extends;
+            $this->_extendsFile = UNL_DWT::$options['extends_location'];
+        }
+        
+        foreach ($this->templates as $this->template) {
+            $this->classname = $this->generateClassName($this->template);
+            if (strpos(UNL_DWT::$options['class_location'], '%s') !== false) {
+                $outfilename = sprintf(UNL_DWT::$options['class_location'],
+                                    sanitizeTemplateName($this->template));
+            } else {
+                $outfilename = UNL_DWT::$options['class_location']."/".$this->sanitizeTemplateName($this->template).".php";
+            }
+            $oldcontents = '';
+            if (file_exists($outfilename)) {
+                // file_get_contents???
+                $oldcontents = implode('', file($outfilename));
+            }
+            $out = $this->_generateClassTemplate($oldcontents);
+            $this->debug("Writing {$this->classname} to {$outfilename}", 
+                        'generateClasses');
+            $fh = fopen($outfilename, "w");
+            fputs($fh, $out);
+            fclose($fh);
+        }
+    }
+    
+    /**
+     * Generates the class name from a filename.
+     * 
+     * @param string $filename The filename of the template.
+     * 
+     * @return string Sanitized filename prefixed with the class_prefix
+     *                defined in the ini.
+     */
+    function generateClassName($filename)
+    {
+        if (!($class_prefix  = @UNL_DWT::$options['class_prefix'])) {
+            $class_prefix = '';
+        }
+        return $class_prefix.$this->sanitizeTemplateName($filename);;
+    }
+    
+    /**
+     * Cleans the template filename.
+     *
+     * @param string $filename Filename of the template
+     * 
+     * @return string Sanitized template name
+     */
+    function sanitizeTemplateName($filename)
+    {
+        return preg_replace('/[^A-Z0-9]/i', '_', 
+                        ucfirst(str_replace('.dwt', '', $filename)));
+    }
+    
+    /**
+     * Scans the .dwt for regions - all found are loaded into assoc array
+     * $this->_regions[$template].
+     *
+     * @param string $dwt Dreamweaver template file to scan.
+     * 
+     * @return string derived template file.
+     */
+    function scanRegions($dwt)
+    {
+
+        $this->_regions[$this->template] = array();
+        
+        $dwt = str_replace("\r", "\n", $dwt);
+        $dwt = preg_replace("/(\<\!-- InstanceBeginEditable name=\"([A-Za-z0-9]*)\" -->)/i", "\n\\0\n", $dwt);
+        $dwt = preg_replace("/(\<\!-- TemplateBeginEditable name=\"([A-Za-z0-9]*)\" -->)/i", "\n\\0\n", $dwt);
+        $dwt = preg_replace("/\<\!-- InstanceEndEditable -->/", "\n\\0\n", $dwt);
+        $dwt = preg_replace("/\<\!-- TemplateEndEditable -->/", "\n\\0\n", $dwt);
+        $dwt = explode("\n", $dwt);
+        
+        $newRegion = false;
+        $region    = new UNL_DWT_Region();
+        $this->debug("Checking {$this->template}", 'scanRegions', 0);
+        foreach ($dwt as $key=>$fileregion) {
+            $matches = array();
+            if (preg_match("/\<\!-- InstanceBeginEditable name=\"([A-Za-z0-9]*)\" -->/i", $fileregion, $matches)
+                || preg_match("/\<\!-- TemplateBeginEditable name=\"([A-Za-z0-9]*)\" -->/i", $fileregion, $matches)) {
+                if ($newRegion == true) {
+                    // Found a new nested region.
+                    // Remove the previous one.
+                    $dwt[$region->line] = str_replace(array("<!--"." InstanceBeginEditable name=\"{$region->name}\" -->"), '', $dwt[$region->line]);
+                }
+                $newRegion     = true;
+                $region        = new UNL_DWT_Region();
+                $region->name  = $matches[1];
+                $region->line  = $key;
+                $region->value = "";
+            } elseif ((preg_match("/\<\!-- InstanceEndEditable -->/i", $fileregion, $matches) || preg_match("/\<\!-- TemplateEndEditable -->/", $fileregion, $matches))) {
+                // Region is closing.
+                if ($newRegion===true) {
+                    $region->value = trim($region->value);
+                    if (strpos($region->value, "@@(\" \")@@") === false) {
+                        $this->_regions[$this->template][] = $region;
+                    } else {
+                        // Editable Region tags must be removed within .tpl
+                        unset($dwt[$region->line], $dwt[$key]);
+                    }
+                    $newRegion = false;
+                } else {
+                    // Remove the nested region closing tag.
+                    $dwt[$key] = str_replace("<!--"." InstanceEndEditable -->", '', $fileregion);
+                }
+            } else {
+                if ($newRegion===true) {
+                    // Add the value of this region.
+                    $region->value .= trim($fileregion)." ";
+                }
+            }
+        }
+        $dwt = implode("\n", $dwt);
+        $dwt = preg_replace("/<!--"." InstanceParam name=\"([\w]*)\" type=\"([\w]*)\" value=\"([\w]*)\" -->/", '', $dwt);
+        $dwt = str_replace(array(    "<!--"." TemplateBeginEditable ",
+                                    "<!--"." TemplateEndEditable -->",
+                                    "\n\n"),
+                            array(    "<!--"." InstanceBeginEditable ",
+                                    "<!--"." InstanceEndEditable -->",
+                                    "\n"), $dwt);
+        if (preg_match("<!--"." InstanceBegin template=\"([\/\w\d\.]+)\" codeOutsideHTMLIsLocked=\"([\w]+)\" -->", $dwt)) {
+            $dwt = preg_replace("/<!--"." InstanceBegin template=\"([\/\w\d\.]+)\" codeOutsideHTMLIsLocked=\"([\w]+)\" -->/", "<!--"." InstanceBegin template=\"/Templates/{$this->template}\" codeOutsideHTMLIsLocked=\"\\2\" -->", $dwt);
+        } else {
+            $dwt = preg_replace("/<html[^>]*>/", "\\0<!--"." InstanceBegin template=\"/Templates/{$this->template}\" codeOutsideHTMLIsLocked=\"false\" -->", $dwt);
+        }
+        $dwt = str_replace('@@(" ")@@', '', $dwt);
+        return $dwt;
+    }
+    
+    /**
+     * The template class geneation part - single file.
+     *
+     * @param string $input file to generate a class for.
+     * 
+     * @return  updated .php file
+     */
+    private function _generateClassTemplate($input = '')
+    {
+        // title = expand me!
+        $foot = "";
+        $head = "<?php\n/**\n * Template Definition for {$this->template}\n */\n";
+        // requires
+        $head .= "require_once '{$this->_extendsFile}';\n\n";
+        // add dummy class header in...
+        // class
+        $head .= "class {$this->classname} extends {$this->_extends} \n{";
+
+        $body  =  "\n    ###START_AUTOCODE\n";
+        $body .= "    /* the code below is auto generated do not remove the above tag */\n\n";
+        // table
+        $padding = (30 - strlen($this->template));
+        if ($padding < 2) {
+            $padding =2;
+        }
+        $p = str_repeat(' ', $padding);        
+        
+        $var   = (substr(phpversion(), 0, 1) > 4) ? 'public' : 'var';
+        $body .= "    {$var} \$__template = '".$this->sanitizeTemplateName($this->template).".tpl';  {$p}// template name\n";
+        
+        $regions = $this->_regions[$this->template];
+        
+        foreach ($regions as $t) {
+            if (!strlen(trim($t->name))) {
+                continue;
+            }
+            $padding = (30 - strlen($t->name));
+            if ($padding < 2) $padding =2;
+            $p = str_repeat(' ', $padding);
+            
+            $body .="    {$var} \${$t->name} = \"".addslashes($t->value)."\"; {$p}// {$t->type}({$t->len})  {$t->flags}\n";
+        }
+        
+        // simple creation tools ! (static stuff!)
+        $body .= "\n";
+        $body .= "    /* Static get */\n";
+        $body .= "    function staticGet(\$k,\$v=NULL) { return UNL_DWT::staticGet('{$this->classname}',\$k,\$v); }\n";
+        
+        // generate getter and setter methods
+        $body .= $this->_generateGetters($input);
+        $body .= $this->_generateSetters($input);
+        
+        $body .= "\n    /* the code above is auto generated do not remove the tag below */";
+        $body .= "\n    ###END_AUTOCODE\n";
+        
+        $foot .= "}\n";
+        $full  = $head . $body . $foot;
+        
+        if (!$input) {
+            return $full;
+        }
+        if (!preg_match('/(\n|\r\n)\s*###START_AUTOCODE(\n|\r\n)/s', $input)) {
+            return $full;
+        }
+        if (!preg_match('/(\n|\r\n)\s*###END_AUTOCODE(\n|\r\n)/s', $input)) {
+            return $full;
+        }
+        
+        $class_rewrite = 'UNL_DWT';
+        if (!($class_rewrite = @UNL_DWT::$options['generator_class_rewrite'])) {
+            $class_rewrite = 'UNL_DWT';
+        }
+        if ($class_rewrite == 'ANY') {
+            $class_rewrite = '[a-z_]+';
+        }
+        $input = preg_replace('/(\n|\r\n)class\s*[a-z0-9_]+\s*extends\s*' .$class_rewrite . '\s*\{(\n|\r\n)/si',
+                "\nclass {$this->classname} extends {$this->_extends} \n{\n",
+                $input);
+        
+        return preg_replace('/(\n|\r\n)\s*###START_AUTOCODE(\n|\r\n).*(\n|\r\n)\s*###END_AUTOCODE(\n|\r\n)/s',
+                            $body, $input);
+        
+    }
+    
+    /**
+    * Generate getter methods for class definition
+    *
+    * @param string $input Existing class contents
+    * 
+    * @return string
+    */
+    function _generateGetters($input)
+    {
+        $getters = '';
+
+        // only generate if option is set to true
+        if (empty(UNL_DWT::$options['generate_getters'])) {
+            return '';
+        }
+
+        /*
+         * remove auto-generated code from input to be able to check if
+         * the method exists outside of the auto-code
+         */
+        $input = preg_replace('/(\n|\r\n)\s*###START_AUTOCODE(\n|\r\n).*(\n|\r\n)\s*###END_AUTOCODE(\n|\r\n)/s', '', $input);
+
+        $getters .= "\n\n";
+        $regions  = $this->_regions[$this->table];
+
+        // loop through properties and create getter methods
+        foreach ($regions = $regions as $t) {
+
+            // build mehtod name
+            $methodName = 'get' . ucfirst($t->name);
+
+            if (!strlen(trim($t->name))
+                || preg_match("/function[\s]+[&]?$methodName\(/i", $input)) {
+                continue;
+            }
+
+            $getters .= "   /**\n";
+            $getters .= "    * Getter for \${$t->name}\n";
+            $getters .= "    *\n";
+            $getters .= (stristr($t->flags, 'multiple_key')) ? "    * @return   object\n"
+                                                             : "    * @return   {$t->type}\n";
+            $getters .= "    * @access   public\n";
+            $getters .= "    */\n";
+            $getters .= (substr(phpversion(), 0, 1) > 4) ? '    public '
+                                                       : '    ';
+            $getters .= "function $methodName() {\n";
+            $getters .= "        return \$this->{$t->name};\n";
+            $getters .= "    }\n\n";
+        }
+   
+        return $getters;
+    }
+
+    /**
+     * Generate setter methods for class definition
+     *
+     * @param string $input Existing class contents
+     * 
+     * @return string
+     */
+    function _generateSetters($input)
+    {
+
+        $setters = '';
+
+        // only generate if option is set to true
+        if (empty(UNL_DWT::$options['generate_setters'])) {
+            return '';
+        }
+
+        /*
+         * remove auto-generated code from input to be able to check if
+         * the method exists outside of the auto-code
+         */
+        $input = preg_replace('/(\n|\r\n)\s*###START_AUTOCODE(\n|\r\n).*(\n|\r\n)\s*###END_AUTOCODE(\n|\r\n)/s', '', $input);
+
+        $setters .= "\n";
+        $regions  = $this->_regions[$this->table];
+
+        // loop through properties and create setter methods
+        foreach ($regions = $regions as $t) {
+
+            // build mehtod name
+            $methodName = 'set' . ucfirst($t->name);
+
+            if (!strlen(trim($t->name))
+                || preg_match("/function[\s]+[&]?$methodName\(/i", $input)) {
+                continue;
+            }
+
+            $setters .= "   /**\n";
+            $setters .= "    * Setter for \${$t->name}\n";
+            $setters .= "    *\n";
+            $setters .= "    * @param    mixed   input value\n";
+            $setters .= "    * @access   public\n";
+            $setters .= "    */\n";
+            $setters .= (substr(phpversion(), 0, 1) > 4) ? '    public '
+                                                       : '    ';
+            $setters .= "function $methodName(\$value) {\n";
+            $setters .= "        \$this->{$t->name} = \$value;\n";
+            $setters .= "    }\n\n";
+        }
+        
+        return $setters;
+    } 
+
+}
diff --git a/vendor/pyrus/php/UNL/DWT/Region.php b/vendor/pyrus/php/UNL/DWT/Region.php
new file mode 100644
index 0000000000000000000000000000000000000000..b0963a1d9f4046c6ff6c322915ab6c1548b06bef
--- /dev/null
+++ b/vendor/pyrus/php/UNL/DWT/Region.php
@@ -0,0 +1,22 @@
+<?php
+/**
+ * Object representing a Dreamweaver template region
+ * 
+ * @category  Templates
+ * @package   UNL_DWT
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @created   01/18/2006
+ * @copyright 2008 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/package/UNL_DWT
+ */
+class UNL_DWT_Region
+{
+    var $name;
+    var $type = 'string';
+    var $len;
+    var $line;
+    var $flags;
+    var $value;
+}
+?>
\ No newline at end of file
diff --git a/vendor/pyrus/php/UNL/DWT/Scanner.php b/vendor/pyrus/php/UNL/DWT/Scanner.php
new file mode 100644
index 0000000000000000000000000000000000000000..4ee274753d5e6d9a395087afb7fcaee612eda768
--- /dev/null
+++ b/vendor/pyrus/php/UNL/DWT/Scanner.php
@@ -0,0 +1,138 @@
+<?php
+/**
+ * Handles scanning a dwt file for regions.
+ * 
+ * PHP version 5
+ * 
+ * @category  Templates
+ * @package   UNL_DWT
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @created   01/18/2006
+ * @copyright 2008 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/package/UNL_DWT
+ */
+require_once 'UNL/DWT/Region.php';
+
+/**
+ * Will scan a dreamweaver templated file for regions and other relevant info.
+ *
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @created   01/18/2006
+ * @copyright 2008 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/package/UNL_DWT
+ */
+class UNL_DWT_Scanner
+{
+    protected $_regions;
+    
+    /**
+     * The contents of the .dwt file you wish to scan.
+     *
+     * @param string $dwt Source of the .dwt file
+     */
+    function __construct($dwt)
+    {
+        $this->scanRegions($dwt);
+    }
+    
+    function scanRegions($dwt)
+    {
+        $this->_regions[] = array();
+        
+        $dwt = str_replace("\r", "\n", $dwt);
+        $dwt = preg_replace("/(\<\!-- InstanceBeginEditable name=\"([A-Za-z0-9]*)\" -->)/i", "\n\\0\n", $dwt);
+        $dwt = preg_replace("/(\<\!-- TemplateBeginEditable name=\"([A-Za-z0-9]*)\" -->)/i", "\n\\0\n", $dwt);
+        $dwt = preg_replace("/\<\!-- InstanceEndEditable -->/", "\n\\0\n", $dwt);
+        $dwt = preg_replace("/\<\!-- TemplateEndEditable -->/", "\n\\0\n", $dwt);
+        $dwt = explode("\n", $dwt);
+        
+        $newRegion = false;
+        $region    = new UNL_DWT_Region();
+        foreach ($dwt as $key=>$fileregion) {
+            $matches = array();
+            if (preg_match("/\<\!-- InstanceBeginEditable name=\"([A-Za-z0-9]*)\" -->/i", $fileregion, $matches)
+                || preg_match("/\<\!-- TemplateBeginEditable name=\"([A-Za-z0-9]*)\" -->/i", $fileregion, $matches)) {
+                if ($newRegion == true) {
+                    // Found a new nested region.
+                    // Remove the previous one.
+                    $dwt[$region->line] = str_replace(array("<!--"." InstanceBeginEditable name=\"{$region->name}\" -->"), '', $dwt[$region->line]);
+                }
+                $newRegion     = true;
+                $region        = new UNL_DWT_Region();
+                $region->name  = $matches[1];
+                $region->line  = $key;
+                $region->value = "";
+            } elseif ((preg_match("/\<\!-- InstanceEndEditable -->/i", $fileregion, $matches) || preg_match("/\<\!-- TemplateEndEditable -->/", $fileregion, $matches))) {
+                // Region is closing.
+                if ($newRegion===true) {
+                    $region->value = trim($region->value);
+                    if (strpos($region->value, "@@(\" \")@@") === false) {
+                        $this->_regions[$region->name] = $region;
+                    } else {
+                        // Editable Region tags must be removed within .tpl
+                        unset($dwt[$region->line], $dwt[$key]);
+                    }
+                    $newRegion = false;
+                } else {
+                    // Remove the nested region closing tag.
+                    $dwt[$key] = str_replace("<!--"." InstanceEndEditable -->", '', $fileregion);
+                }
+            } else {
+                if ($newRegion===true) {
+                    // Add the value of this region.
+                    $region->value .= trim($fileregion).PHP_EOL;
+                }
+            }
+        }
+    }
+    
+    /**
+     * returns the region object
+     *
+     * @param string $region
+     * 
+     * @return UNL_DWT_Region
+     */
+    public function getRegion($region)
+    {
+        if (isset($this->_regions[$region])) {
+            return $this->_regions[$region];
+        }
+        return null;
+    }
+    
+    /**
+     * returns array of all the regions found
+     *
+     * @return array(UNL_DWT_Region)
+     */
+    public function getRegions()
+    {
+        return $this->_regions;
+    }
+    
+    public function __isset($region)
+    {
+        return isset($this->_regions[$region]);
+    }
+    
+    public function __get($region)
+    {
+        if (isset($this->_regions[$region])) {
+            return $this->_regions[$region]->value;
+        }
+        
+        $trace = debug_backtrace();
+        trigger_error(
+            'Undefined property: ' . $region .
+            ' in ' . $trace[0]['file'] .
+            ' on line ' . $trace[0]['line'],
+            E_USER_NOTICE);
+        return null;
+    }
+    
+}
+
+?>
diff --git a/vendor/pyrus/php/UNL/DWT/createTemplates.php b/vendor/pyrus/php/UNL/DWT/createTemplates.php
new file mode 100644
index 0000000000000000000000000000000000000000..df87cc257c420ce1f7aa665cec00d73422baa512
--- /dev/null
+++ b/vendor/pyrus/php/UNL/DWT/createTemplates.php
@@ -0,0 +1,44 @@
+#!/usr/bin/php -q
+<?php
+/**
+ * Tool to generate objects for dreamweaver template files.
+ * 
+ * PHP version 5
+ *  
+ * @package   UNL_DWT
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @created   01/18/2006
+ * @copyright 2008 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/package/UNL_DWT
+ */
+
+// since this version doesnt use overload, 
+// and I assume anyone using custom generators should add this..
+define('UNL_DWT_NO_OVERLOAD',1);
+ini_set('display_errors',true);
+require_once 'UNL/DWT/Generator.php';
+
+if (!ini_get('register_argc_argv')) {
+    throw new Exception("\nERROR: You must turn register_argc_argv On in your php.ini file for this to work\neg.\n\nregister_argc_argv = On\n\n");
+}
+
+if (!@$_SERVER['argv'][1]) {
+    throw new Exception("\nERROR: createTemplates.php usage:\n\nC:\php\pear\UNL\DWT\createTemplates.php example.ini\n\n");
+}
+
+$config = parse_ini_file($_SERVER['argv'][1], true);
+foreach($config as $class=>$values) {
+    if ($class == 'UNL_DWT') {
+        UNL_DWT::$options = $values;
+    }
+}
+
+if (empty(UNL_DWT::$options)) {
+    throw new Exception("\nERROR: could not read ini file\n\n");
+}
+set_time_limit(0);
+//UNL_DWT::debugLevel(1);
+$generator = new UNL_DWT_Generator;
+$generator->start();
+ 
diff --git a/vendor/pyrus/php/UNL/Templates.php b/vendor/pyrus/php/UNL/Templates.php
new file mode 100644
index 0000000000000000000000000000000000000000..2f0015cd027c6fc42310f59b44c4f28d1fa53e0a
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates.php
@@ -0,0 +1,373 @@
+<?php
+/**
+ * Object oriented interface to create UNL Template based HTML pages.
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+
+/**
+ * Utilizes the UNL_DWT Dreamweaver template class.
+ */
+require_once 'UNL/DWT.php';
+
+/**
+ * Allows you to create UNL Template based HTML pages through an object 
+ * oriented interface.
+ * 
+ * Install on your PHP server with:
+ * pear channel-discover pear.unl.edu
+ * pear install unl/UNL_Templates
+ * 
+ * <code>
+ * <?php
+ * require_once 'UNL/Templates.php';
+ * $page                  = UNL_Templates::factory('Fixed');
+ * $page->titlegraphic    = '<h1>UNL Templates</h1>';
+ * $page->maincontentarea = 'Hello world!';
+ * $page->loadSharedcodeFiles();
+ * echo $page;
+ * </code>
+ * 
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+class UNL_Templates extends UNL_DWT
+{
+    const VERSION2 = 2;
+    const VERSION3 = 3;
+    const VERSION3x1 = '3.1';
+    
+    /**
+     * Cache object for output caching
+     * 
+     * @var UNL_Templates_CachingService
+     */
+    static protected $cache;
+    
+    static public $options = array(
+        'debug'                  => 0,
+        'sharedcodepath'         => 'sharedcode',
+        'templatedependentspath' => '',
+        'cache'                  => array(),
+        'version'                => self::VERSION3,
+        'timeout'                => 5
+    );
+    
+    /**
+     * The version of the templates we're using.
+     * 
+     * @var UNL_Templates_Version
+     */
+    static public $template_version;
+    
+    /**
+     * Construct a UNL_Templates object
+     */
+    public function __construct()
+    {
+        date_default_timezone_set(date_default_timezone_get());
+        if (empty(self::$options['templatedependentspath'])) {
+            self::$options['templatedependentspath'] = $_SERVER['DOCUMENT_ROOT'];
+        }
+    }
+    
+    /**
+     * Initialize the configuration for the UNL_DWT class
+     * 
+     * @return void
+     */
+    public static function loadDefaultConfig()
+    {
+        self::$options['version'] = str_replace('.', 'x', self::$options['version']);
+        include_once 'UNL/Templates/Version'.self::$options['version'].'.php';
+        $class = 'UNL_Templates_Version'.self::$options['version'];
+        self::$template_version = new $class();
+        UNL_DWT::$options = array_merge(UNL_DWT::$options, self::$template_version->getConfig());
+    }
+    
+    /**
+     * The factory returns a template object for any UNL Template style requested:
+     *  * Fixed
+     *  * Liquid
+     *  * Popup
+     *  * Document
+     *  * Secure
+     *  * Unlaffiliate
+     * 
+     * <code>
+     * $page = UNL_Templates::factory('Fixed');
+     * </code>
+     *
+     * @param string $type     Type of template to get, Fixed, Liquid, Doc, Popup
+     * @param mixed  $coptions Options for the constructor
+     * 
+     * @return UNL_Templates
+     */
+    static function &factory($type, $coptions = false)
+    {
+        UNL_Templates::loadDefaultConfig();
+        return parent::factory($type, $coptions);
+    }
+    
+    /**
+     * Attempts to connect to the template server and grabs the latest cache of the
+     * template (.tpl) file. Set options for Cache_Lite in self::$options['cache']
+     * 
+     * @return string
+     */
+    function getCache()
+    {
+        $cache = self::getCachingService();
+        $cache_key = self::$options['version'].self::$options['templatedependentspath'].$this->__template;
+        // Test if there is a valid cache for this template
+        if ($data = $cache->get($cache_key)) {
+            // Content is in $data
+            self::debug('Using cached version from '.
+                         date('Y-m-d H:i:s', $cache->lastModified()), 'getCache', 3);
+        } else { // No valid cache found
+            if ($data = self::$template_version->getTemplate($this->__template)) {
+                self::debug('Updating cache.', 'getCache', 3);
+                $data = $this->makeIncludeReplacements($data);
+                $cache->save($data, $cache_key);
+            } else {
+                // Error getting updated version of the templates.
+                self::debug('Could not connect to template server. ' . PHP_EOL .
+                             'Extending life of template cache.', 'getCache', 3);
+                $cache->extendLife();
+                $data = $cache->get($this->__template);
+            }
+        }
+        return $data;
+    }
+    
+    /**
+     * Loads standard customized content (sharedcode) files from the filesystem.
+     * 
+     * @return void
+     */
+    function loadSharedcodeFiles()
+    {    
+        $includes = array(
+                            'footercontent'         => 'footer.html',
+                            'contactinfo'           => 'footerContactInfo.html',
+                            'navlinks'              => 'navigation.html',
+                            'leftcollinks'          => 'relatedLinks.html',
+                            'optionalfooter'        => 'optionalFooter.html',
+                            'collegenavigationlist' => 'unitNavigation.html',
+                            );
+        foreach ($includes as $element=>$filename) {
+            if (file_exists(self::$options['sharedcodepath'].'/'.$filename)) {
+                $this->{$element} = file_get_contents(self::$options['sharedcodepath'].'/'.$filename);
+            }
+        }
+    }
+
+
+    /**
+     * Add a link within the head of the page.
+     * 
+     * @param string $href       URI to the resource
+     * @param string $relation   Relation of this link element (alternate)
+     * @param string $relType    The type of relation (rel)
+     * @param array  $attributes Any additional attribute=>value combinations
+     * 
+     * @return void
+     */
+    function addHeadLink($href, $relation, $relType = 'rel', array $attributes = array())
+    {
+        $attributeString = '';
+        foreach ($attributes as $name=>$value) {
+            $attributeString .= $name.'="'.$value.'" ';
+        }    
+    
+        $this->head .= '<link '.$relType.'="'.$relation.'" href="'.$href.'" '.$attributeString.' />'.PHP_EOL;
+    
+    }
+
+    /**
+     * Add a (java)script to the page.
+     *
+     * @param string $url  URL to the script
+     * @param string $type Type of script text/javascript
+     * 
+     * @return void
+     */
+    function addScript($url, $type = 'text/javascript')
+    {
+        $this->head .= '<script type="'.$type.'" src="'.$url.'"></script>'.PHP_EOL;
+    }
+
+    /**
+     * Adds a script declaration to the page.
+     *
+     * @param string $content The javascript you wish to add.
+     * @param string $type    Type of script tag.
+     * 
+     * @return void
+     */
+    function addScriptDeclaration($content, $type = 'text/javascript')
+    {
+        $this->head .= '<script type="'.$type.'">//<![CDATA['.PHP_EOL.$content.PHP_EOL.'//]]></script>'.PHP_EOL;
+    }
+
+    /**
+     * Add a style declaration to the head of the document.
+     * <code>
+     * $page->addStyleDeclaration('.course {font-size:1.5em}');
+     * </code>
+     *
+     * @param string $content CSS content to add
+     * @param string $type    type attribute for the style element
+     * 
+     * @return void
+     */
+    function addStyleDeclaration($content, $type = 'text/css')
+    {
+        $this->head .= '<style type="'.$type.'">'.$content.'</style>'.PHP_EOL;
+    }
+    
+    /**
+     * Add a link to a stylesheet.
+     *
+     * @param string $url   Address of the stylesheet, absolute or relative
+     * @param string $media Media target (screen/print/projector etc)
+     * 
+     * @return void
+     */
+    function addStyleSheet($url, $media = 'all')
+    {
+        $this->addHeadLink($url, 'stylesheet', 'rel', array('media'=>$media, 'type'=>'text/css'));
+    }
+
+    /**
+     * Returns the page in HTML form.
+     * 
+     * @return string THe full HTML of the page.
+     */
+    function toHtml()
+    {
+        $p       = $this->getCache();
+        $regions = get_object_vars($this);
+        return $this->replaceRegions($p, $regions);
+    }
+    
+    /**
+     * returns this template as a string.
+     *
+     * @return string
+     */
+    function __toString()
+    {
+        return $this->toHtml();
+    }
+    
+    
+    /**
+     * Populates templatedependents files
+     * 
+     * Replaces the template dependent include statements with the corresponding 
+     * files from the /ucomm/templatedependents/ directory. To specify the location
+     * of your templatedependents directory, use something like
+     * $page->options['templatedependentspath'] = '/var/www/';
+     * and set the path to the directory containing /ucomm/templatedependents/
+     *
+     * @param string $p Page to make replacements in
+     * 
+     * @return string
+     */
+    function makeIncludeReplacements($p)
+    {
+        return self::$template_version->makeIncludeReplacements($p);
+    }
+    
+    /**
+     * Debug handler for messages.
+     *
+     * @param string $message Message to send to debug output
+     * @param int    $logtype Which log to send this to
+     * @param int    $level   The threshold to send this message or not.
+     * 
+     * @return void
+     */
+    static function debug($message, $logtype = 0, $level = 1)
+    {
+        UNL_DWT::$options['debug'] = self::$options['debug'];
+        parent::debug($message, $logtype, $level);
+    }
+    
+    /**
+     * Cleans the cache.
+     *
+     * @param mixed $o Pass a cached object to clean it's cache, or a string id.
+     *
+     * @return bool true if cache was successfully cleared.
+     */
+    public function cleanCache($object = null)
+    {
+        return self::getCachingService()->clean($object);
+    }
+    
+    static public function setCachingService(UNL_Templates_CachingService $cache)
+    {
+        self::$cache = $cache;
+    }
+    
+    static public function getCachingService()
+    {
+        if (!isset(self::$cache)) {
+            $file  = 'UNL/Templates/CachingService/Null.php';
+            $class = 'UNL_Templates_CachingService_Null';
+
+            $fp = @fopen('UNL/Cache/Lite.php', 'r', true);
+            if ($fp) {
+                fclose($fp);
+                $file  = 'UNL/Templates/CachingService/UNLCacheLite.php';
+                $class = 'UNL_Templates_CachingService_UNLCacheLite';
+            } else {
+                $fp = @fopen('Cache/Lite.php', 'r', true);
+                if ($fp) {
+                    fclose($fp);
+                    $file  = 'UNL/Templates/CachingService/CacheLite.php';
+                    $class = 'UNL_Templates_CachingService_CacheLite';
+                }
+            }
+
+            include_once $file;
+            self::$cache = new $class(self::$options['cache']);
+        }
+        return self::$cache;
+    }
+
+    static public function getDataDir()
+    {
+        if (file_exists(dirname(__FILE__).'/../../data/pear.unl.edu/UNL_Templates')) {
+            // new pear2 package & pyrus installation layout
+            return dirname(__FILE__).'/../../data/pear.unl.edu/UNL_Templates';
+        }
+
+        if (file_exists(dirname(__FILE__).'/../../data/tpl_cache')) {
+            // svn checkout
+            return realpath(dirname(__FILE__).'/../../data');
+        }
+
+        if ('@DATA_DIR@' != '@DATA_DIR'.'@') {
+            // pear/pyrus installation
+            return '@DATA_DIR@/UNL_Templates/data/';
+        }
+
+        throw new Exception('Cannot determine data directory!');
+    }
+}
diff --git a/vendor/pyrus/php/UNL/Templates/CachingService.php b/vendor/pyrus/php/UNL/Templates/CachingService.php
new file mode 100644
index 0000000000000000000000000000000000000000..3dc28c46dc8c581b1ed3ca664d2d611210ab91e8
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/CachingService.php
@@ -0,0 +1,20 @@
+<?php
+/**
+ * An interface for a caching service.
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+interface UNL_Templates_CachingService
+{
+    public function get($key);
+    public function save($data, $key);
+    public function clean($object = null);
+}
\ No newline at end of file
diff --git a/vendor/pyrus/php/UNL/Templates/CachingService/CacheLite.php b/vendor/pyrus/php/UNL/Templates/CachingService/CacheLite.php
new file mode 100644
index 0000000000000000000000000000000000000000..98853e323b73e70f902782126c13cec954a81ced
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/CachingService/CacheLite.php
@@ -0,0 +1,64 @@
+<?php
+/**
+ * A Cache Service using Cache_Lite
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates/CachingService.php';
+class UNL_Templates_CachingService_CacheLite implements UNL_Templates_CachingService
+{
+    protected $cache;
+    
+    function __construct($options = array())
+    {
+        include_once 'Cache/Lite.php';
+        $options = array_merge(array('lifeTime'=>3600), $options);
+        $this->cache = new Cache_Lite($options);
+    }
+    
+    function get($key)
+    {
+        return $this->cache->get($key, 'UNL_Templates');
+    }
+    
+    function save($data, $key)
+    {
+        return $this->cache->save($data, $key, 'UNL_Templates');
+    }
+    
+    function clean($object = null)
+    {
+        if (isset($object)) {
+            if (is_object($object)
+                && $object instanceof UNL_UCBCN_Cacheable) {
+                $key = $object->getCacheKey();
+                if ($key === false) {
+                    // This is a non-cacheable object.
+                    return true;
+                }
+            } else {
+                $key = (string) $object;
+            }
+            if ($this->cache->get($key) !== false) {
+                // Remove the cache for this individual object.
+                return $this->cache->remove($key, 'UNL_Templates');
+            }
+        } else {
+            return $this->cache->clean('UNL_Templates');
+        }
+        return false;
+    }
+    function __call($method, $params)
+    {
+        return $this->cache->$method($params);
+    }
+
+}
diff --git a/vendor/pyrus/php/UNL/Templates/CachingService/Null.php b/vendor/pyrus/php/UNL/Templates/CachingService/Null.php
new file mode 100644
index 0000000000000000000000000000000000000000..6a2f16f1f528d1deee52f1f4194058012a34764b
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/CachingService/Null.php
@@ -0,0 +1,33 @@
+<?php
+/**
+ * A Null cache service that can be used for testing
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates/CachingService.php';
+class UNL_Templates_CachingService_Null implements UNL_Templates_CachingService
+{
+    
+    function clean($object = null)
+    {
+        return true;
+    }
+    
+    function save($data, $key)
+    {
+        return true;
+    }
+    
+    function get($key)
+    {
+        return false;
+    }
+}
\ No newline at end of file
diff --git a/vendor/pyrus/php/UNL/Templates/CachingService/UNLCacheLite.php b/vendor/pyrus/php/UNL/Templates/CachingService/UNLCacheLite.php
new file mode 100644
index 0000000000000000000000000000000000000000..1226c665ba63daaed4ee07e940e9e12e3880f60e
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/CachingService/UNLCacheLite.php
@@ -0,0 +1,26 @@
+<?php
+/**
+ * A Cache Service using UNL_Cache_Lite
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates/CachingService/CacheLite.php';
+class UNL_Templates_CachingService_UNLCacheLite extends UNL_Templates_CachingService_CacheLite
+{
+
+    function __construct($options = array())
+    {
+        include_once 'UNL/Cache/Lite.php';
+        $options = array_merge(array('lifeTime'=>3600), $options);
+        $this->cache = new UNL_Cache_Lite($options);
+    }
+
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Scanner.php b/vendor/pyrus/php/UNL/Templates/Scanner.php
new file mode 100644
index 0000000000000000000000000000000000000000..c8fdf51bfb346d2c8aafff1a3e5693f0bacb3b32
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Scanner.php
@@ -0,0 +1,32 @@
+<?php
+/**
+ * This class will scan a template file for the regions, which you can use to 
+ * analyze and use a rendered template file.
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/DWT/Scanner.php';
+
+
+class UNL_Templates_Scanner extends UNL_DWT_Scanner
+{
+    /**
+     * Construct a remote file.
+     *
+     * @param string $html Contents of the page
+     */
+    function __construct($html)
+    {
+        parent::__construct($html);
+    }
+}
+
+?>
\ No newline at end of file
diff --git a/vendor/pyrus/php/UNL/Templates/Version.php b/vendor/pyrus/php/UNL/Templates/Version.php
new file mode 100644
index 0000000000000000000000000000000000000000..074d6af725d699c12e340562c0c0e3318aedbc15
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version.php
@@ -0,0 +1,21 @@
+<?php
+/**
+ * Interface for a version of the template files.
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+interface UNL_Templates_Version
+{ 
+    function getConfig();
+    function getTemplate($template);
+    function makeIncludeReplacements($html);
+}
+?>
\ No newline at end of file
diff --git a/vendor/pyrus/php/UNL/Templates/Version2.php b/vendor/pyrus/php/UNL/Templates/Version2.php
new file mode 100644
index 0000000000000000000000000000000000000000..7142f9f1833227d5f0c956168a91b5a000c2131f
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version2.php
@@ -0,0 +1,64 @@
+<?php
+/**
+ * Base class for version 2 (2006) of the template files.
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates/Version.php';
+
+class UNL_Templates_Version2 implements UNL_Templates_Version
+{ 
+    function getConfig()
+    {
+        return array('class_location' => 'UNL/Templates/Version2/',
+                     'class_prefix'   => 'UNL_Templates_Version2_');
+    }
+    
+    function getTemplate($template)
+    {
+        // Set a timeout for the HTTP download of the template file
+        $http_context = stream_context_create(array('http' => array('timeout' => UNL_Templates::$options['timeout'])));
+
+        // Always try and retrieve the latest
+        if (!(UNL_Templates::getCachingService() instanceof UNL_Templates_CachingService_Null)
+            && $tpl = file_get_contents('http://pear.unl.edu/UNL/Templates/server.php?version=2&template='.$template, false, $http_context)) {
+            return $tpl;
+        }
+
+        if (file_exists(UNL_Templates::getDataDir().'/tpl_cache/Version2/'.$template)) {
+            return file_get_contents($template);
+        }
+
+        throw new Exception('Could not get the template file!');
+    }
+    
+    function makeIncludeReplacements($html)
+    {
+        UNL_Templates::debug('Now making template include replacements.',
+                     'makeIncludeReplacements', 3);
+        $includes = array();
+        preg_match_all('<!--#include virtual="(/ucomm/templatedependents/[A-Za-z0-9\.\/]+)" -->',
+                        $html, $includes);
+        UNL_Templates::debug(print_r($includes, true), 'makeIncludeReplacements', 3);
+        foreach ($includes[1] as $include) {
+            UNL_Templates::debug('Replacing '.$include, 'makeIncludeReplacements', 3);
+            $file = UNL_Templates::$options['templatedependentspath'].$include;
+            if (!file_exists($file)) {
+                UNL_Templates::debug('File does not exist:'.$file,
+                             'makeIncludeReplacements', 3);
+                $file = 'http://www.unl.edu'.$include;
+            }
+            $html = str_replace('<!--#include virtual="'.$include.'" -->',
+                                 file_get_contents($file), $html);
+        }
+        return $html;
+    }
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version2/Document.php b/vendor/pyrus/php/UNL/Templates/Version2/Document.php
new file mode 100644
index 0000000000000000000000000000000000000000..62e6d3bc6f643adf9b015d9b1222382d6cf0ec5e
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version2/Document.php
@@ -0,0 +1,42 @@
+<?php
+/**
+ * Template Definition for document.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates.php';
+
+/**
+ * Document template object.
+ *
+ * @package UNL_Templates
+ */
+class UNL_Templates_Version2_Document extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Document.tpl';                    // template name
+    public $doctitle = "<title>UNL | Document Template</title>";                       // string()  
+    public $head = "<script type=\"text/javascript\"> var navl2Links = 0; //Default navline2 links to display (zero based counting) </script>";                           // string()  
+    public $breadcrumbs = "";                    // string()  
+    public $collegenavigationlist = "";          // string()  
+    public $titlegraphic = "<h1>Department</h1> <h2>Taglines - We Do The Heavy Lifting</h2>";                   // string()  
+    public $maincontentarea = "<p style=\"margin:20px; border:3px solid #CC0000;padding:10px; text-align:center\"> <strong>Delete this box and place your content here.</strong><br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://www.unl.edu/webdevnet/\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Click here to check Validation</a> </p>";                // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version2_Document',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version2/Fixed.php b/vendor/pyrus/php/UNL/Templates/Version2/Fixed.php
new file mode 100644
index 0000000000000000000000000000000000000000..fa02b80041bc2bba5cfbce61073a932fd85d12a4
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version2/Fixed.php
@@ -0,0 +1,47 @@
+<?php
+/**
+ * Template Definition for fixed.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ * 
+ */
+require_once 'UNL/Templates.php';
+
+/**
+ * Fixed width template object.
+ * 
+ * @package UNL_Templates
+ *
+ */
+class UNL_Templates_Version2_Fixed extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Fixed.tpl';                       // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<script type=\"text/javascript\"> var navl2Links = 0; //Default navline2 links to display (zero based counting) </script>";                           // string()  
+    public $breadcrumbs = "<!-- WDN: see glossary item \'breadcrumbs\' --> <ul> <li class=\"first\"><a href=\"http://www.unl.edu/\">UNL</a></li> <li><a href=\"http://www.unl.edu/\">Department</a></li> <li>New Page</li> </ul>";                    // string()  
+    public $collegenavigationlist = "";          // string()  
+    public $titlegraphic = "<h1>Department</h1> <h2>Taglines - We Do The Heavy Lifting</h2>";                   // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $leftRandomPromo = "<div class=\"image_small_short\" id=\"leftRandomPromo\"> <a href=\"#\" id=\"leftRandomPromoAnchor\"><img id=\"leftRandomPromoImage\" alt=\"\" src=\"/ucomm/templatedependents/templatecss/images/transpixel.gif\" /></a> <script type=\"text/javascript\" src=\"../sharedcode/leftRandomPromo.js\"></script> </div>";                // string()  
+    public $leftcollinks = "<!-- WDN: see glossary item \'sidebar links\' --> <!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $maincontentarea = "<p style=\"margin:20px; border:3px solid #CC0000;padding:10px; text-align:center\"> <strong>Delete this box and place your content here.</strong><br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://www.unl.edu/webdevnet/\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Click here to check Validation</a> </p>";                // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version2_Fixed',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version2/Liquid.php b/vendor/pyrus/php/UNL/Templates/Version2/Liquid.php
new file mode 100644
index 0000000000000000000000000000000000000000..673bc993a3fb16dd085ba6c2190f10e3164b28e9
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version2/Liquid.php
@@ -0,0 +1,47 @@
+<?php
+/**
+ * Template Definition for liquid.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ * 
+ */
+require_once 'UNL/Templates.php';
+
+/**
+ * Liquid width template object
+ * 
+ * @package UNL_Templates
+ *
+ */
+class UNL_Templates_Version2_Liquid extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Liquid.tpl';                      // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<script type=\"text/javascript\"> var navl2Links = 0; //Default navline2 links to display (zero based counting) </script>";                           // string()  
+    public $breadcrumbs = "<!-- WDN: see glossary item \'breadcrumbs\' --> <ul> <li class=\"first\"><a href=\"http://www.unl.edu/\">UNL</a></li> <li><a href=\"http://www.unl.edu/\">Department</a></li> <li>New Page</li> </ul>";                    // string()  
+    public $collegenavigationlist = "";          // string()  
+    public $titlegraphic = "<h1>Department</h1> <h2>Taglines - We Do The Heavy Lifting</h2>";                   // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $leftRandomPromo = "<div class=\"image_small_short\" id=\"leftRandomPromo\"> <a href=\"#\" id=\"leftRandomPromoAnchor\"><img id=\"leftRandomPromoImage\" alt=\"\" src=\"/ucomm/templatedependents/templatecss/images/transpixel.gif\" /></a> <script type=\"text/javascript\" src=\"../sharedcode/leftRandomPromo.js\"></script> </div>";                // string()  
+    public $leftcollinks = "<!-- WDN: see glossary item \'sidebar links\' --> <!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $maincontentarea = "<p style=\"margin:20px; border:3px solid #CC0000;padding:10px; text-align:center\"> <strong>Delete this box and place your content here.</strong><br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://www.unl.edu/webdevnet/\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Click here to check Validation</a> </p>";                // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version2_Liquid',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version2/Popup.php b/vendor/pyrus/php/UNL/Templates/Version2/Popup.php
new file mode 100644
index 0000000000000000000000000000000000000000..44e5f823fede57c1cb45811096e00dbc4f7da3e3
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version2/Popup.php
@@ -0,0 +1,42 @@
+<?php
+/**
+ * Template Definition for popup.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates.php';
+
+/**
+ * popup template object
+ * 
+ * @package UNL_Templates
+ *
+ */
+class UNL_Templates_Version2_Popup extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Popup.tpl';                       // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<script type=\"text/javascript\"> var navl2Links = 0; //Default navline2 links to display (zero based counting) </script>";                           // string()  
+    public $collegenavigationlist = "";          // string()  
+    public $titlegraphic = "<h1>Department</h1> <h2>Taglines - We Do The Heavy Lifting</h2>";                   // string()  
+    public $maincontentarea = "<p style=\"margin:20px; border:3px solid #CC0000;padding:10px; text-align:center\"> <strong>Delete this box and place your content here.</strong><br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://www.unl.edu/webdevnet/\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Click here to check Validation</a> </p>";                // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version2_Popup',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version2/Secure.php b/vendor/pyrus/php/UNL/Templates/Version2/Secure.php
new file mode 100644
index 0000000000000000000000000000000000000000..90ac4755bf745f192267c538f597446d92c2d138
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version2/Secure.php
@@ -0,0 +1,45 @@
+<?php
+/**
+ * Template Definition for secure.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates.php';
+
+/**
+ * Secure template object
+ * 
+ * @package UNL_Templates
+ *
+ */
+class UNL_Templates_Version2_Secure extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Secure.tpl';                      // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<script type=\"text/javascript\"> var navl2Links = 0; //Default navline2 links to display (zero based counting) </script>";                           // string()  
+    public $breadcrumbs = "<!-- WDN: see glossary item \'breadcrumbs\' --> <ul> <li class=\"first\"><a href=\"http://www.unl.edu/\">UNL</a></li> <li><a href=\"http://www.unl.edu/\">Department</a></li> <li>New Page</li> </ul> <!--#include virtual=\"/ucomm/templatedependents/templatesharedcode/includes/badges/secure.html\" -->";                    // string()  
+    public $collegenavigationlist = "";          // string()  
+    public $titlegraphic = "<h1>Department</h1> <h2>Taglines - We Do The Heavy Lifting</h2>";                   // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $leftcollinks = "<!-- WDN: see glossary item \'sidebar links\' --> <!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $maincontentarea = "<p style=\"margin:20px; border:3px solid #CC0000;padding:10px; text-align:center\"> <strong>Delete this box and place your content here.</strong><br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://www.unl.edu/webdevnet/\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Click here to check Validation</a> </p>";                // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version2_Secure',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version2/Unlaffiliate.php b/vendor/pyrus/php/UNL/Templates/Version2/Unlaffiliate.php
new file mode 100644
index 0000000000000000000000000000000000000000..194231ae963ba67fd8a9d8cdb1068b17bec38a8c
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version2/Unlaffiliate.php
@@ -0,0 +1,41 @@
+<?php
+/**
+ * Template Definition for unlaffiliate.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates.php';
+
+class UNL_Templates_Version2_Unlaffiliate extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Unlaffiliate.tpl';                // template name
+    public $doctitle = "<title>UNL Redesign</title>";                       // string()  
+    public $head = "<link rel=\"stylesheet\" type=\"text/css\" media=\"all\" href=\"/ucomm/templatedependents/templatecss/layouts/affiliate.css\" />";                           // string()  
+    public $siteheader = "<!--#include virtual=\"/ucomm/templatedependents/templatesharedcode/includes/siteheader/affiliate.shtml\" -->";                     // string()  
+    public $breadcrumbs = "<!-- WDN: see glossary item \'breadcrumbs\' --> <ul> <li class=\"first\"><a href=\"http://www.unl.edu/\">UNL</a></li> <li>UNL Framework</li> </ul>";                    // string()  
+    public $shelf = "";                          // string()  
+    public $titlegraphic = "<h1>Affiliate</h1> <h2>Taglines - We Do The Heavy Lifting</h2>";                   // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $leftRandomPromo = "<div class=\"image_small_short\" id=\"leftRandomPromo\"> <a href=\"#\" id=\"leftRandomPromoAnchor\"><img id=\"leftRandomPromoImage\" alt=\"\" src=\"/ucomm/templatedependents/templatecss/images/transpixel.gif\" /></a> <script type=\"text/javascript\" src=\"../sharedcode/leftRandomPromo.js\"></script> </div>";                // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $maincontentarea = "<h2 class=\"sec_main\">This template is only for affiliates of UNL, or units that have been granted a marketing exemption from the university. Confirm your use of this template before using it!</h2> <p style=\"margin:20px; border:3px solid #CC0000;padding:10px; text-align:center\"> <strong>Delete this box and place your content here.</strong><br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://www.unl.edu/webdevnet/\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Click here to check Validation</a> </p> <!--THIS IS THE END OF THE MAIN CONTENT AREA.-->";                // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version2_Unlaffiliate',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version2/Unlframework.php b/vendor/pyrus/php/UNL/Templates/Version2/Unlframework.php
new file mode 100644
index 0000000000000000000000000000000000000000..47b4261693c11c4d01a3192e73646796390f2d6d
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version2/Unlframework.php
@@ -0,0 +1,45 @@
+<?php
+/**
+ * Template Definition for unlframework.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates.php';
+
+/**
+ * Unlframework template object
+ * 
+ * @package UNL_Templates
+ *
+ */
+class UNL_Templates_Version2_Unlframework extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Unlframework.tpl';                // template name
+    public $doctitle = "<title>UNL Redesign</title>";                       // string()  
+    public $head = "<!--#include virtual=\"/ucomm/templatedependents/templatesharedcode/includes/browsersniffers/ie.html\" --> <!--#include virtual=\"/ucomm/templatedependents/templatesharedcode/includes/comments/developersnote.html\" --> <!--#include virtual=\"/ucomm/templatedependents/templatesharedcode/includes/metanfavico/metanfavico.html\" -->";                           // string()  
+    public $siteheader = "<!--#include virtual=\"/ucomm/templatedependents/templatesharedcode/includes/siteheader/siteheader.shtml\" -->";                     // string()  
+    public $breadcrumbs = "<!-- WDN: see glossary item \'breadcrumbs\' --> <ul> <li class=\"first\"><a href=\"http://www.unl.edu/\">UNL</a></li> <li>UNL Framework</li> </ul>";                    // string()  
+    public $shelf = "<!--#include virtual=\"/ucomm/templatedependents/templatesharedcode/includes/shelf/shelf.shtml\" -->";                          // string()  
+    public $collegenavigationlist = "";          // string()  
+    public $titlegraphic = "<h1>Department</h1> <h2>Taglines - We Do The Heavy Lifting</h2>";                   // string()  
+    public $leftcolcontent = "<div id=\"navigation\"> <h4 id=\"sec_nav\">Navigation</h4> <div id=\"navlinks\"> <!--#include virtual=\"../sharedcode/navigation.html\" --> </div> <div id=\"nav_end\"></div> <div class=\"image_small_short\" id=\"leftRandomPromo\"> <a href=\"#\" id=\"leftRandomPromoAnchor\"><img id=\"leftRandomPromoImage\" alt=\"\" src=\"/ucomm/templatedependents/templatecss/images/transpixel.gif\" /></a> <script type=\"text/javascript\" src=\"../sharedcode/leftRandomPromo.js\"></script> </div> <!-- WDN: see glossary item \'sidebar links\' --> <div id=\"leftcollinks\"> <!--#include virtual=\"../sharedcode/relatedLinks.html\" --> </div> </div> <!-- close navigation -->";                 // string()  
+    public $maincolcontent = "<!-- optional main big content image --> <div id=\"maincontent\"> <p style=\"margin:20px; border:3px solid #CC0000;padding:10px; text-align:center\"> <strong>Delete this box and place your content here.</strong><br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://www.unl.edu/webdevnet/\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Click here to check Validation</a> </p> </div> <!-- close right-area -->";                 // string()  
+    public $bigfooter = "<div id=\"footer\"> <div id=\"footer_floater\"> <div id=\"copyright\"> <!--#include virtual=\"../sharedcode/footer.html\" --> <span><a href=\"http://jigsaw.w3.org/css-validator/check/referer\">CSS</a> <a href=\"http://validator.unl.edu/check/referer\">W3C</a> <a href=\"http://www1.unl.edu/feeds/\">RSS</a> </span><a href=\"http://www.unl.edu/\" title=\"UNL Home\"><img src=\"/ucomm/templatedependents/templatecss/images/wordmark.png\" alt=\"UNL\'s wordmark\" id=\"wordmark\" /></a></div> </div> </div>";                      // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version2_Unlframework',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version2/Unlstandardtemplate.php b/vendor/pyrus/php/UNL/Templates/Version2/Unlstandardtemplate.php
new file mode 100644
index 0000000000000000000000000000000000000000..5aff6955702cb8efadde4d09afbe9f35a7e61bb2
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version2/Unlstandardtemplate.php
@@ -0,0 +1,48 @@
+<?php
+/**
+ * Template Definition for unlstandardtemplate.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates.php';
+
+/**
+ * Unlstandardtemplate object
+ * 
+ * @package UNL_Templates
+ *
+ */
+class UNL_Templates_Version2_Unlstandardtemplate extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Unlstandardtemplate.tpl';         // template name
+    public $doctitle = "<title>UNL Redesign</title>";                       // string()  
+    public $head = "";                           // string()  
+    public $siteheader = "<!--#include virtual=\"/ucomm/templatedependents/templatesharedcode/includes/siteheader/siteheader.shtml\" -->";                     // string()  
+    public $breadcrumbs = "<ul> <li class=\"first\"><a href=\"http://www.unl.edu/\">UNL</a></li> <li>UNL Standard Template</li> </ul>";                    // string()  
+    public $shelf = "<!--#include virtual=\"/ucomm/templatedependents/templatesharedcode/includes/shelf/shelf.shtml\" -->";                          // string()  
+    public $collegenavigationlist = "";          // string()  
+    public $titlegraphic = "<h1>Department</h1> <h2>Taglines - We Do The Heavy Lifting</h2>";                   // string()  
+    public $navcontent = "<div id=\"navlinks\"> <!--#include virtual=\"../sharedcode/navigation.html\" --> </div>";                     // string()  
+    public $leftRandomPromo = "<div class=\"image_small_short\" id=\"leftRandomPromo\"> <a href=\"#\" id=\"leftRandomPromoAnchor\"><img id=\"leftRandomPromoImage\" alt=\"\" src=\"/ucomm/templatedependents/templatecss/images/transpixel.gif\" /></a> <script type=\"text/javascript\" src=\"../sharedcode/leftRandomPromo.js\"></script> </div>";                // string()  
+    public $leftcollinks = "<h3>Related Links</h3> <!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $maincontent = "<p style=\"margin:20px; border:3px solid #CC0000;padding:10px; text-align:center\"> <strong>Delete this box and place your content here.</strong><br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://www.unl.edu/webdevnet/\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Click here to check Validation</a> </p>";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version2_Unlstandardtemplate',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3.php b/vendor/pyrus/php/UNL/Templates/Version3.php
new file mode 100644
index 0000000000000000000000000000000000000000..81931203eaefdca6ad8c937d1db46751e3029b60
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3.php
@@ -0,0 +1,81 @@
+<?php
+/**
+ * Base class for Version 3 (2009) template files.
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates/Version.php';
+
+/**
+ * Base class for Version 3 (2009) template files.
+ * 
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+class UNL_Templates_Version3 implements UNL_Templates_Version
+{ 
+    function getConfig()
+    {
+        return array('class_location' => 'UNL/Templates/Version3/',
+                     'class_prefix'   => 'UNL_Templates_Version3_');
+    }
+    
+    function getTemplate($template)
+    {
+        if (!file_exists(UNL_Templates::$options['templatedependentspath'].'/wdn/templates_3.0')) {
+            UNL_Templates::debug('ERROR You should have a local copy of wdn/templates_3.0!'
+                                 . ' Overriding your specified template to use absolute references' ,
+                                 'getTemplate', 1);
+            $template = 'Absolute.tpl';
+        }
+
+        // Set a timeout for the HTTP download of the template file
+        $http_context = stream_context_create(array('http' => array('timeout' => UNL_Templates::$options['timeout'])));
+
+        // Always try and retrieve the latest
+        if (!(UNL_Templates::getCachingService() instanceof UNL_Templates_CachingService_Null)
+            && $tpl = file_get_contents('http://pear.unl.edu/UNL/Templates/server.php?version=3&template='.$template, false, $http_context)) {
+            return $tpl;
+        }
+
+        if (file_exists(UNL_Templates::getDataDir().'/tpl_cache/Version3/'.$template)) {
+            return file_get_contents(UNL_Templates::getDataDir().'/tpl_cache/Version3/'.$template);
+        }
+
+        throw new Exception('Could not get the template file!');
+    }
+    
+    function makeIncludeReplacements($html)
+    {
+        UNL_Templates::debug('Now making template include replacements.',
+                     'makeIncludeReplacements', 3);
+        $includes = array();
+        preg_match_all('<!--#include virtual="(/wdn/templates_3.0/[A-Za-z0-9\.\/_]+)" -->',
+                        $html, $includes);
+        UNL_Templates::debug(print_r($includes, true), 'makeIncludeReplacements', 3);
+        foreach ($includes[1] as $include) {
+            UNL_Templates::debug('Replacing '.$include, 'makeIncludeReplacements', 3);
+            $file = UNL_Templates::$options['templatedependentspath'].$include;
+            if (!file_exists($file)) {
+                UNL_Templates::debug('File does not exist:'.$file,
+                             'makeIncludeReplacements', 3);
+                $file = 'http://www.unl.edu'.$include;
+            }
+            $html = str_replace('<!--#include virtual="'.$include.'" -->',
+                                 file_get_contents($file), $html);
+        }
+        return $html;
+    }
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3/Absolute.php b/vendor/pyrus/php/UNL/Templates/Version3/Absolute.php
new file mode 100644
index 0000000000000000000000000000000000000000..3a7f120bf874ce4097e8a8e06a5602f32917d3a2
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3/Absolute.php
@@ -0,0 +1,50 @@
+<?php
+/**
+ * Template Definition for absolute.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates.php';
+
+/**
+ * Template Definition for absolute.dwt
+ * 
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+class UNL_Templates_Version3_Absolute extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Absolute.tpl';                    // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here -->";                           // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.unl.edu/\" title=\"University of Nebraska&ndash;Lincoln\">UNL</a></li> <li>Department</li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $titlegraphic = "<h1>Department</h1>";                   // string()  
+    public $pagetitle = "";                      // string()  
+    public $maincontentarea = "<p>Place your content here.<br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://wdn.unl.edu//\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Check this page</a> </p>";                // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $contactinfo = "<!--#include virtual=\"../sharedcode/footerContactInfo.html\" -->";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3_Absolute',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3/Debug.php b/vendor/pyrus/php/UNL/Templates/Version3/Debug.php
new file mode 100644
index 0000000000000000000000000000000000000000..2a8e34e5fc5cc1cb04f80b35fc8567f7be41937c
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3/Debug.php
@@ -0,0 +1,30 @@
+<?php
+/**
+ * Template Definition for debug.dwt
+ */
+require_once 'UNL/Templates.php';
+
+class UNL_Templates_Version3_Debug extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Debug.tpl';                       // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here -->";                           // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.unl.edu/\" title=\"University of Nebraska&ndash;Lincoln\">UNL</a></li> <li>Department</li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $titlegraphic = "<h1>Department</h1>";                   // string()  
+    public $pagetitle = "";                      // string()  
+    public $maincontentarea = "<p>Place your content here.<br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://wdn.unl.edu//\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Check this page</a> </p>";                // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $contactinfo = "<!--#include virtual=\"../sharedcode/footerContactInfo.html\" -->";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3_Debug',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3/Document.php b/vendor/pyrus/php/UNL/Templates/Version3/Document.php
new file mode 100644
index 0000000000000000000000000000000000000000..efc4581930ed56de0d311bd540605a7b33f2c57b
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3/Document.php
@@ -0,0 +1,46 @@
+<?php
+/**
+ * Template Definition for document.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates.php';
+
+/**
+ * Template Definition for document.dwt
+ * 
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+class UNL_Templates_Version3_Document extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Document.tpl';                    // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here -->";                           // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.unl.edu/\" title=\"University of Nebraska&ndash;Lincoln\">UNL</a></li> <li>Department</li> </ul>";                    // string()  
+    public $titlegraphic = "<h1>Department</h1>";                   // string()  
+    public $pagetitle = "";                      // string()  
+    public $maincontentarea = "<p>Place your content here.<br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://wdn.unl.edu//\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Check this page</a> </p>";                // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3_Document',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3/Fixed.php b/vendor/pyrus/php/UNL/Templates/Version3/Fixed.php
new file mode 100644
index 0000000000000000000000000000000000000000..5f7a566d3233a80865ccb0a6557467a7d49e2076
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3/Fixed.php
@@ -0,0 +1,50 @@
+<?php
+/**
+ * Template Definition for fixed.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates.php';
+
+/**
+ * Template Definition for fixed.dwt
+ * 
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+class UNL_Templates_Version3_Fixed extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Fixed.tpl';                       // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here -->";                           // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.unl.edu/\" title=\"University of Nebraska&ndash;Lincoln\">UNL</a></li> <li>Department</li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $titlegraphic = "<h1>Department</h1>";                   // string()  
+    public $pagetitle = "";                      // string()  
+    public $maincontentarea = "<p>Place your content here.<br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://wdn.unl.edu//\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Check this page</a> </p>";                // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $contactinfo = "<!--#include virtual=\"../sharedcode/footerContactInfo.html\" -->";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3_Fixed',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3/Fixed_html5.php b/vendor/pyrus/php/UNL/Templates/Version3/Fixed_html5.php
new file mode 100644
index 0000000000000000000000000000000000000000..7e359fa6f5688543dd632245b82de3939860c462
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3/Fixed_html5.php
@@ -0,0 +1,30 @@
+<?php
+/**
+ * Template Definition for fixed_html5.dwt
+ */
+require_once 'UNL/Templates.php';
+
+class UNL_Templates_Version3_Fixed_html5 extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Fixed_html5.tpl';                 // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here -->";                           // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.unl.edu/\" title=\"University of Nebraska&ndash;Lincoln\">UNL</a></li> <li>Department</li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $titlegraphic = "<h1>Department</h1>";                   // string()  
+    public $pagetitle = "";                      // string()  
+    public $maincontentarea = "<p>Place your content here.<br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://wdn.unl.edu//\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Check this page</a> </p>";                // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $contactinfo = "<!--#include virtual=\"../sharedcode/footerContactInfo.html\" -->";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3_Fixed_html5',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3/Liquid.php b/vendor/pyrus/php/UNL/Templates/Version3/Liquid.php
new file mode 100644
index 0000000000000000000000000000000000000000..065d3fc61a53447e0a3f070d649c02501b4393a8
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3/Liquid.php
@@ -0,0 +1,50 @@
+<?php
+/**
+ * Template Definition for liquid.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates.php';
+
+/**
+ * Template Definition for liquid.dwt
+ * 
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+class UNL_Templates_Version3_Liquid extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Liquid.tpl';                      // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here -->";                           // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.unl.edu/\" title=\"University of Nebraska&ndash;Lincoln\">UNL</a></li> <li>Department</li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $titlegraphic = "<h1>Department</h1>";                   // string()  
+    public $pagetitle = "";                      // string()  
+    public $maincontentarea = "<p>Place your content here.<br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://wdn.unl.edu//\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Check this page</a> </p>";                // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $contactinfo = "<!--#include virtual=\"../sharedcode/footerContactInfo.html\" -->";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3_Liquid',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3/Mobile.php b/vendor/pyrus/php/UNL/Templates/Version3/Mobile.php
new file mode 100644
index 0000000000000000000000000000000000000000..ce3a0f1e72978c1d12dd099f138ec5b9d7c59009
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3/Mobile.php
@@ -0,0 +1,38 @@
+<?php
+/**
+ * Template Definition for mobile.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Kyle Powers <kylepowers@gmail.com>
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates.php';
+
+class UNL_Templates_Version3_Mobile extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Mobile.tpl';                      // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here -->";                           // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.unl.edu/\" title=\"University of Nebraska&ndash;Lincoln\">UNL</a></li> <li>Department</li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $titlegraphic = "<h1>Department</h1>";                   // string()  
+    public $pagetitle = "";                      // string()  
+    public $maincontentarea = "<p>Place your content here.<br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://wdn.unl.edu//\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Check this page</a> </p>";                // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $contactinfo = "<!--#include virtual=\"../sharedcode/footerContactInfo.html\" -->";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3_Mobile',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3/Popup.php b/vendor/pyrus/php/UNL/Templates/Version3/Popup.php
new file mode 100644
index 0000000000000000000000000000000000000000..f8a9cb83992e3ceaea7ae59654db7e5400944ccc
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3/Popup.php
@@ -0,0 +1,45 @@
+<?php
+/**
+ * Template Definition for popup.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates.php';
+
+/**
+ * Template Definition for popup.dwt
+ * 
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+class UNL_Templates_Version3_Popup extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Popup.tpl';                       // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here -->";                           // string()  
+    public $titlegraphic = "<h1>Department</h1>";                   // string()  
+    public $pagetitle = "";                      // string()  
+    public $maincontentarea = "<p>Place your content here.<br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://wdn.unl.edu//\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Check this page</a> </p>";                // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3_Popup',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3/Secure.php b/vendor/pyrus/php/UNL/Templates/Version3/Secure.php
new file mode 100644
index 0000000000000000000000000000000000000000..03d4f90baa59eca9fe9ee265ff2b2e82e8f79f03
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3/Secure.php
@@ -0,0 +1,47 @@
+<?php
+/**
+ * Template Definition for secure.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates.php';
+
+/**
+ * Template Definition for secure.dwt
+ * 
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+class UNL_Templates_Version3_Secure extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Secure.tpl';                      // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here -->";                           // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.unl.edu/\" title=\"University of Nebraska&ndash;Lincoln\">UNL</a></li> <li>Department</li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $titlegraphic = "<h1>Department</h1>";                   // string()  
+    public $pagetitle = "";                      // string()  
+    public $maincontentarea = "<p>Place your content here.<br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://wdn.unl.edu//\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Check this page</a> </p>";                // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3_Secure',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3/Shared_column_left.php b/vendor/pyrus/php/UNL/Templates/Version3/Shared_column_left.php
new file mode 100644
index 0000000000000000000000000000000000000000..af770692bf5ba9437526c509758d6a044a3769db
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3/Shared_column_left.php
@@ -0,0 +1,51 @@
+<?php
+/**
+ * Template Definition for shared_column_left.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates.php';
+
+/**
+ * Template definition for shared_column_left.dwt
+ * 
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+class UNL_Templates_Version3_Shared_column_left extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Shared_column_left.tpl';          // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here -->";                           // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.unl.edu/\" title=\"University of Nebraska&ndash;Lincoln\">UNL</a></li> <li>Department</li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $titlegraphic = "<h1>Department</h1>";                   // string()  
+    public $pagetitle = "";                      // string()  
+    public $sharedcolumn = "<div class=\"col left\"> <!--#include virtual=\"../sharedcode/sharedColumn.html\" --> </div>";                   // string()  
+    public $maincontentarea = "<p>Place your content here.<br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://wdn.unl.edu//\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Check this page</a> </p>";                // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $contactinfo = "<!--#include virtual=\"../sharedcode/footerContactInfo.html\" -->";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3_Shared_column_left',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3/Shared_column_right.php b/vendor/pyrus/php/UNL/Templates/Version3/Shared_column_right.php
new file mode 100644
index 0000000000000000000000000000000000000000..00247c20de1569557549fcca068d371f13d04b34
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3/Shared_column_right.php
@@ -0,0 +1,51 @@
+<?php
+/**
+ * Template Definition for shared_column_right.dwt
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates.php';
+
+/**
+ * Template Definition for shared_column_right.dwt
+ * 
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+class UNL_Templates_Version3_Shared_column_right extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Shared_column_right.tpl';         // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here -->";                           // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.unl.edu/\" title=\"University of Nebraska&ndash;Lincoln\">UNL</a></li> <li>Department</li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $titlegraphic = "<h1>Department</h1>";                   // string()  
+    public $pagetitle = "";                      // string()  
+    public $maincontentarea = "<p>Place your content here.<br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://wdn.unl.edu//\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Check this page</a> </p>";                // string()  
+    public $sharedcolumn = "<div class=\"col right\"> <!--#include virtual=\"../sharedcode/sharedColumn.html\" --> </div>";                   // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $contactinfo = "<!--#include virtual=\"../sharedcode/footerContactInfo.html\" -->";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3_Shared_column_right',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3/Unlaffiliate.php b/vendor/pyrus/php/UNL/Templates/Version3/Unlaffiliate.php
new file mode 100644
index 0000000000000000000000000000000000000000..c36dfc3516eedf64131da4c6da0aca5f9d97a610
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3/Unlaffiliate.php
@@ -0,0 +1,31 @@
+<?php
+/**
+ * Template Definition for unlaffiliate.dwt
+ */
+require_once 'UNL/Templates.php';
+
+class UNL_Templates_Version3_Unlaffiliate extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Unlaffiliate.tpl';                // template name
+    public $doctitle = "<title>UNL | Department | New Page</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here -->";                           // string()  
+    public $sitebranding = "<div id=\"affiliate_note\"><a href=\"http://www.unl.edu\" title=\"University of Nebraska&ndash;Lincoln\">An affiliate of the University of Nebraska&ndash;Lincoln</a></div> <a href=\"/\" title=\"Through the Eyes of the Child Initiative\"><img src=\"../sharedcode/affiliate_imgs/affiliate_logo.png\" alt=\"Through the Eyes of the Child Initiative\" id=\"logo\" /></a> <h1>Through the Eyes of the Child Initiative</h1> <div id=\'tag_line\'>A Nebraska Supreme Court Initiative</div>";                   // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.unl.edu/\" title=\"University of Nebraska&ndash;Lincoln\">UNL</a></li> <li>Department</li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $titlegraphic = "<h1>Department</h1>";                   // string()  
+    public $pagetitle = "";                      // string()  
+    public $maincontentarea = "<p>Place your content here.<br /> Remember to validate your pages before publishing! Sample layouts are available through the <a href=\"http://wdn.unl.edu//\">Web Developer Network</a>. <br /> <a href=\"http://validator.unl.edu/check/referer\">Check this page</a> </p>";                // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $contactinfo = "<!--#include virtual=\"../sharedcode/footerContactInfo.html\" -->";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3_Unlaffiliate',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3x1.php b/vendor/pyrus/php/UNL/Templates/Version3x1.php
new file mode 100644
index 0000000000000000000000000000000000000000..baf4a00c4b07f731528d41bd28a75d42d42b217b
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3x1.php
@@ -0,0 +1,78 @@
+<?php
+/**
+ * Base class for Version 3 (2009) template files.
+ * 
+ * PHP version 5
+ *  
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @author    Ned Hummel <nhummel2@unl.edu>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+require_once 'UNL/Templates/Version.php';
+
+/**
+ * Base class for Version 3 (2009) template files.
+ * 
+ * @category  Templates
+ * @package   UNL_Templates
+ * @author    Brett Bieber <brett.bieber@gmail.com>
+ * @copyright 2009 Regents of the University of Nebraska
+ * @license   http://www1.unl.edu/wdn/wiki/Software_License BSD License
+ * @link      http://pear.unl.edu/
+ */
+class UNL_Templates_Version3x1 implements UNL_Templates_Version
+{ 
+    function getConfig()
+    {
+        return array('class_location' => 'UNL/Templates/Version3x1/',
+                     'class_prefix'   => 'UNL_Templates_Version3x1_');
+    }
+    
+    function getTemplate($template)
+    {
+        if (!file_exists(UNL_Templates::$options['templatedependentspath'].'/wdn/templates_3.1')) {
+            UNL_Templates::debug('ERROR You should have a local copy of wdn/templates_3.1!'
+                                 . ' Overriding your specified template to use absolute references' ,
+                                 'getTemplate', 1);
+            $template = 'Absolute.tpl';
+        }
+
+        // Always try and retrieve the latest
+        if (!(UNL_Templates::getCachingService() instanceof UNL_Templates_CachingService_Null)
+            && $tpl = file_get_contents('http://pear.unl.edu/UNL/Templates/server.php?version=3x1&template='.$template)) {
+            return $tpl;
+        }
+
+        if (file_exists(UNL_Templates::getDataDir().'/tpl_cache/Version3x1/'.$template)) {
+            return file_get_contents(UNL_Templates::getDataDir().'/tpl_cache/Version3x1/'.$template);
+        }
+
+        throw new Exception('Could not get the template file!');
+    }
+
+    function makeIncludeReplacements($html)
+    {
+        UNL_Templates::debug('Now making template include replacements.',
+                     'makeIncludeReplacements', 3);
+        $includes = array();
+        preg_match_all('<!--#include virtual="(/wdn/templates_3.1/[A-Za-z0-9\.\/_]+)" -->',
+                        $html, $includes);
+        UNL_Templates::debug(print_r($includes, true), 'makeIncludeReplacements', 3);
+        foreach ($includes[1] as $include) {
+            UNL_Templates::debug('Replacing '.$include, 'makeIncludeReplacements', 3);
+            $file = UNL_Templates::$options['templatedependentspath'].$include;
+            if (!file_exists($file)) {
+                UNL_Templates::debug('File does not exist:'.$file,
+                             'makeIncludeReplacements', 3);
+                $file = 'http://www.unl.edu'.$include;
+            }
+            $html = str_replace('<!--#include virtual="'.$include.'" -->',
+                                 file_get_contents($file), $html);
+        }
+        return $html;
+    }
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3x1/Debug.php b/vendor/pyrus/php/UNL/Templates/Version3x1/Debug.php
new file mode 100644
index 0000000000000000000000000000000000000000..aa8ac7858d236c3c6965282e78f73aa09a722880
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3x1/Debug.php
@@ -0,0 +1,30 @@
+<?php
+/**
+ * Template Definition for debug.dwt
+ */
+require_once 'UNL/Templates.php';
+
+class UNL_Templates_Version3x1_Debug extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Debug.tpl';                       // template name
+    public $doctitle = "<title>Use a descriptive page title | Optional Site Title (use for context) | University of Nebraska&ndash;Lincoln</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here -->";                           // string()  
+    public $titlegraphic = "The Title of My Site";                   // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.unl.edu/\" title=\"University of Nebraska&ndash;Lincoln\">UNL</a></li> <li class=\"selected\"><a href=\"#\" title=\"Site Title\">Site Title</a></li> <li>Page Title</li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $pagetitle = "<h1>This is your page title. It\'s now an &lt;h1&gt;, baby!</h1>";                      // string()  
+    public $maincontentarea = "<h2>This is a blank page</h2> <p>Impress your audience with awesome content!</p>";                // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $contactinfo = "<!--#include virtual=\"../sharedcode/footerContactInfo.html\" -->";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3x1_Debug',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3x1/Fixed.php b/vendor/pyrus/php/UNL/Templates/Version3x1/Fixed.php
new file mode 100644
index 0000000000000000000000000000000000000000..a396fd3c5e60ae4dd9625897227e7802d52e6b90
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3x1/Fixed.php
@@ -0,0 +1,30 @@
+<?php
+/**
+ * Template Definition for fixed.dwt
+ */
+require_once 'UNL/Templates.php';
+
+class UNL_Templates_Version3x1_Fixed extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Fixed.tpl';                       // template name
+    public $doctitle = "<title>Use a descriptive page title | Optional Site Title (use for context) | University of Nebraska&ndash;Lincoln</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here -->";                           // string()  
+    public $titlegraphic = "The Title of My Site";                   // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.unl.edu/\" title=\"University of Nebraska&ndash;Lincoln\">UNL</a></li> <li class=\"selected\"><a href=\"#\" title=\"Site Title\">Site Title</a></li> <li>Page Title</li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $pagetitle = "<h1>This is your page title. It\'s now an &lt;h1&gt;, baby!</h1>";                      // string()  
+    public $maincontentarea = "<h2>This is a blank page</h2> <p>Impress your audience with awesome content!</p>";                // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $contactinfo = "<!--#include virtual=\"../sharedcode/footerContactInfo.html\" -->";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3x1_Fixed',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3x1/Local.php b/vendor/pyrus/php/UNL/Templates/Version3x1/Local.php
new file mode 100644
index 0000000000000000000000000000000000000000..d120aff26038fc094efbd5764560d23b25feb8c4
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3x1/Local.php
@@ -0,0 +1,30 @@
+<?php
+/**
+ * Template Definition for local.dwt
+ */
+require_once 'UNL/Templates.php';
+
+class UNL_Templates_Version3x1_Local extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Local.tpl';                       // template name
+    public $doctitle = "<title>Use a descriptive page title | Optional Site Title (use for context) | University of Nebraska&ndash;Lincoln</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here -->";                           // string()  
+    public $titlegraphic = "The Title of My Site";                   // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.unl.edu/\" title=\"University of Nebraska&ndash;Lincoln\">UNL</a></li> <li class=\"selected\"><a href=\"#\" title=\"Site Title\">Site Title</a></li> <li>Page Title</li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $pagetitle = "<h1>This is your page title. It\'s now an &lt;h1&gt;, baby!</h1>";                      // string()  
+    public $maincontentarea = "<h2>This is a blank page</h2> <p>Impress your audience with awesome content!</p>";                // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $contactinfo = "<!--#include virtual=\"../sharedcode/footerContactInfo.html\" -->";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3x1_Local',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3x1/Unlaffiliate.php b/vendor/pyrus/php/UNL/Templates/Version3x1/Unlaffiliate.php
new file mode 100644
index 0000000000000000000000000000000000000000..37da6f4216d01d8ece6a07e1973cf0391b2cb068
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3x1/Unlaffiliate.php
@@ -0,0 +1,30 @@
+<?php
+/**
+ * Template Definition for unlaffiliate.dwt
+ */
+require_once 'UNL/Templates.php';
+
+class UNL_Templates_Version3x1_Unlaffiliate extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Unlaffiliate.tpl';                // template name
+    public $doctitle = "<title>Use a descriptive page title | Optional Site Title (use for context) | UNL Affiliate</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here --> <link rel=\"stylesheet\" type=\"text/css\" media=\"screen\" href=\"../sharedcode/affiliate.css\" /> <link href=\"../sharedcode/affiliate_imgs/favicon.ico\" rel=\"shortcut icon\" />";                           // string()  
+    public $titlegraphic = "Throught the Eyes of a Child Initiative<span>A Nebraska Supreme Court Initiative</span>";                   // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.throughtheeyes.org/\" title=\"Through the Eyes of the Child Initiative\">Home</a></li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $pagetitle = "<h1>This is your page title. It\'s now an &lt;h1&gt;, baby!</h1>";                      // string()  
+    public $maincontentarea = "<h2>This is a blank page</h2> <p>Impress your audience with awesome content!</p>";                // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $contactinfo = "<!--#include virtual=\"../sharedcode/footerContactInfo.html\" -->";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3x1_Unlaffiliate',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3x1/Unlaffiliate_debug.php b/vendor/pyrus/php/UNL/Templates/Version3x1/Unlaffiliate_debug.php
new file mode 100644
index 0000000000000000000000000000000000000000..baa01f04c441989267e919a2489c679f88c109d7
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3x1/Unlaffiliate_debug.php
@@ -0,0 +1,30 @@
+<?php
+/**
+ * Template Definition for unlaffiliate_debug.dwt
+ */
+require_once 'UNL/Templates.php';
+
+class UNL_Templates_Version3x1_Unlaffiliate_debug extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Unlaffiliate_debug.tpl';          // template name
+    public $doctitle = "<title>Use a descriptive page title | Optional Site Title (use for context) | UNL Affiliate</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here --> <link rel=\"stylesheet\" type=\"text/css\" media=\"screen\" href=\"../sharedcode/affiliate.css\" /> <link href=\"../sharedcode/affiliate_imgs/favicon.ico\" rel=\"shortcut icon\" />";                           // string()  
+    public $titlegraphic = "Throught the Eyes of a Child Initiative<span>A Nebraska Supreme Court Initiative</span>";                   // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.throughtheeyes.org/\" title=\"Through the Eyes of the Child Initiative\">Home</a></li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $pagetitle = "<h1>This is your page title. It\'s now an &lt;h1&gt;, baby!</h1>";                      // string()  
+    public $maincontentarea = "<h2>This is a blank page</h2> <p>Impress your audience with awesome content!</p>";                // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $contactinfo = "<!--#include virtual=\"../sharedcode/footerContactInfo.html\" -->";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3x1_Unlaffiliate_debug',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/php/UNL/Templates/Version3x1/Unlaffiliate_local.php b/vendor/pyrus/php/UNL/Templates/Version3x1/Unlaffiliate_local.php
new file mode 100644
index 0000000000000000000000000000000000000000..ddb0a55ff96084348875a403034abfbfc8b77582
--- /dev/null
+++ b/vendor/pyrus/php/UNL/Templates/Version3x1/Unlaffiliate_local.php
@@ -0,0 +1,30 @@
+<?php
+/**
+ * Template Definition for unlaffiliate_local.dwt
+ */
+require_once 'UNL/Templates.php';
+
+class UNL_Templates_Version3x1_Unlaffiliate_local extends UNL_Templates 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__template = 'Unlaffiliate_local.tpl';          // template name
+    public $doctitle = "<title>Use a descriptive page title | Optional Site Title (use for context) | UNL Affiliate</title>";                       // string()  
+    public $head = "<!-- Place optional header elements here --> <link rel=\"stylesheet\" type=\"text/css\" media=\"screen\" href=\"../sharedcode/affiliate.css\" /> <link href=\"../sharedcode/affiliate_imgs/favicon.ico\" rel=\"shortcut icon\" />";                           // string()  
+    public $titlegraphic = "Throught the Eyes of a Child Initiative<span>A Nebraska Supreme Court Initiative</span>";                   // string()  
+    public $breadcrumbs = "<ul> <li><a href=\"http://www.throughtheeyes.org/\" title=\"Through the Eyes of the Child Initiative\">Home</a></li> </ul>";                    // string()  
+    public $navlinks = "<!--#include virtual=\"../sharedcode/navigation.html\" -->";                       // string()  
+    public $pagetitle = "<h1>This is your page title. It\'s now an &lt;h1&gt;, baby!</h1>";                      // string()  
+    public $maincontentarea = "<h2>This is a blank page</h2> <p>Impress your audience with awesome content!</p>";                // string()  
+    public $leftcollinks = "<!--#include virtual=\"../sharedcode/relatedLinks.html\" -->";                   // string()  
+    public $contactinfo = "<!--#include virtual=\"../sharedcode/footerContactInfo.html\" -->";                    // string()  
+    public $optionalfooter = "";                 // string()  
+    public $footercontent = "<!--#include virtual=\"../sharedcode/footer.html\" -->";                  // string()  
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return UNL_DWT::staticGet('UNL_Templates_Version3x1_Unlaffiliate_local',$k,$v); }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}
diff --git a/vendor/pyrus/tests/pear.unl.edu/UNL_Templates/UNL_TemplatesTest.php b/vendor/pyrus/tests/pear.unl.edu/UNL_Templates/UNL_TemplatesTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..d8a4164144824dfaa4e36cbb86885cd54a99c6b5
--- /dev/null
+++ b/vendor/pyrus/tests/pear.unl.edu/UNL_Templates/UNL_TemplatesTest.php
@@ -0,0 +1,172 @@
+<?php
+// Call UNL_TemplatesTest::main() if this source file is executed directly.
+if (!defined('PHPUnit_MAIN_METHOD')) {
+    define('PHPUnit_MAIN_METHOD', 'UNL_TemplatesTest::main');
+}
+
+require_once 'PHPUnit/Framework.php';
+
+require_once 'UNL/Templates.php';
+
+/**
+ * Test class for UNL_Templates.
+ * Generated by PHPUnit on 2007-11-29 at 16:07:45.
+ */
+class UNL_TemplatesTest extends PHPUnit_Framework_TestCase {
+    /**
+     * Runs the test methods of this class.
+     *
+     * @access public
+     * @static
+     */
+    public static function main() {
+        require_once 'PHPUnit/TextUI/TestRunner.php';
+
+        $suite  = new PHPUnit_Framework_TestSuite('UNL_TemplatesTest');
+        $result = PHPUnit_TextUI_TestRunner::run($suite);
+    }
+
+    /**
+     * Sets up the fixture, for example, opens a network connection.
+     * This method is called before a test is executed.
+     *
+     * @access protected
+     */
+    protected function setUp() {
+    }
+
+    /**
+     * Tears down the fixture, for example, closes a network connection.
+     * This method is called after a test is executed.
+     *
+     * @access protected
+     */
+    protected function tearDown() {
+    }
+
+    /**
+     * @todo Implement test__constructor().
+     */
+    public function test__constructor() {
+        // Remove the following lines when you implement this test.
+        $this->markTestIncomplete(
+          'This test has not been implemented yet.'
+        );
+    }
+
+    /**
+     * @todo Implement testLoadDefaultConfig().
+     */
+    public function testLoadDefaultConfig() {
+        // Remove the following lines when you implement this test.
+        $this->markTestIncomplete(
+          'This test has not been implemented yet.'
+        );
+    }
+
+    /**
+     * @todo Implement testFactory().
+     */
+    public function testFactory() {
+        // Remove the following lines when you implement this test.
+        $this->markTestIncomplete(
+          'This test has not been implemented yet.'
+        );
+    }
+
+    /**
+     * @todo Implement testGetCache().
+     */
+    public function testGetCache() {
+        // Remove the following lines when you implement this test.
+        $this->markTestIncomplete(
+          'This test has not been implemented yet.'
+        );
+    }
+
+    /**
+     * @todo Implement testLoadSharedcodeFiles().
+     */
+    public function testLoadSharedcodeFiles() {
+        // Remove the following lines when you implement this test.
+        $this->markTestIncomplete(
+          'This test has not been implemented yet.'
+        );
+    }
+
+    /**
+     * @todo Implement testAddHeadLink().
+     */
+    public function testAddHeadLink() {
+        // Remove the following lines when you implement this test.
+        $this->markTestIncomplete(
+          'This test has not been implemented yet.'
+        );
+    }
+
+    /**
+     * @todo Implement testAddScript().
+     */
+    public function testAddScript() {
+        // Remove the following lines when you implement this test.
+        $this->markTestIncomplete(
+          'This test has not been implemented yet.'
+        );
+    }
+
+    /**
+     * @todo Implement testAddScriptDeclaration().
+     */
+    public function testAddScriptDeclaration() {
+        // Remove the following lines when you implement this test.
+        $this->markTestIncomplete(
+          'This test has not been implemented yet.'
+        );
+    }
+
+    /**
+     * @todo Implement testAddStyleDeclaration().
+     */
+    public function testAddStyleDeclaration() {
+        // Remove the following lines when you implement this test.
+        $this->markTestIncomplete(
+          'This test has not been implemented yet.'
+        );
+    }
+
+    /**
+     * @todo Implement testAddStyleSheet().
+     */
+    public function testAddStyleSheet() {
+        // Remove the following lines when you implement this test.
+        $this->markTestIncomplete(
+          'This test has not been implemented yet.'
+        );
+    }
+
+    /**
+     * @todo Implement testToHtml().
+     */
+    public function testToHtml() {
+        // Remove the following lines when you implement this test.
+        $this->markTestIncomplete(
+          'This test has not been implemented yet.'
+        );
+    }
+
+    /**
+     * @todo Implement testMakeIncludeReplacements().
+     */
+    public function testMakeIncludeReplacements() {
+        // Remove the following lines when you implement this test.
+        $this->markTestIncomplete(
+          'This test has not been implemented yet.'
+        );
+    }
+}
+
+// Call UNL_TemplatesTest::main() if this source file is executed directly.
+if (PHPUnit_MAIN_METHOD == 'UNL_TemplatesTest::main') {
+    UNL_TemplatesTest::main();
+}
+?>