<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Example</title><link>https://sourceforge.net/p/phppose/wiki/Example/</link><description>Recent changes to Example</description><atom:link href="https://sourceforge.net/p/phppose/wiki/Example/feed" rel="self"/><language>en</language><lastBuildDate>Tue, 01 Nov 2011 11:25:31 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/phppose/wiki/Example/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage Example modified by Jan-Age</title><link>https://sourceforge.net/p/phppose/wiki/Example/</link><description>&lt;pre&gt;--- v6 
+++ v7 
@@ -2,27 +2,29 @@
 ===
 
 Define the variables:
-
-~~~~~~~~~~
+------
+~~~~~~~~~~
 $oPoseDataObject = new pose_dataobject();
 $oPoseDataObject-&gt;setName('do_user');
 $oPoseDataObject-&gt;addVariable('iUserId');
 $oPoseDataObject-&gt;addVariable('iStatusId');
 $oPoseDataObject-&gt;addVariable('sName');
 $oPoseDataObject-&gt;addVariable('sEmail');
 $oPoseDataObject-&gt;addVariable('sPassword');
 $oPoseDataObject-&gt;addVariable('aGroups');
 ~~~~~~~~~~
 
+
 Generate the data-object:
-
+------
 ~~~~~~~~~~
 $oPoseHandler = new pose_handler();
 echo $oPoseHandler-&gt;createSkeleton($oPoseDataObject);
 ~~~~~~~~~~
 
+
 Result:
-
+------
 ~~~~~~~~~~
 /**
  * @pose_blueprint a:2:{s:4:"name";s:7:"do_user";s:4:"vars";a:6:{i:0;s:7:"iUserId";i:1;s:9:"iStatusId";i:2;s:5:"sName";i:3;s:6:"sEmail";i:4;s:9:"sPassword";i:5;s:7:"aGroups";}}
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jan-Age</dc:creator><pubDate>Tue, 01 Nov 2011 11:25:31 -0000</pubDate><guid>https://sourceforge.net659bbcd4539faac6f416f7b3ed95334fe2ddc4de</guid></item><item><title>WikiPage Example modified by Jan-Age</title><link>https://sourceforge.net/p/phppose/wiki/Example/</link><description>&lt;pre&gt;--- v5 
+++ v6 
@@ -15,147 +15,150 @@
 ~~~~~~~~~~
 
 Generate the data-object:
-~~~~~~~~~~
+
+~~~~~~~~~~
 $oPoseHandler = new pose_handler();
 echo $oPoseHandler-&gt;createSkeleton($oPoseDataObject);
 ~~~~~~~~~~
 
 Result:
+
 ~~~~~~~~~~
 /**
  * @pose_blueprint a:2:{s:4:"name";s:7:"do_user";s:4:"vars";a:6:{i:0;s:7:"iUserId";i:1;s:9:"iStatusId";i:2;s:5:"sName";i:3;s:6:"sEmail";i:4;s:9:"sPassword";i:5;s:7:"aGroups";}}
  */
 final class do_user {
 
 	/**
 	 * @var integer
 	 */
 	protected $iUserId;
 
 
 	/**
 	 * @var integer
 	 */
 	protected $iStatusId;
 
 
 	/**
 	 * @var string
 	 */
 	protected $sName;
 
 
 	/**
 	 * @var string
 	 */
 	protected $sEmail;
 
 
 	/**
 	 * @var string
 	 */
 	protected $sPassword;
 
 
 	/**
 	 * @var array
 	 */
 	protected $aGroups;
 
 	/**
 	 * @return integer $iUserId
 	 */
 	public function getUserId()
 	{
 		return $this-&gt;iUserId;
 	}
 
 	/**
 	 * @return integer $iStatusId
 	 */
 	public function getStatusId()
 	{
 		return $this-&gt;iStatusId;
 	}
 
 	/**
 	 * @return string $sName
 	 */
 	public function getName()
 	{
 		return $this-&gt;sName;
 	}
 
 	/**
 	 * @return string $sEmail
 	 */
 	public function getEmail()
 	{
 		return $this-&gt;sEmail;
 	}
 
 	/**
 	 * @return string $sPassword
 	 */
 	public function getPassword()
 	{
 		return $this-&gt;sPassword;
 	}
 
 	/**
 	 * @return array $aGroups
 	 */
 	public function getGroups()
 	{
 		return $this-&gt;aGroups;
 	}
 	/**
 	 * @param integer $piUserId
 	 */
 	public function setUserId( $piUserId )
 	{
 		$this-&gt;iUserId = $piUserId;
 	}
 
 	/**
 	 * @param integer $piStatusId
 	 */
 	public function setStatusId( $piStatusId )
 	{
 		$this-&gt;iStatusId = $piStatusId;
 	}
 
 	/**
 	 * @param string $psName
 	 */
 	public function setName( $psName )
 	{
 		$this-&gt;sName = $psName;
 	}
 
 	/**
 	 * @param string $psEmail
 	 */
 	public function setEmail( $psEmail )
 	{
 		$this-&gt;sEmail = $psEmail;
 	}
 
 	/**
 	 * @param string $psPassword
 	 */
 	public function setPassword( $psPassword )
 	{
 		$this-&gt;sPassword = $psPassword;
 	}
 
 	/**
 	 * @param array $paGroups
 	 */
 	public function setGroups( $paGroups )
 	{
 		$this-&gt;aGroups = $paGroups;
 	}
 
 }
 ~~~~~~~~~~
