[PHP-DEV] karma request for ext/domxml (fwd)

2002-01-17 Thread Christian Stocker

Hi

Posted this to [EMAIL PROTECTED] and got no reply, so here is it again (and i
hope you won't get this twice, since my first attempt a few minutes ago
went to the wrong adress, maybe... it's late :) ):

I'd like to help out with the domxml developement and ask therefor for
karma .)

We use domxml heavily at our office and encounter from time to time bugs
(already submitted some), so i'd like to get more involved into the
developement of domxml and help to get rid of some of these
DOMXML_NOT_IMPLEMENTED() Macros. The libxml library has also some nice
features not yet prototyped and implemented in domxml.  Furthermore I have
a patch, which adds exslt-support for the xslt functions in domxml and
some other little stuff. see http://php.chregu.tv/domxml.diff if you are
interested.

i already have a cvs-account for pear.

thanks and have a nice night :)

chregu



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Karma Request

2001-12-13 Thread Zak Greant

Hello Karma Granters,

Could I get karma to be able to commit to the PHP source? I have a 
bunch of minor maintenance tasks, like correcting prototypes, 
correcting outdated return values, adding additional regression tests, 
etc., that I would like to perform.

I have attached the first patch for review. Feedback and guidance are 
welcome! :)

--zak

Index: array.c
===
RCS file: /repository/php4/ext/standard/array.c,v
retrieving revision 1.148
diff -u -r1.148 array.c
--- array.c	11 Dec 2001 15:30:27 -	1.148
+++ array.c	13 Dec 2001 09:18:21 -
@@ -179,59 +179,45 @@
 	return array_key_compare(a, b TSRMLS_CC) * -1;
 }
 
-/* {{{ proto int krsort(array array_arg [, int sort_flags])
-   Sort an array reverse by key */
+/* {{{ proto bool krsort(array array_arg [, int sort_flags])
+   Sort an array by key value in reverse order */
 PHP_FUNCTION(krsort)
 {
-	zval **array, **sort_type;
-	int sort_type_val = SORT_REGULAR;
+	zval *array;
+	long sort_type = SORT_REGULAR;
 	HashTable *target_hash;
 
-	if (ZEND_NUM_ARGS()  1 || ZEND_NUM_ARGS()  2 ||
-		zend_get_parameters_ex(ZEND_NUM_ARGS(), array, sort_type) == FAILURE) {
-		WRONG_PARAM_COUNT;
-	}
-	target_hash = HASH_OF(*array);
-	if (!target_hash) {
-		php_error(E_WARNING, Wrong datatype in krsort() call);
-		return;
-	}
-	if (ZEND_NUM_ARGS() == 2) {
-		convert_to_long_ex(sort_type);
-		sort_type_val = Z_LVAL_PP(sort_type);
+	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, a|l, array, sort_type) == FAILURE) {
+		RETURN_FALSE;
 	}
-	set_compare_func(sort_type_val TSRMLS_CC);
+	
+	target_hash = HASH_OF(array);
+	set_compare_func(sort_type TSRMLS_CC);
+	
 	if (zend_hash_sort(target_hash, zend_qsort, array_reverse_key_compare, 0 TSRMLS_CC) == FAILURE) {
-		return;
+		RETURN_FALSE;
 	}
 	RETURN_TRUE;
 }
 /* }}} */
 
-/* {{{ proto int ksort(array array_arg [, int sort_flags])
+/* {{{ proto bool ksort(array array_arg [, int sort_flags])
Sort an array by key */
 PHP_FUNCTION(ksort)
 {
-	zval **array, **sort_type;
-	int sort_type_val = SORT_REGULAR;
+	zval *array;
+	long sort_type = SORT_REGULAR;
 	HashTable *target_hash;
 
-	if (ZEND_NUM_ARGS()  1 || ZEND_NUM_ARGS()  2 ||
-		zend_get_parameters_ex(ZEND_NUM_ARGS(), array, sort_type) == FAILURE) {
-		WRONG_PARAM_COUNT;
-	}
-	target_hash = HASH_OF(*array);
-	if (!target_hash) {
-		php_error(E_WARNING, Wrong datatype in ksort() call);
-		return;
-	}
-	if (ZEND_NUM_ARGS() == 2) {
-		convert_to_long_ex(sort_type);
-		sort_type_val = Z_LVAL_PP(sort_type);
+	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, a|l, array, sort_type) == FAILURE) {
+		RETURN_FALSE;
 	}
