Skip to content

Commit

Permalink
gaelyk 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
musketyr committed May 11, 2014
1 parent 47548df commit ae5adcb
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 12 deletions.
2 changes: 1 addition & 1 deletion website/war/WEB-INF/appengine-web.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>gaelyk</application>
<version>21a</version>
<version>212</version>
<threadsafe>true</threadsafe>

<static-files>
Expand Down
27 changes: 20 additions & 7 deletions website/war/WEB-INF/pages/download.gtpl
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,42 @@
<div id="sidebox" class="roundPinkBorder">
<table>
<tr>
<td><a href="http://dl.bintray.com/gaelyk/gaelyk-templates/gaelyk-template-project-2.1.zip"><img src="/images/icon-download.png" alt="Template project"></a></td>
<td><a href="http://dl.bintray.com/gaelyk/gaelyk-templates/gaelyk-template-project-2.1.zip">Template project v2.1</a></td>
<td><a href="http://dl.bintray.com/gaelyk/gaelyk-templates/gaelyk-template-project-2.1.2.zip"><img src="/images/icon-download.png" alt="Template project"></a></td>
<td><a href="http://dl.bintray.com/gaelyk/gaelyk-templates/gaelyk-template-project-2.1.2.zip">Template project v2.1.2</a></td>
</tr>
<tr>
<td><a href="http://repo1.maven.org/maven2/org/gaelyk/gaelyk/2.1/gaelyk-2.1.jar"><img src="/images/icon-download.png" alt="Gaelyk JAR"></a></td>
<td><a href="http://repo1.maven.org/maven2/org/gaelyk/gaelyk/2.1/gaelyk-2.1.jar">Gaelyk JAR v2.1</a></td>
<td><a href="http://repo1.maven.org/maven2/org/gaelyk/gaelyk/2.1.2/gaelyk-2.1.2.jar"><img src="/images/icon-download.png" alt="Gaelyk JAR"></a></td>
<td><a href="http://repo1.maven.org/maven2/org/gaelyk/gaelyk/2.1.2/gaelyk-2.1.2.jar">Gaelyk JAR v2.1.2</a></td>
</tr>
</table>
</div>

<p>
You can use the <b>Gaelyk</b> JAR in combination with Groovy 2.1 and beyond and with the latest Google App Engine SDK.
You can use the <b>Gaelyk</b> JAR in combination with Groovy 2.3.x and beyond and with the latest Google App Engine SDK.
</p>

<p>
The latest version was tested with Groovy 2.1.9,
and with the 1.9.1 version of the App Engine SDK.
The latest version was tested with Groovy 2.3.0,
and with the 1.9.4 version of the App Engine SDK.
</p>

<p>
But to get you started quickly, you may use a ready-made template project which bundles and configures everything.
</p>

<h2>Version 2.1.2</h2>
<h3>Changes</h3>
<ul>
<li>Switched to Groovy 2.3</li>
<li>Fixed null pointer exception for self restarting iterator in conjunction with <code>or</code> in the query</li>
</ul>

<h2>Version 2.1.1</h2>
<h3>Changes</h3>
<ul>
<li>Showing 404 status page properly when groovlet or template not found</li>
</ul>

<h2>Version 2.1</h2>

<h3>Changes</h3>
Expand Down
6 changes: 3 additions & 3 deletions website/war/WEB-INF/pages/tutorial/flexibleUrlRouting.gtpl
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,11 @@ only when the following artefacts are initialized:
<code>void init(ServletConfig)</code> method was called.
</li>
<li>
Servlet filters have had their <code>void init(FilterConfig)</code> method was called.
Servlet filters have had their <code>void init(FilterConfig)</code> method called.
</li>
<li>
Servlet context listeners have had their <code>void contextInitialized(ServletContextEvent)</code>
method was called.
method called.
</li>
</ul>
Expand Down Expand Up @@ -563,7 +563,7 @@ will be <code>namespace-acme</code>.
<h3>Routes indexes</h3>

<p>
Especially for writing plugins you may wont to change the default behaviour where the routes are evaluated one by one by its poisition
Especially for writing plugins you may want to change the default behaviour where the routes are evaluated one by one by its poisition
in <code>routes.groovy</code> file. Under normal circumstances the index equals the line number
of the route but can change this by assinging it in route definition:
</p>
Expand Down
2 changes: 1 addition & 1 deletion website/war/WEB-INF/pages/tutorial/plugins.gtpl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<h1>Simple plugin system</h1>

<p>
<b>Gaelyk</b> sports a plugin system which helps you modularize your applications
<b>Gaelyk</b> supports a plugin system which helps you modularize your applications
and enable you to share commonalities between <b>Gaelyk</b> applications.
</p>
<p>
Expand Down

0 comments on commit ae5adcb

Please sign in to comment.