+
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jan-Age</dc:creator><pubDate>Tue, 01 Nov 2011 11:15:09 -0000</pubDate><guid>https://sourceforge.nete2894b720e2563784999a1b66dd317cb137eb6e1</guid></item><item><title>WikiPage Example modified by Jan-Age</title><link>https://sourceforge.net/p/phppose/wiki/Example/</link><description>&lt;pre&gt;--- v4 
+++ v5 
@@ -3,159 +3,159 @@
 
 Define the variables:
 
-&lt;pre&gt;
+~~~~~~~~~~
 $oPoseDataObject = new pose_dataobject();
 $oPoseDataObject-&gt;setName('do_user');
 $oPoseDataObject-&gt;addVariable('iUserId');
 $oPoseDataObject-&gt;addVariable('iStatusId');
 $oPoseDataObject-&gt;addVariable('sName');
 $oPoseDataObject-&gt;addVariable('sEmail');
 $oPoseDataObject-&gt;addVariable('sPassword');
 $oPoseDataObject-&gt;addVariable('aGroups');
-&lt;/pre&gt;
+~~~~~~~~~~
 
 Generate the data-object:
-&lt;code&gt;
+~~~~~~~~~~
 $oPoseHandler = new pose_handler();
 echo $oPoseHandler-&gt;createSkeleton($oPoseDataObject);
-&lt;/code&gt;
+~~~~~~~~~~
 
 Result:
-&lt;code&gt;
+~~~~~~~~~~
 /**
  * @pose_blueprint a:2:{s:4:"name";s:7:"do_user";s:4:"vars";a:6:{i:0;s:7:"iUserId";i:1;s:9:"iStatusId";i:2;s:5:"sName";i:3;s:6:"sEmail";i:4;s:9:"sPassword";i:5;s:7:"aGroups";}}
  */
 final class do_user {
 
 	/**
 	 * @var integer
 	 */
 	protected $iUserId;
 
 
 	/**
 	 * @var integer
 	 */
 	protected $iStatusId;
 
 
 	/**
 	 * @var string
 	 */
 	protected $sName;
 
 
 	/**
 	 * @var string
 	 */
 	protected $sEmail;
 
 
 	/**
 	 * @var string
 	 */
 	protected $sPassword;
 
 
 	/**
 	 * @var array
 	 */
 	protected $aGroups;
 
 	/**
 	 * @return integer $iUserId
 	 */
 	public function getUserId()
 	{
 		return $this-&gt;iUserId;
 	}
 
 	/**
 	 * @return integer $iStatusId
 	 */
 	public function getStatusId()
 	{
 		return $this-&gt;iStatusId;
 	}
 
 	/**
 	 * @return string $sName
 	 */
 	public function getName()
 	{
 		return $this-&gt;sName;
 	}
 
 	/**
 	 * @return string $sEmail
 	 */
 	public function getEmail()
 	{
 		return $this-&gt;sEmail;
 	}
 
 	/**
 	 * @return string $sPassword
 	 */
 	public function getPassword()
 	{
 		return $this-&gt;sPassword;
 	}
 
 	/**
 	 * @return array $aGroups
 	 */
 	public function getGroups()
 	{
 		return $this-&gt;aGroups;
 	}
 	/**
 	 * @param integer $piUserId
 	 */
 	public function setUserId( $piUserId )
 	{
 		$this-&gt;iUserId = $piUserId;
 	}
 
 	/**
 	 * @param integer $piStatusId
 	 */
 	public function setStatusId( $piStatusId )
 	{
 		$this-&gt;iStatusId = $piStatusId;
 	}
 
 	/**
 	 * @param string $psName
 	 */
 	public function setName( $psName )
 	{
 		$this-&gt;sName = $psName;
 	}
 
 	/**
 	 * @param string $psEmail
 	 */
 	public function setEmail( $psEmail )
 	{
 		$this-&gt;sEmail = $psEmail;
 	}
 
 	/**
 	 * @param string $psPassword
 	 */
 	public function setPassword( $psPassword )
 	{
 		$this-&gt;sPassword = $psPassword;
 	}
 
 	/**
 	 * @param array $paGroups
 	 */
 	public function setGroups( $paGroups )
 	{
 		$this-&gt;aGroups = $paGroups;
 	}
 
 }
