Skip to content
This repository has been archived by the owner on Jan 4, 2018. It is now read-only.

Commit

Permalink
Re-ran const_gen.sh to get libgearman v0.6. I had a bogus editor setting
Browse files Browse the repository at this point in the history
that was sticking in spaces where some tabs should have been. Fixed small
bug in the examples. Updated README and other files
  • Loading branch information
jluedke committed May 20, 2009
1 parent 96c2499 commit 79df470
Show file tree
Hide file tree
Showing 6 changed files with 504 additions and 462 deletions.
2 changes: 2 additions & 0 deletions CREDITS
@@ -1,2 +1,4 @@
Authors: James M. Luedke <contact@jluedke.com>
Eric Day <eday@oddments.org>

Big Thanks: Pierre Joye (http://blog.thepimp.net/)
8 changes: 8 additions & 0 deletions EXPERIMENTAL
@@ -0,0 +1,8 @@
THE gearman EXTENSION IS EXPERIMENTAL!

This extension is experimental, its functions/methods may change or be
remove from the extension all together. Use it at your own risk

Please report bugs.

YOU HAVE BEEN WARNED!
8 changes: 5 additions & 3 deletions README
Expand Up @@ -5,8 +5,10 @@ applications.

For more information about Gearman, see:

http://www.gearman.org/

Requirements
* libgearman v0.6
http://www.gearman.org/
The Gearman PHP Extension requires the Gearman C server and library package
to be installed. You can download the latest from:

Expand Down Expand Up @@ -58,5 +60,5 @@ scripts about the status and then a final result.


Have fun!
-James
contact@jluedke.com

-James <contact@jluedke.com>
4 changes: 2 additions & 2 deletions examples/reverse_client.php
Expand Up @@ -40,8 +40,8 @@
case GEARMAN_SUCCESS:
break;
default:
echo "RET: " . $gmclient->reutrnCode() . "\n";
break;
echo "RET: " . $gmclient->returnCode() . "\n";
exit;
}
}
while($gmclient->returnCode() != GEARMAN_SUCCESS);
Expand Down
13 changes: 7 additions & 6 deletions package.xml
Expand Up @@ -21,10 +21,10 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>eday@oddments.org</email>
<active>yes</active>
</developer>
<date>2009-05-18</date>
<date>2009-05-20</date>
<version>
<release>0.3.1</release>
<api>0.3.1</api>
<release>0.3</release>
<api>0.3</api>
</version>
<stability>
<release>beta</release>
Expand All @@ -38,6 +38,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
- Added $obj->returnCode() to all objects
- Fixed compile issues with PHP 5.1 and 5.3
- Added in ARG_INFO macros to make reflection work
- Updated constants to
</notes>
<contents>
<dir name="/">
Expand All @@ -50,7 +51,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
<file role='doc' name='test_worker.php'/>
<file role='src' name='config.m4'/>
<file role='src' name='php_gearman.c'/>
<file role='src' name='php_gearman.c'/>
<file role='src' name='php_gearman.h'/>
<file role='test' name='gearman_001.phpt'/>
<dir name="examples">
<file role='doc' name='image_thumbnail_client_bg.php'/>
Expand Down Expand Up @@ -82,8 +83,8 @@ http://pear.php.net/dtd/package-2.0.xsd">
<changelog>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.3.1</release><api>0.3.1</api></version>
<date>2009-05-18</date>
<version><release>0.3</release><api>0.3</api></version>
<date>2009-05-20</date>
<notes>
- Initial PECL import
- Reworked client/worker/task/job objects.
Expand Down

0 comments on commit 79df470

Please sign in to comment.