| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html>
- <head>
- <title>iEat: Credits</title>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
- <link rel="stylesheet" type="text/css" href="whoosh-eat.css" />
- </head>
- <body>
- <div id="nav-frame">
- <div class="frame-t">
- <img class="frame-tl" alt="frame" src="img/tb_03.gif" />
- <img class="frame-tr" alt="frame" src="img/tb_06.gif" />
- </div>
- <div class="frame-m">
- <div class="section"><a href="index.html">Home</a></div>
- <div class="section"><a href="screenshots.html">Screen Shots</a></div>
- <div class="section"><a href="download.html">Download</a></div>
- <div class="section-selected">Credits</div>
- <div class="section"><a href="developers.html">Developers</a></div>
- </div>
- <div class="frame-ml"></div>
- <div class="frame-mr"></div>
- <div class="frame-b">
- <img class="frame-bl" alt="frame" src="img/tb_24.gif" />
- <img class="frame-br" alt="frame" src="img/tb_26.gif" />
- </div>
- </div>
- <h1><a name="top"></a>Credits, thanks, etc.</h1>
- <p class="intro">iEat is <a href="http://en.wikipedia.org/wiki/Open_source">open source</a> software, and wouldn't be possible if not for some great open source software created by others. This page lists the open source software that iEat uses. Much thanks to all of these projects!</p>
- <dl>
- <dt>GNU regular expressions</dt>
- <dd>The <a href="http://www.cacas.org/java/gnu/regexp/">GNU regexp</a> package is used for regular expression support.</dd>
- <dt>Hibernate</dt>
- <dd>The <a href="http://www.hibernate.org/">Hibernate</a> OR persistence framework is used by iEat. This project was also my excuse to finally learn Hibernate!</dd>
- <dt>HyperJAXB</dt>
- <dd>I found the <a href="https://hyperjaxb.dev.java.net/">HyperJAXB</a> project just in the knick of time, as I was about to write something similar myself.</dd>
- <dt>Log4J</dt>
- <dd>Apache's <a href="http://logging.apache.org/log4j/">Log4j</a> package is used for logging services.</dd>
- <dt>Lucene</dt>
- <dd>The Apache Jakarta <a href="http://jakarta.apache.org/lucene/">Lucene</a> package is used for indexing/searching capabilities.</dd>
- <dt>Spring Framework</dt>
- <dd>The <a href="http://www.springframework.org/">Spring</a> framework serves as the overall applicaiton framework. This project was also my excuse to finally learn Spring!</dd>
- <dt>Xalan</dt>
- <dd>Apache's <a href="http://xml.apache.org/xalan-j/">Xalan</a> XSLT processor is used for generating HTML from XML.</dd>
- <dt>Xerces</dt>
- <dd>Apache's <a href="http://xml.apache.org/xerces2-j/">Xerces</a> XML parser is used extensively for handling XML.</dd>
- </dl>
- <p>iEat was developed with the help of other open source software, including:</p>
- <dl>
- <dt>Ant</dt>
- <dd>There would be no sanity in the Java world were it not for <a href="http://ant.apache.org/">Ant</a>.</dd>
-
- <dt>Eclipse</dt>
- <dd>The fantastic <a href="http://www.eclipse.org">Java IDE</a>.</dd>
- <dt>JUnit</dt>
- <dd>The one, the only: <a href="http://www.junit.org/">JUnit</a>.</dd>
- <dt>PHPRecipeBook</dt>
- <dd>When I finally got around to working on my ideas for iEat, I came across
- <a href="http://phprecipebook.sourceforge.net/">PHPRecipeBook</a> application. This has an
- exellent database schema that served as inspiration and a starting point for iEat.</dd>
- <dt>Spring IDE for Eclipse</dt>
- <dd>The <a href="http://www.springframework.org/spring-ide/eclipse/">Spring IDE for Eclipse</a> made
- working with Spring that much easier within Eclipse.</dd>
-
- <dt>Tomcat</dt>
- <dd>The Apache Jakarta <a href="http://jakarta.apache.org/tomcat/">Tomcat</a> servlet container is used to run iEat.</dd>
- <dt>Tomcat plugin for Eclipse</dt>
- <dd>The <a href="http://www.sysdeo.com/eclipse/tomcatPlugin.html">Sysdeo Eclipse Tomcat plugin</a> makes developing servlet applications a much more enjoyable experience.</dd>
-
- <dt>Xdoclet</dt>
- <dd>The <a href="http://xdoclet.sourceforge.net/">Xdoclet</a> project is used to help generate the Hibernate persistence mappings. HyperJAXB generates the Java classes with Hibernate Xdoclet tags from XML Schema definitions.</dd>
- </dl>
- </body>
- </html>
|