-&lt;/code&gt;
+~~~~~~~~~~
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jan-Age</dc:creator><pubDate>Tue, 01 Nov 2011 11:14:40 -0000</pubDate><guid>https://sourceforge.net4f7c0cfe67931f6f7b8e8acfb45efef89aa03fc2</guid></item><item><title>WikiPage Example modified by Jan-Age Laroo</title><link>https://sourceforge.net/p/phppose/wiki/Example/</link><description>&lt;pre&gt;--- v3 
+++ v4 
@@ -1,13 +1,5 @@
-Welcome to POSE's wiki!
+Example
 ===
-
-What does POSE mean?
----
-PHP Object Skeleton Ease
-
-How does it work?
-----
-Example:
 
 Define the variables:
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jan-Age Laroo</dc:creator><pubDate>Tue, 25 Oct 2011 23:51:12 -0000</pubDate><guid>https://sourceforge.net901b18a7f0c504f0604ab087b504287828bf4a35</guid></item><item><title>WikiPage Home modified by Jan-Age Laroo</title><link>https://sourceforge.net/p/phppose/wiki/Home/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -10,30 +10,26 @@
 Example:
 
 Define the variables:
-&lt;code&gt;
-
+
+&lt;pre&gt;
 $oPoseDataObject = new pose_dataobject();
 $oPoseDataObject-&gt;setName('do_user');
 $oPoseDataObject-&gt;addVariable('iUserId');
 $oPoseDataObject-&gt;addVariable('iStatusId');
 $oPoseDataObject-&gt;addVariable('sName');
 $oPoseDataObject-&gt;addVariable('sEmail');
 $oPoseDataObject-&gt;addVariable('sPassword');
 $oPoseDataObject-&gt;addVariable('aGroups');
-
-&lt;/code&gt;
+&lt;/pre&gt;
 
 Generate the data-object:
 &lt;code&gt;
-
 $oPoseHandler = new pose_handler();
-echo $oPoseHandler-&gt;createSkeleton($oPoseHandler);
-
+echo $oPoseHandler-&gt;createSkeleton($oPoseDataObject);
 &lt;/code&gt;
 
 Result:
 &lt;code&gt;
