<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Overview</title><link>https://sourceforge.net/p/gameoflife-js/wiki/Overview/</link><description>Recent changes to Overview</description><atom:link href="https://sourceforge.net/p/gameoflife-js/wiki/Overview/feed" rel="self"/><language>en</language><lastBuildDate>Wed, 07 Dec 2011 17:11:45 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/gameoflife-js/wiki/Overview/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage Overview modified by Roland S</title><link>https://sourceforge.net/p/gameoflife-js/wiki/Overview/</link><description>&lt;pre&gt;&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roland S</dc:creator><pubDate>Wed, 07 Dec 2011 17:11:45 -0000</pubDate><guid>https://sourceforge.net540e1ccb617321d3f2fa8533d6d5e9110f9955e6</guid></item><item><title>WikiPage Home modified by Roland S</title><link>https://sourceforge.net/p/gameoflife-js/wiki/Home/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -2,7 +2,7 @@
 
 Game of Life JS is a jQuery Plugin that can be used on any page just by adding a small Javascript Snippet.
 
-The project is coded among the Coding Conventions and Extension principles of jQuery ([Plugin Authoring]&lt;http://docs.jquery.com/Plugins/Authoring&gt;).
+The project is coded among the Coding Conventions and Extension principles of jQuery ([Plugin Authoring](http://docs.jquery.com/Plugins/Authoring)).
 
 The developers are happy about help and critics on their work. Feel free to help improving the project.
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roland S</dc:creator><pubDate>Wed, 07 Dec 2011 17:11:31 -0000</pubDate><guid>https://sourceforge.netf2f3c9f8ee930e1e2ef3d7fc10b75befbc17549d</guid></item><item><title>WikiPage Home modified by Roland S</title><link>https://sourceforge.net/p/gameoflife-js/wiki/Home/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -1,5 +1,66 @@
-Welcome to your wiki!
-
-This is the default page, edit it as you see fit. To add a page simply reference it within brackets, e.g.: [SamplePage].
-
-The wiki uses [Markdown](/p/gameoflife-js/wiki/markdown_syntax/) syntax.
+# General Information #
+
+Game of Life JS is a jQuery Plugin that can be used on any page just by adding a small Javascript Snippet.
+
+The project is coded among the Coding Conventions and Extension principles of jQuery ([Plugin Authoring]&lt;http://docs.jquery.com/Plugins/Authoring&gt;).
+
+The developers are happy about help and critics on their work. Feel free to help improving the project.
+
+# Usage #
+
+## Needed Libraries ##
+
+* (Mandatory) [jQuery](http://jquery.com): min¹ v1.6.2, [Download](http://code.jquery.com/jquery-1.7.1.min.js)
+* (Optional) [OpenAjax Hub 2.0](http://www.openajax.org/member/wiki/OpenAjax_Hub_2.0_Specification): v2.0, [Download](https://sourceforge.net/projects/openajaxallianc/files/latest/download)
+    *  Sends an Event on Game activation and deactivation. Used on our site, to prevent navigation on the blocks used for the game. Otherwise the user would not be able to de-/select blocks.
+
+## Example ##
+
+### Header includes ###
+~~~~~~
+&lt;head&gt;
+    ....
+    &lt;script type="text/javascript" src="js/OpenAjaxUnmanagedHub.js" &gt;&lt;/script&gt;
+    &lt;script type="text/javascript" src="js/jquery-1.6.2.js"&gt;&lt;/script&gt;
+    &lt;script type="text/javascript" src="js/gol.js"&gt;&lt;/script&gt;
+    ...
+&lt;/head&gt;
+~~~~~~
+The Javascript files must be located in a directory name js that is located in the same directory as the html file.
+
+
+### Javascript ###
+~~~~~~
+$('#logo').gameOfLife({
+    selectorForElements: '.logo_item',
+    selectorForInitDeadClass: '.logo_item_back',
+    selectorForInitAliveClass: '.logo_item_front',
+    menuId: 'golMenu'
+});
+~~~~~~
+Some Parameters are passed to the plugin. These are explained in the Parameters section.
+
+### HTML ###
+~~~~~~
+&lt;div id="logo" class="logo"&gt;
+        &lt;div class="logo_item logo_item_back"&gt; &lt;/div&gt;
+        &lt;div class="logo_item logo_item_back"&gt; &lt;/div&gt;
+        &lt;div class="logo_item logo_item_back"&gt; &lt;/div&gt;
+        &lt;div class="logo_item logo_item_back"&gt; &lt;/div&gt;
+        &lt;div class="logo_item logo_item_back"&gt; &lt;/div&gt;&lt;br style="clear: left"/&gt;
+        &lt;div class="logo_item logo_item_back"&gt; &lt;/div&gt;
+        &lt;div class="logo_item logo_item_back"&gt; &lt;/div&gt;
+        &lt;div class="logo_item logo_item_back"&gt; &lt;/div&gt;
+        &lt;div class="logo_item logo_item_back"&gt; &lt;/div&gt;
+        &lt;div class="logo_item logo_item_back"&gt; &lt;/div&gt;&lt;br style="clear: left"/&gt;
+        &lt;div class="logo_item logo_item_back"&gt; &lt;/div&gt;
+        &lt;div class="logo_item logo_item_back"&gt; &lt;/div&gt;
+        &lt;div class="logo_item logo_item_back"&gt; &lt;/div&gt;
+        &lt;div class="logo_item logo_item_back"&gt; &lt;/div&gt;
+        &lt;div class="logo_item logo_item_back"&gt; &lt;/div&gt;
+&lt;/div&gt;
+&lt;div id="golMenu"&gt; &lt;/div&gt;
+~~~~~~
+The boxes for the game are displayed and additionally an element for the menu.
+
+¹ Could work with older Version but not tested. [Inform one of the developers](https://sourceforge.net/p/gameoflife-js/home/Home/) or [write a Ticket](https://sourceforge.net/p/gameoflife-js/tickets/), if you have new information
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roland S</dc:creator><pubDate>Wed, 07 Dec 2011 16:41:54 -0000</pubDate><guid>https://sourceforge.nete6d0fd65c98daf417c384bba992a737a9e99775a</guid></item><item><title>WikiPage Home modified by Roland S</title><link>https://sourceforge.net/p/gameoflife-js/wiki/Home/</link><description>Welcome to your wiki!

This is the default page, edit it as you see fit. To add a page simply reference it within brackets, e.g.: [SamplePage].

The wiki uses [Markdown](/p/gameoflife-js/wiki/markdown_syntax/) syntax.
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roland S</dc:creator><pubDate>Wed, 07 Dec 2011 15:48:54 -0000</pubDate><guid>https://sourceforge.netba63ae52572c748863c5a937279b9878bb2721d7</guid></item></channel></rss>