Skip to content

Commit

Permalink
prepared first release
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan Schmidt committed Oct 28, 2004
1 parent c522ea3 commit d76c371
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 17 deletions.
11 changes: 5 additions & 6 deletions package.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* current version
*/
$version = '0.3';
$version = '0.3.0';

/**
* current state
Expand All @@ -29,17 +29,16 @@
* release notes
*/
$notes = <<<EOT
- did some cleanup and improved error handling in the server
- added functions that can be used with session_set_save_handler()
- added get_all and put_all commands
Initial PEAR release.
EOT;

/**
* package description
*/
$description = <<<EOT
HTTP_SessionServer is a daemon that supports a simple protocol to store session data.
This enables you to access the data from different servers, applications and programming languages.
HTTP_SessionServer is a simple PHP based daemon that helps you maintaining state between physically different hosts.
HTTP_SessionServer implements a very simple protocol to store and retrieve data on the server. The storage backend is driver based, currently only a storage for the filesystem has been implemented, but you may easily change this.
HTTP_SessionServer comes with a matching client implementation using Net_Socket as well as a session save handler.
EOT;

$package = new PEAR_PackageFileManager();
Expand Down
26 changes: 15 additions & 11 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
<package version="1.0">
<name>HTTP_SessionServer</name>
<summary>Daemon to store session data that can be accessed via a simple protocol.</summary>
<description>HTTP_SessionServer is a daemon that supports a simple protocol to store session data.
This enables you to access the data from different servers, applications and programming languages.</description>
<description>HTTP_SessionServer is a simple PHP based daemon that helps you maintaining state between physically different hosts.
HTTP_SessionServer implements a very simple protocol to store and retrieve data on the server. The storage backend is driver based, currently only a storage for the filesystem has been implemented, but you may easily change this.
HTTP_SessionServer comes with a matching client implementation using Net_Socket as well as a session save handler.</description>
<maintainers>
<maintainer>
<user>schst</user>
Expand All @@ -14,13 +15,11 @@ This enables you to access the data from different servers, applications and pro
</maintainer>
</maintainers>
<release>
<version>0.3</version>
<date>2004-10-15</date>
<version>0.3.0</version>
<date>2004-10-28</date>
<license>PHP License</license>
<state>alpha</state>
<notes>- did some cleanup and improved error handling in the server
- added functions that can be used with session_set_save_handler()
- added get_all and put_all commands</notes>
<notes>Initial PEAR release.</notes>
<deps>
<dep type="pkg" rel="has" optional="no">PEAR</dep>
<dep type="php" rel="ge" version="4.3.0" optional="no"/>
Expand Down Expand Up @@ -60,12 +59,17 @@ This enables you to access the data from different servers, applications and pro
</release>
<release>
<version>0.3</version>
<date>2004-10-15</date>
<date>2004-10-28</date>
<license>PHP License</license>
<state>alpha</state>
<notes>- did some cleanup and improved error handling in the server
- added functions that can be used with session_set_save_handler()
- added get_all and put_all commands</notes>
<notes>Initial PEAR release.</notes>
</release>
<release>
<version>0.3.0</version>
<date>2004-10-28</date>
<license>PHP License</license>
<state>alpha</state>
<notes>Initial PEAR release.</notes>
</release>
</changelog>
</package>

0 comments on commit d76c371

Please sign in to comment.