92 lines
2.7 KiB
PHP
92 lines
2.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* PanaceaCreditsView
|
|
*
|
|
* @package Panacea
|
|
* @subpackage Views
|
|
* @author Tommy Montgomery
|
|
* @since 2008-10-26
|
|
*/
|
|
|
|
/** Bootstraps the NowhereConcave framework */
|
|
require_once 'NowhereConcave/bootstrap.php';
|
|
|
|
/**
|
|
* View for the credits page
|
|
*
|
|
* @package Panacea
|
|
* @subpackage Views
|
|
* @author Tommy Montgomery
|
|
* @since 2008-10-26
|
|
*/
|
|
class PanaceaCreditsView extends PanaceaView {
|
|
|
|
/**
|
|
* Renders the view
|
|
*
|
|
* @author Tommy Montgomery
|
|
* @since 2008-10-26
|
|
*/
|
|
public function send() { ?>
|
|
|
|
<h2>Credits</h2>
|
|
<div class="inset">
|
|
<h3>Internals</h3>
|
|
<div class="inset">
|
|
<p>
|
|
This application was built entirely by
|
|
<a href="http://tommymontgomery.com/">Tommy Montgomery</a>. He wrote it
|
|
using <a href="http://php.net/">PHP</a>. Obviously,
|
|
<a href="http://trac.edgewall.org/">Trac</a> was a big inspiration.
|
|
</p>
|
|
</div>
|
|
|
|
<h3>Development Tools</h3>
|
|
<div class="inset">
|
|
<p>
|
|
Yes, this entire thing was developed on <i>gasp!</i> Windows.
|
|
Macs are for suckers and Linux is for sadists. Of course, I relied
|
|
heavily on the use of Cygwin…
|
|
</p>
|
|
|
|
<ul>
|
|
<li><a href="http://notepad-plus.sourceforge.net/uk/site.htm">Notepad++</a></li>
|
|
<li><a href="http://webyog.com/en/downloads.php#sqlyog">SQLyog</a></li>
|
|
<li><a href="http://subversion.tigris.org/">Subversion</a></li>
|
|
<li><a href="http://tortoisesvn.tigris.org/">TortoiseSVN</a></li>
|
|
<li><a href="http://www.cygwin.com/">Cygwin</a></li>
|
|
<li><a href="http://mysql.com/">MySQL</a></li>
|
|
<li><a href="http://httpd.apache.com/">Apache web server</a></li>
|
|
<li><a href="http://phpunit.de/">PHPUnit</a></li>
|
|
<li><a href="http://phpundercontrol.org/">phpUnderControl</a> / <a href="http://cruisecontrol.sourceforge.net/">CruiseControl</a></li>
|
|
<li><a href="http://pear.php.net/package/PHP_CodeSniffer/">PHP_CodeSniffer</a></li>
|
|
<li><a href="http://xdebug.org/">XDebug</a></li>
|
|
<li><a href="http://www.gimp.org/">gimp</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<h3>References</h3>
|
|
<div class="inset">
|
|
<p>
|
|
These are mentioned because I sometimes referred to them while
|
|
developing Panacea.
|
|
</p>
|
|
<ul>
|
|
<li><a href="http://trac.edgewall.org/">Trac</a></li>
|
|
<li><a href="http://ezcomponents.org">ezComponents</a></li>
|
|
<li><a href="http://framework.zend.com/">Zend Framework</a></li>
|
|
<li><a href="http://en.wikipedia.org/">Wikipedia</a> (reference for wiki syntax)</li>
|
|
<li><a href="http://cssplay.co.uk/">CSSplay</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|