-
 /**
  * @pose_blueprint a:2:{s:4:"name";s:7:"do_user";s:4:"vars";a:6:{i:0;s:7:"iUserId";i:1;s:9:"iStatusId";i:2;s:5:"sName";i:3;s:6:"sEmail";i:4;s:9:"sPassword";i:5;s:7:"aGroups";}}
  */
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jan-Age Laroo</dc:creator><pubDate>Tue, 25 Oct 2011 21:39:07 -0000</pubDate><guid>https://sourceforge.nete9f1501bb214b298d2bfaeaaab5d1ca6a1728e04</guid></item><item><title>WikiPage Home modified by Jan-Age Laroo</title><link>https://sourceforge.net/p/phppose/wiki/Home/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -1,5 +1,173 @@
-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/phppose/wiki/markdown_syntax/) syntax.
+Welcome to POSE's wiki!
+===
+
+What does POSE mean?
+---
+PHP Object Skeleton Ease
+
+How does it work?
+----
+Example:
+
+Define the variables:
+&lt;code&gt;
+
+$oPoseDataObject = new pose_dataobject();
+$oPoseDataObject-&gt;setName('do_user');
+$oPoseDataObject-&gt;addVariable('iUserId');
+$oPoseDataObject-&gt;addVariable('iStatusId');
+$oPoseDataObject-&gt;addVariable('sName');
+$oPoseDataObject-&gt;addVariable('sEmail');
+$oPoseDataObject-&gt;addVariable('sPassword');
+$oPoseDataObject-&gt;addVariable('aGroups');
+
+&lt;/code&gt;
+
+Generate the data-object:
+&lt;code&gt;
+
+$oPoseHandler = new pose_handler();
+echo $oPoseHandler-&gt;createSkeleton($oPoseHandler);
+
+&lt;/code&gt;
+
+Result:
+&lt;code&gt;
+
+/**
+ * @pose_blueprint a:2:{s:4:"name";s:7:"do_user";s:4:"vars";a:6:{i:0;s:7:"iUserId";i:1;s:9:"iStatusId";i:2;s:5:"sName";i:3;s:6:"sEmail";i:4;s:9:"sPassword";i:5;s:7:"aGroups";}}
+ */
+final class do_user {
+
+	/**
+	 * @var integer
+	 */
+	protected $iUserId;
+
+
+	/**
+	 * @var integer
+	 */
+	protected $iStatusId;
+
+
+	/**
+	 * @var string
+	 */
+	protected $sName;
+
+
+	/**
+	 * @var string
+	 */
+	protected $sEmail;
+
+
+	/**
+	 * @var string
+	 */
+	protected $sPassword;
+
+
+	/**
+	 * @var array
+	 */
+	protected $aGroups;
+
+	/**
+	 * @return integer $iUserId
+	 */
+	public function getUserId()
+	{
+		return $this-&gt;iUserId;
+	}
+
+	/**
+	 * @return integer $iStatusId
+	 */
+	public function getStatusId()
+	{
+		return $this-&gt;iStatusId;
+	}
+
+	/**
+	 * @return string $sName
+	 */
+	public function getName()
+	{
+		return $this-&gt;sName;
+	}
+
+	/**
+	 * @return string $sEmail
+	 */
+	public function getEmail()
+	{
+		return $this-&gt;sEmail;
+	}
+
+	/**
+	 * @return string $sPassword
+	 */
+	public function getPassword()
+	{
+		return $this-&gt;sPassword;
+	}
+
+	/**
+	 * @return array $aGroups
+	 */
+	public function getGroups()
+	{
+		return $this-&gt;aGroups;
+	}
+	/**
+	 * @param integer $piUserId
+	 */
+	public function setUserId( $piUserId )
+	{
+		$this-&gt;iUserId = $piUserId;
+	}
+
+	/**
+	 * @param integer $piStatusId
+	 */
+	public function setStatusId( $piStatusId )
+	{
+		$this-&gt;iStatusId = $piStatusId;
+	}
+
+	/**
+	 * @param string $psName
+	 */
+	public function setName( $psName )
+	{
+		$this-&gt;sName = $psName;
+	}
+
+	/**
+	 * @param string $psEmail
+	 */
+	public function setEmail( $psEmail )
+	{
+		$this-&gt;sEmail = $psEmail;
+	}
+
+	/**
+	 * @param string $psPassword
+	 */
+	public function setPassword( $psPassword )
+	{
+		$this-&gt;sPassword = $psPassword;
+	}
+
+	/**
+	 * @param array $paGroups
+	 */
+	public function setGroups( $paGroups )
+	{
+		$this-&gt;aGroups = $paGroups;
+	}
+
+}
+&lt;/code&gt;
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jan-Age Laroo</dc:creator><pubDate>Tue, 25 Oct 2011 21:30:03 -0000</pubDate><guid>https://sourceforge.net3e86c0fa7457769a2c35649afcb054d1c7356e52</guid></item><item><title>WikiPage Home modified by Jan-Age Laroo</title><link>https://sourceforge.net/p/phppose/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/phppose/wiki/markdown_syntax/) syntax.
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jan-Age Laroo</dc:creator><pubDate>Tue, 25 Oct 2011 20:39:13 -0000</pubDate><guid>https://sourceforge.net1f443359fc9be2abf57c1d78fa1bc65aa8545e6c</guid></item></channel></rss>