-	set_compare_func(sort_type_val TSRMLS_CC);
+
+	target_hash = HASH_OF(array);
+	set_compare_func(sort_type TSRMLS_CC);
+	
 	if (zend_hash_sort(target_hash, zend_qsort, array_key_compare, 0 TSRMLS_CC) == FAILURE) {
-		return;
+		RETURN_FALSE;
 	}
 	RETURN_TRUE;
 }
@@ -402,57 +388,43 @@
 /* }}} */
 
 
-/* {{{ proto void asort(array array_arg [, int sort_flags])
+/* {{{ proto bool asort(array array_arg [, int sort_flags])
Sort an array and maintain index association */
 PHP_FUNCTION(asort)
 {
-	zval **array, **sort_type;
-	int sort_type_val = SORT_REGULAR;
+	zval *array;
+	long sort_type = SORT_REGULAR;
 	HashTable *target_hash;
 
-	if (ZEND_NUM_ARGS()  1 || ZEND_NUM_ARGS()  2 ||
-		zend_get_parameters_ex(ZEND_NUM_ARGS(), array, sort_type) == FAILURE) {
-		WRONG_PARAM_COUNT;
-	}
-	target_hash = HASH_OF(*array);
-	if (!target_hash) {
-		php_error(E_WARNING, Wrong datatype in asort() call);
-		return;
-	}
-	if (ZEND_NUM_ARGS() == 2) {
-		convert_to_long_ex(sort_type);
-		sort_type_val = Z_LVAL_PP(sort_type);
+	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, a|l, array, sort_type) == FAILURE) {
+		RETURN_FALSE;
 	}
-	set_compare_func(sort_type_val TSRMLS_CC);
+	
+	target_hash = HASH_OF(array);
+	set_compare_func(sort_type TSRMLS_CC);
+	
 	if (zend_hash_sort(target_hash, zend_qsort, array_data_compare, 0 TSRMLS_CC) == FAILURE) {
-		return;
+		RETURN_FALSE;
 	}
 	RETURN_TRUE;
 }
 /* }}} */
 
-/* {{{ proto void arsort(array array_arg [, int sort_flags])
+/* {{{ proto bool arsort(array array_arg [, int sort_flags])
Sort an array in reverse order and maintain index association */
 PHP_FUNCTION(arsort)
 {
-	zval **array, **sort_type;
-	int sort_type_val = SORT_REGULAR;
+	zval *array;
+	long sort_type = SORT_REGULAR;
 	HashTable *target_hash;
 
-	if (ZEND_NUM_ARGS()  1 || ZEND_NUM_ARGS()  2 ||
-		zend_get_parameters_ex(ZEND_NUM_ARGS(), array, sort_type) == FAILURE) {
-		WRONG_PARAM_COUNT;
-	}
-	target_hash = HASH_OF(*array);
-	if (!target_hash) {
-		php_error(E_WARNING, Wrong datatype in arsort() call);
+	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, a|l, array, sort_type) == FAILURE) {
 		RETURN_FALSE;
 	}
-	if (ZEND_NUM_ARGS() == 2) {
-		convert_to_long_ex(sort_type);
-		sort_type_val = Z_LVAL_PP(sort_type);
-	}
-	set_compare_func(sort_type_val TSRMLS_CC);
+	
+	target_hash = 

[PHP-DEV] Karma Request

2001-11-20 Thread Sean R. Bright

I think I am out of karma or something, I tried to commit a fix and
received the following error:

cvs [server aborted]: commit requires write access to the
repository

However I received no error on cvs login

My username is elixer.

Thanks,
--
===
Sean Bright
[EMAIL PROTECTED] / [EMAIL PROTECTED] / http://www.seanbright.com/
=== 

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Karma request

2001-11-15 Thread Jan Lehnardt

Hi,
can someone extend my karma to php4/pear. I'd like to help out in this
area as well.

Jan
-- 
Q: Thank Jan? A: http://geschenke.an.dasmoped.net

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Karma request

2001-11-15 Thread Jan Lehnardt

Hi,
On Thu, 15 Nov 2001 18:54:40 +0100
Jan Lehnardt [EMAIL PROTECTED] wrote:

 Hi,
 can someone extend my karma to php4/pear. I'd like to help out in this
 area as well.
 
user id is jan, sorry.

Jan
-- 
Q: Thank Jan? A: http://geschenke.an.dasmoped.net

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] karma request - phpweb

2001-09-14 Thread James Moore



 Hi!  I request karma for module phpweb.  Am working with jmcastagnetto on
 user notes where Voting and User Moderation will be implemented.  And
 will most likely find other things to do, albeit nothing major (yet?).

Colin has already done this with the PHP-GTK Manual.

- James


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] karma request - phpweb

2001-09-14 Thread Philip Olson

  Hi!  I request karma for module phpweb.  Am working with jmcastagnetto on
  user notes where Voting and User Moderation will be implemented.  And
  will most likely find other things to do, albeit nothing major (yet?).
 
 Colin has already done this with the PHP-GTK Manual.

i've seen the voting, but not the 'user maintenance' system.  will email
colin and see how he's doing :)

philip

ref: http://marc.theaimsgroup.com/?l=phpdocm=99618446902193


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] karma request - phpweb

2001-09-13 Thread Philip Olson

Hi!  I request karma for module phpweb.  Am working with jmcastagnetto on
user notes where Voting and User Moderation will be implemented.  And
will most likely find other things to do, albeit nothing major (yet?).

Warm Regards,
Philip Olson

user: philip


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Karma Request

2001-09-13 Thread Jason Greene

Could someone grant me some docs Karma?

Thanks,
-Jason


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Karma request

2001-08-17 Thread Stig Sæther Bakken

[Marc Boeren [EMAIL PROTECTED]]
 I would like to add myself as maintainer of dbx to the EXTENSIONS file, but
 my karma is not sufficient to do this myself...
 So if somebody could do this for me, or upgrade my karma, that would be nice
 :)

Fixed.

 - Stig

-- 
  Stig Sæther Bakken [EMAIL PROTECTED]
  Fast Search  Transfer ASA, Trondheim, Norway

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Karma request

2001-08-16 Thread Marc Boeren


I would like to add myself as maintainer of dbx to the EXTENSIONS file, but
my karma is not sufficient to do this myself...
So if somebody could do this for me, or upgrade my karma, that would be nice
:)

Cheerio, Marc.



---
EXTENSION:   dbx
PRIMARY MAINTAINER:  Marc Boeren [EMAIL PROTECTED]
MAINTENANCE: Maintained
STATUS:  Working
SINCE:   4.0.6
COMMENT: DB abstraction for odbc, mysql, pgsql, mssql, fbsql

---

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Karma request

2001-06-30 Thread Joey Smith

*sg* Yes, I was in my anonymous tree. Sorry for the noise.

On Fri, 29 Jun 2001, Rasmus Lerdorf wrote the following to Joey Smith :

  Can I get karma in ext/sybase and ext/sybase_ct again?
 
 You do
 


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Karma request

2001-06-29 Thread Rasmus Lerdorf

 Can I get karma in ext/sybase and ext/sybase_ct again?

You do


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Karma request

2001-06-26 Thread Joey Smith

Can I get karma in ext/sybase and ext/sybase_ct again?


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Karma request for phpweb

2001-03-21 Thread Joao Prado Maia


Hello,

I just found a rather bad typo on the 'links.php' page and while trying to
fix it myself it showed up that I don't have enough karma. Can someone
pump my karma up a little bit ?

The username is 'jpm'.

Cheers,
Joao

--
Joo Prado Maia [EMAIL PROTECTED]
http://phpbrasil.com - php com um jeitinho brasileiro
--
Contribua com o projeto de traduo do manual online do PHP
http://phpbrasil.com/traducao.php
--


--
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Karma Request

2001-03-11 Thread Sebastian Bergmann

  Could someone give 

Thomas Fromm (tfromm) and
Thomas Weinert (subjective)

  the appropriate Karma for PEAR?

  Thanks,
Sebastian

-- 
 sebastian bergmann e-mail :  [EMAIL PROTECTED]
  homepage :  http://www.sebastian-bergmann.de
   make a gift : http://wishlist.sebastian-bergmann.de
 measure the usability of your web application - http://phpOpenTracker.de

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Karma Request for php-gtk

2001-02-25 Thread Jan Lehnardt

Hi,
I ([EMAIL PROTECTED]) want to help with the further development and
dokumentation.

Jan
--


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Karma Request for php-gtk

2001-02-25 Thread Egon Schmid (@work)

Jan Lehnardt wrote:

 I ([EMAIL PROTECTED]) want to help with the further development and
 dokumentation.

I think, you have enough karma for documentation. What are you
developing?

-Egon

-- 
SIX Offene Systeme GmbH   Stuttgart  -  Berlin 
Sielminger Strae 63   D-70771 Leinfelden-Echterdingen
Fon +49 711 9909164  Fax +49 711 9909199 http://www.six.de
Besuchen Sie uns auf der CeBIT 2001,  Halle 6,  Stand F62/4

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Karma Request for php-gtk

2001-02-25 Thread Jan Lehnardt

Hi,
 
 I think, you have enough karma for documentation. What are you
 developing?
 
Since there is a lot to do to reflect the whole functionallity of GTK+
in php-gtk I simply want to help. Additionally andrei and I decided to
provide simple text documentation, until the userbase has grown.

Jan
--


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Karma Request for php-gtk

2001-02-25 Thread Rasmus Lerdorf

done

On Sun, 25 Feb 2001, Jan Lehnardt wrote:

 Hi,
 I ([EMAIL PROTECTED]) want to help with the further development and
 dokumentation.

 Jan
 --


 --
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Karma request

2001-02-13 Thread Joey Smith

Can I get karma back in php3 and php4?


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] karma request

2001-02-02 Thread PHP development @echospace

 
somebody who can allocate karma, please, I need karma to write to the extension I 
maintain - pspell (php4/ext/pspell).

Thanks, Vlad


Finally! Real applications on the web!
Free email, contacts, and file storage.
http://www.echospace.com


--
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] karma request

2001-02-02 Thread PHP development @echospace

dumb me... forgot to tell who I am... CVS knows me as vlad ([EMAIL PROTECTED]).
Vlad

 




- Original Message -
From: "PHP development @echospace" 
To: [EMAIL PROTECTED]
Sent: Fri, 2 Feb 2001 15:44:46 -0800
Subject: [PHP-DEV] karma request


somebody who can allocate karma, please, I need karma to write to the extension I 
maintain - pspell (php4/ext/pspell).

Thanks, Vlad


Finally! Real applications on the web!
Free email, contacts, and file storage.
http://www.echospace.com


--
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


Finally! Real applications on the web!
Free email, contacts, and file storage.
http://www.echospace.com


--
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Karma request

2001-01-31 Thread Zak Greant

Anyone care to grant me enough karma to update qaweb? :)

--zak


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Karma request

2001-01-31 Thread Andrei Zmievski

Ok, you got it. Let me know if just you or the whole QA team needs
access to qaweb.

On Wed, 31 Jan 2001, Zak Greant wrote:
 Anyone care to grant me enough karma to update qaweb? :)
 
 --zak
 
 
 -- 
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 



-Andrei

"Someone clearly thinks that C is a garbage collected language"
 -- Morten Welinder

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Karma request

2001-01-31 Thread Zak Greant

James Moore and Torben for sure.

I have asked the QA team members (who already have CVS access) if they would
like access as well.

--zak

Andrei Zmievski wrote:
 Ok, you got it. Let me know if just you or the whole QA team needs
 access to qaweb.



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Karma request

2001-01-31 Thread Zak Greant

If we are adding everyone anyway then we should put in:
joey,sniper,torben

--zak

- Original Message -
From: "Andrei Zmievski" [EMAIL PROTECTED]
To: "Zak Greant" [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Wednesday, January 31, 2001 1:22 PM
Subject: Re: [PHP-DEV] Karma request


 On Wed, 31 Jan 2001, Zak Greant wrote:
  James Moore and Torben for sure.
 
  I have asked the QA team members (who already have CVS access) if they
would
  like access as well.

 Here's the list of people in current php_qa ACL list:

 jalal,zak,waldschrott,ultrapingo,lyric,jmoore,ronabop,sbergmann

 Who else should be added there? Or should we create separate qaweb ACL
 list?

 -Andrei

 The 3 great virtues of a programmer:
 Laziness, Impatience, and Hubris.
 --Larry Wall


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]