[PHP-DOC] #39081 [Opn-Csd]: Windows tips box, incorrect grammer

2006-10-07 Thread jsgoupil
 ID:   39081
 Updated by:   [EMAIL PROTECTED]
 Reported By:  emailfire at gmail dot com
-Status:   Open
+Status:   Closed
 Bug Type: Documentation problem
 Operating System: none
 PHP Version:  Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.


Previous Comments:


[2006-10-08 00:28:28] emailfire at gmail dot com

Description:

http://php.net/manual/en/function.setlocale.php

In the blue box explaining differences with Windows, there are 2
grammatical errors:

Microsoft's MSDNwebsite
=
Microsoft's MSDN website

AND

found at this Unicode website .
=
found at this Unicode website.






-- 
Edit this bug report at http://bugs.php.net/?id=39081edit=1


[PHP-DOC] #38295 [Opn-Csd]: Typo in an example on french documentation on exceptions

2006-08-02 Thread jsgoupil
 ID:  38295
 Updated by:  [EMAIL PROTECTED]
 Reported By: Eric dot Deplagne at nerim dot net
-Status:  Open
+Status:  Closed
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.


Previous Comments:


[2006-08-02 13:36:05] Eric dot Deplagne at nerim dot net

Description:

On page http://fr.php.net/manual/fr/language.exceptions.php, in example
20-2, __toString became _toString. I verified the english version is
OK.







-- 
Edit this bug report at http://bugs.php.net/?id=38295edit=1


[PHP-DOC] #38216 [Opn-Csd]: Example problem in french translation for mb_convert_case

2006-07-26 Thread jsgoupil
 ID:   38216
 Updated by:   [EMAIL PROTECTED]
 Reported By:  magicaltux at gmail dot com
-Status:   Open
+Status:   Closed
 Bug Type: Documentation problem
 Operating System: Irrelevant
 PHP Version:  Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.




Previous Comments:


[2006-07-26 07:35:01] magicaltux at gmail dot com

Description:

On this page :

http://php.net/manual/fr/function.mb-convert-case.php

The example 1 shows :

?php
$str = Marie a un petit agneau et l'aime très fort;
$str = mb_convert_case($str, MB_CASE_UPPER, UTF-8);
print $str;
// Affiche : MARIE A UN PETIT AGNEAU ET L'AIME TRéS FORT
(...)

However the correct output given by mb_convert_case() is :

MARIE A UN PETIT AGNEAU ET L'AIME TRÈS FORT

This example should demonstrate that mb_convert_case() can handle
characters like é/è/ç/à/etc, thing that strtoupper() can't do.






-- 
Edit this bug report at http://bugs.php.net/?id=38216edit=1


[PHP-DOC] #38193 [Opn-Csd]: function escapeshellcmd in french doc

2006-07-24 Thread jsgoupil
 ID:  38193
 Updated by:  [EMAIL PROTECTED]
 Reported By: jfmeteo at gmail dot com
-Status:  Open
+Status:  Closed
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.


Previous Comments:


[2006-07-24 09:14:37] jfmeteo at gmail dot com

Description:

There is a mistake in the french documentation of the function
escapeshellcmd.

La phrase:
 ' et   ne sont échappés que s'ils sont par paire
doit être
 ' et   sont échappés que s'ils NE sont PAS par paire






-- 
Edit this bug report at http://bugs.php.net/?id=38193edit=1


[PHP-DOC] #38172 [Opn-Csd]: French translation bug for stream_socket_server

2006-07-21 Thread jsgoupil
 ID:   38172
 Updated by:   [EMAIL PROTECTED]
 Reported By:  magicaltux at gmail dot com
-Status:   Open
+Status:   Closed
 Bug Type: Documentation problem
 Operating System: Irrelevant
 PHP Version:  Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.




Previous Comments:


[2006-07-21 11:32:49] magicaltux at gmail dot com

Description:

On page :
http://php.net/manual/fr/function.stream-socket-server.php

The documentation says :
Note : La plupart des systèmes ont besoin d'un accès administrateur
pour ouvrir une socket au-delà des ports 1024.

Which would be translated as :
Note: Most systems require administrator access to open a socket over
ports 1024.

Which is obviously wrong. On UNIX system, only privileged users can
open a socket on ports below 1024. The right text for french version
would be :

Note : La plupart des systèmes ont besoin d'un accès administrateur
pour ouvrir une socket sur les ports en dessous de 1024.






-- 
Edit this bug report at http://bugs.php.net/?id=38172edit=1


[PHP-DOC] #37972 [Opn-Csd]: Error in french translation for the array_multisort example

2006-06-30 Thread jsgoupil
 ID:  37972
 Updated by:  [EMAIL PROTECTED]
 Reported By: perrick at noparking dot net
-Status:  Open
+Status:  Closed
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.




Previous Comments:


[2006-06-30 07:53:15] perrick at noparking dot net

I kind of inverted the Expected result and the Actual result in my
report. Sorry about this.



[2006-06-30 07:50:17] perrick at noparking dot net

Description:

The french translation for the documentation of array_multisort
contains an error leading to a lot of confusion.


Reproduce code:
---
Here's the english part :

// Sort the data with volume descending, edition ascending
// Add $data as the last parameter, to sort by the common key
array_multisort($volume, SORT_DESC, $edition, SORT_ASC, $data);

Expected result:

Here's the french translation :

// Tri les données par volume décroissant, edition croissant
// Ajoute $data en tant que premier paramètre, pour trier par la clé
commune
array_multisort($volume, SORT_DESC, $edition, SORT_ASC, $data);

Actual result:
--
And finally what I was expecting :

// Tri les données par volume décroissant, edition croissant
// Ajoute $data en tant que dernier paramètre, pour trier par la clé
commune
array_multisort($volume, SORT_DESC, $edition, SORT_ASC, $data);

The difference : dernier and premier. Their meaning are very
different (ie. opposite ;-)





-- 
Edit this bug report at http://bugs.php.net/?id=37972edit=1


[PHP-DOC] #37429 [Opn-Csd]: French traduction error

2006-05-13 Thread jsgoupil
 ID:   37429
 Updated by:   [EMAIL PROTECTED]
 Reported By:  florian118 at hotmail dot com
-Status:   Open
+Status:   Closed
 Bug Type: Documentation problem
 Operating System: Irrelevant
 PHP Version:  Irrelevant
 New Comment:

Thank you for your bug report. This issue has already been fixed
in the latest released version of PHP, which you can download at 
http://www.php.net/downloads.php

Le pattern 'en PHP ' et 'depuis PHP ' a été corrigé pour 'pour PHP
'

Merci


Previous Comments:


[2006-05-13 15:54:28] florian118 at hotmail dot com

Description:

In the Appendix G : php.ini directives (in French Annexe G : directives
du php.ini http://ch2.php.net/manual/fr/ini.php) there are some
traduction errors in the Changelog column.

For example, in the html_errors directive :
'PHP_INI_SYSTEM in PHP = 4.2.3. [...]'
French version :
'PHP_INI_SYSTEM depuis PHP = 4.2.3. [...]'
The french version is incorrect and has no sense. It means
'PHP_INI_SYSTEM since PHP = 4.2.3'. The correct version would be :
'PHP_INI_SYSTEM pour PHP = 4.2.3.' or 'PHP_INI_SYSTEM jusqu'à PHP
4.2.3.'

All the errors matches the 'depuis PHP =' pattern. There are 13. It
didn't seems that there are another errors.






-- 
Edit this bug report at http://bugs.php.net/?id=37429edit=1


[PHP-DOC] #37424 [Opn-Csd]: Typo page http://fr3.php.net/manual/fr/control-structures.switch.php

2006-05-12 Thread jsgoupil
 ID:   37424
 Updated by:   [EMAIL PROTECTED]
 Reported By:  tchatelet at free dot fr
-Status:   Open
+Status:   Closed
 Bug Type: Documentation problem
 Operating System: Irrelevant
 PHP Version:  Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.

  aux structures literalswitch/literal et de comporte
différemment de
---
  aux structures literalswitch/literal et se comporte de la
même manière que

Il y avait même une erreur avec la version anglaise.

Pour l'instant, la documentation est quand même assez tenue à jour. Si
vous trouvez des petites erreurs comme celle-ci, il est tout a fait
correct de les envoyer.

Si vous êtes un relecteur qui aime lire la documentation de PHP, il y a
surement du travail à offrir. Contactez nous sur [EMAIL PROTECTED]


Previous Comments:


[2006-05-12 21:13:33] tchatelet at free dot fr

Description:

page http://fr3.php.net/manual/fr/control-structures.switch.php, on the
first note, nearly on top of the page:
 Notez que contrairement à d'autres langages, la structure continue
s'applique aux structures switch et *de*- comporte différemment de
break.
This de must be a se or?
Note: I am use to proof read translation, and I aml not sure if I
should report all small errors I see in the documentation. Pls, let me
know if it is appreciated, or if I can help any other, simpler?, way.
Thierry






-- 
Edit this bug report at http://bugs.php.net/?id=37424edit=1


[PHP-DOC] #37377 [Opn-Csd]: Broken link in page Que peut faire PHP?

2006-05-09 Thread jsgoupil
 ID:   37377
 Updated by:   [EMAIL PROTECTED]
 Reported By:  tchatelet at free dot fr
-Status:   Open
+Status:   Closed
 Bug Type: Documentation problem
 Operating System: any
 PHP Version:  Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.

Merci


Previous Comments:


[2006-05-09 10:10:05] tchatelet at free dot fr

Description:

French documentation:
On page http://fr3.php.net/manual/fr/intro-whatcando.php;, onthe last
sentence the link underl'instalation de PHP does not go installation
but to http://fr3.php.net/manual/fr/missing-stuff.php#installation







-- 
Edit this bug report at http://bugs.php.net/?id=37377edit=1


[PHP-DOC] #37379 [Opn-Csd]: New page for yaz_es has a typo.

2006-05-09 Thread jsgoupil
 ID:   37379
 Updated by:   [EMAIL PROTECTED]
 Reported By:  RQuadling at GMail dot com
-Status:   Open
+Status:   Closed
 Bug Type: Documentation problem
 Operating System: Windows XP SP2
 PHP Version:  Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.


Previous Comments:


[2006-05-09 10:57:31] RQuadling at GMail dot com

Description:

The new yaz_es function has 2 typos.

Instead of yaz_es it is yes_es.

Patch

Index: yaz-es.xml
===
RCS file: /repository/phpdoc/en/reference/yaz/functions/yaz-es.xml,v
retrieving revision 1.3
diff -u -r1.3 yaz-es.xml
--- yaz-es.xml  6 May 2006 18:33:39 -   1.3
+++ yaz-es.xml  9 May 2006 10:52:03 -
@@ -10,7 +10,7 @@
  refsect1 role=description
   reftitle.description;
   methodsynopsis
-   typevoid/typemethodnameyes_es/methodname
+   typevoid/typemethodnameyaz_es/methodname
methodparam
 typeresource/typeparameterid/parameter
/methodparam
@@ -32,7 +32,7 @@
/para
   /note
   para
-   The functionyes_es/function creates an Extended Service
Request
+   The functionyaz_es/function creates an Extended Service
Request
packages and puts it into a queue of operations.
Use functionyaz_wait/function to send the request(s) to the
server.
After completion of functionyaz_wait/function the result of

Reproduce code:
---
See Lines 13 and 35 of Revision 1.3

Expected result:

Line 13   typevoid/typemethodnameyaz_es/methodname

Line 35   The functionyaz_es/function creates an Extended Service
Request


Actual result:
--
Line 13   typevoid/typemethodnameyes_es/methodname

Line 35   The functionyes_es/function creates an Extended Service
Request





-- 
Edit this bug report at http://bugs.php.net/?id=37379edit=1


[PHP-DOC] #35922 [Opn]: Module Summaries: Table of Contents on top

2006-01-06 Thread jsgoupil
 ID:   35922
 Updated by:   [EMAIL PROTECTED]
 Reported By:  php at jvogel dot ch
 Status:   Open
 Bug Type: Documentation problem
 Operating System: Irrelevant
 PHP Version:  Irrelevant
 New Comment:

Similar to bug #32012


Previous Comments:


[2006-01-06 16:55:53] php at jvogel dot ch

Description:

In the documentation the module summaries contains a lot of
information. A lot of them is unnessesaraly when I am programming in
PHP. First of all there are a lot information about Installing, then
all the constants in detail. Then the most important information comes:
the Table of Contents (which function there are available in the
module). Last there are a lot of user contributed notes.

When I'm programming, I'm often looking for a special function. I know,
which module I need, but not, how the function is spelling (e.g. str_pos
or strpos). I go into string functions and have to scroll down to the
function list. But I cannot simple press the 'end' button and scroll
up, because there often are a lot of user contributed notes.

Perhaps it would be possible to hide the installation information in
its own subpage and the constants too. Or it would be easy to set the
table of contents at the top of the page.

PLEASE! :-)

Reproduce code:
---
Have a look at http://php.net/mysql or http://php.net/array






-- 
Edit this bug report at http://bugs.php.net/?id=35922edit=1


[PHP-DOC] #32012 [Opn]: Request for revisiting your online manual

2006-01-06 Thread jsgoupil
 ID:   32012
 Updated by:   [EMAIL PROTECTED]
 Reported By:  soletan at toxa dot de
 Status:   Open
 Bug Type: Documentation problem
 Operating System: Irrelevant
 PHP Version:  Irrelevant
 New Comment:

See also bug #35922


Previous Comments:


[2005-08-15 11:26:14] [EMAIL PROTECTED]

This is indeed a doc (or livedocs) problem, since the rendering code
lives there. DSSSL could be fixed to do this, and Livedocs definitely
should be.



[2005-08-13 21:14:06] [EMAIL PROTECTED]

Myabe its a a good idea to add anchor links to install intructions,
functions list, etc..



[2005-02-17 17:48:30] soletan at toxa dot de

Description:

Hi,

I'm using your online manual as reference while coding each and every
day. I prefer to use that over any book or similar since I consider it
to be always most uptodate over those. Furthermore user notes are quite
helpful very often.

BUT: Again and again I don't see any sense in having such huge front
page on each extension. Did you ever try to find the list of supported
methods on Multibyte String Extension's front page? While looking for
that I'm neither interested in information how to install that
extension, how to configure transparent IO-encoding or on what each
charset is about to be. Even moving to bottom of page doesn't satisfy
as there might be lots of user notes with further suggestions on how to
install here, configure there etc.

Of course, ALL these information are worth to be available, but why
couldn't you have some subpages since they become more and more complex
with each new release of PHP. And normally users stop installing some
day and even configuration is done, right before the developer starts
to use your manual as a reference for daily work. 
Sometimes I simply can't remember what was the name of a single
function or what options I have to do this or that using single
selection. So using shorthand access using URL is no good tool just
like searching whole PHP's function list.

Well, simplest adjustment would be to have a page menu on top to click
for the function list (as well as installation notes, list of defined
constants, user notes, etc.). This would avoid getting more files in
PHP manual folder.






-- 
Edit this bug report at http://bugs.php.net/?id=32012edit=1


[PHP-DOC] #35687 [Opn-Bgs]: XMLReader constants changed to class constants

2005-12-15 Thread jsgoupil
 ID:   35687
 Updated by:   [EMAIL PROTECTED]
 Reported By:  alex at mikitik dot com
-Status:   Open
+Status:   Bogus
 Bug Type: Documentation problem
 Operating System: Irrelevant
 PHP Version:  Irrelevant
 New Comment:

Thank you for taking the time to report a problem with PHP.
Unfortunately you are not using a current version of PHP -- 
the problem might already be fixed. Please download a new
PHP version from http://www.php.net/downloads.php

If you are able to reproduce the bug with one of the latest
versions of PHP, please change the PHP version on this bug report
to the version you tested and change the status back to Open.
Again, thank you for your continued support of PHP.

Already fixed in CVS


Previous Comments:


[2005-12-15 19:27:11] alex at mikitik dot com

Description:

Looks like in PHP5.1.1, the XMLReader constant definitions changed to
class constants (e.g. XMLREADER_ELEMENT to XMLREADER::ELEMENT).

This documentation still lists global constants.






-- 
Edit this bug report at http://bugs.php.net/?id=35687edit=1


[PHP-DOC] #35687 [Bgs]: XMLReader constants changed to class constants

2005-12-15 Thread jsgoupil
 ID:   35687
 Updated by:   [EMAIL PROTECTED]
 Reported By:  alex at mikitik dot com
 Status:   Bogus
 Bug Type: Documentation problem
 Operating System: Irrelevant
 PHP Version:  Irrelevant
 New Comment:

hum, Wrong message but it is already fixed in CVS.

Thank you.


Previous Comments:


[2005-12-15 19:33:37] [EMAIL PROTECTED]

Thank you for taking the time to report a problem with PHP.
Unfortunately you are not using a current version of PHP -- 
the problem might already be fixed. Please download a new
PHP version from http://www.php.net/downloads.php

If you are able to reproduce the bug with one of the latest
versions of PHP, please change the PHP version on this bug report
to the version you tested and change the status back to Open.
Again, thank you for your continued support of PHP.

Already fixed in CVS



[2005-12-15 19:27:11] alex at mikitik dot com

Description:

Looks like in PHP5.1.1, the XMLReader constant definitions changed to
class constants (e.g. XMLREADER_ELEMENT to XMLREADER::ELEMENT).

This documentation still lists global constants.






-- 
Edit this bug report at http://bugs.php.net/?id=35687edit=1


[PHP-DOC] #35698 [Opn]: SDO confusing letter

2005-12-15 Thread jsgoupil
 ID:  35698
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

or understand the 'SDO_Model_ and 'SDO_DAS_' interfaces

' missing


Previous Comments:


[2005-12-16 04:35:03] [EMAIL PROTECTED]

Description:

sdo/reference.xml
After Example 13 Get/set sequence values, I think there is some
confusing things with $letter, $letters_seq and $letter_seq
Just before it is written : All subsequent examples assume that the
*$letter_seq* variable has been assigned the sequence for the letter
data object.

Could you double check please ?

Thank you






-- 
Edit this bug report at http://bugs.php.net/?id=35698edit=1


[PHP-DOC] #35698 [Opn]: SDO confusing letter

2005-12-15 Thread jsgoupil
 ID:  35698
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

test to see if the property is many-valued..

2 dots


Previous Comments:


[2005-12-16 05:11:25] [EMAIL PROTECTED]

or understand the 'SDO_Model_ and 'SDO_DAS_' interfaces

' missing



[2005-12-16 04:35:03] [EMAIL PROTECTED]

Description:

sdo/reference.xml
After Example 13 Get/set sequence values, I think there is some
confusing things with $letter, $letters_seq and $letter_seq
Just before it is written : All subsequent examples assume that the
*$letter_seq* variable has been assigned the sequence for the letter
data object.

Could you double check please ?

Thank you






-- 
Edit this bug report at http://bugs.php.net/?id=35698edit=1


[PHP-DOC] #35628 [Opn-Csd]: strtotime() - French translation mistake

2005-12-11 Thread jsgoupil
 ID:  35628
 Updated by:  [EMAIL PROTECTED]
 Reported By: lisurc at free dot fr
-Status:  Open
+Status:  Closed
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.

J'ai corrigé ce bug le 7 octobre 2005.
Mais ta soumission de ce bug a permis d'en trouver d'autres :)

Merci


Previous Comments:


[2005-12-11 01:27:12] lisurc at free dot fr

Description:

In the french translation of the strtotime() function (
http://fr2.php.net/manual/fr/function.strtotime.php ), there is a
mistake in the description of the first parameter, 'time'.

One can read:
La chaîne à analyser, en accord avec la synthaxe des dates GNU

And it should be:
La chaîne à analyser, en accord avec la syntaxe des dates GNU






-- 
Edit this bug report at http://bugs.php.net/?id=35628edit=1


[PHP-DOC] #34649 [Asn-Csd]: manual/fr/features.safe-mode.php

2005-11-06 Thread jsgoupil
 ID:   34649
 Updated by:   [EMAIL PROTECTED]
 Reported By:  ypublic at hasa dot ch
-Status:   Assigned
+Status:   Closed
 Bug Type: Documentation problem
 Operating System: irrelevant
 PHP Version:  Irrelevant
 Assigned To:  jsgoupil
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.

La prochaine fois, n'oublie pas de fournir un lien pour retrouver plus
facilement.

http://ca.php.net/manual/fr/features.safe-mode.php

Merci


Previous Comments:


[2005-09-26 20:49:41] ypublic at hasa dot ch

Description:

open_basedir
...
Cela est cependant peu dangereux car le dossier courant du
script peut facilement être modifié avec la fonction chdir().

Expected result:

un peu (référence d'après la doc en anglais)






-- 
Edit this bug report at http://bugs.php.net/?id=34649edit=1


[PHP-DOC] #33890 [NoF]: Code blocks through documentation look bad in Firefox

2005-10-09 Thread jsgoupil
 ID:   33890
 Updated by:   [EMAIL PROTECTED]
 Reported By:  nic dot linley at gmail dot com
 Status:   No Feedback
 Bug Type: Documentation problem
 Operating System: Windows XP Pro SP2
 PHP Version:  Irrelevant
 New Comment:

I think it simply a Firefox problem that displays too rapidly data.
Normally, you just have to refresh the current page and the width of
the code blocks will be fine.

You should post a bug to Bugzilla Mozilla Firefox.


Previous Comments:


[2005-09-27 01:00:02] phpdoc at lists dot php dot net

No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to Open.



[2005-09-19 14:08:11] [EMAIL PROTECTED]

Any example URLs/code blocks that don't look nice ? I haven't seen
any yet..




[2005-07-27 21:40:09] nic dot linley at gmail dot com

Description:

Most of the code blocks throughout the documentation php.net have
funny widths when viewed in Firefox (1.0.6), causing irritating word
wrapping that is difficult if not impossible to read.

Looks fine in Internet Explorer.






-- 
Edit this bug report at http://bugs.php.net/?id=33890edit=1


[PHP-DOC] #33269 [Csd-Opn]: link tag displays wrong output when using with type tag

2005-10-02 Thread jsgoupil
 ID:  33269
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
-Status:  Closed
+Status:  Open
 Bug Type:Livedocs problem
 PHP Version: Irrelevant
 New Comment:

/reference/expect/reference.xml
/en/ref.expect.html

link linkend=wrappers.expectliteralexpect:///literal
wrapper/link

Outputs : a class=link
href=/livedocs/en/wrappers.html#wrappers.expectProcess Interaction
Streams/a
Instead of : a class=link
href=/livedocs/en/wrappers.html#wrappers.expectspan
class=literalibm_db2.instance_name/span wrapper/a


Previous Comments:


[2005-06-21 03:44:36] [EMAIL PROTECTED]

This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.

I think this is fixed, but if it's not please provide a URL to  page
that demonstrates the problem.



[2005-06-16 02:37:51] [EMAIL PROTECTED]

I'm pretty sure this is the same behavior as #32780.

The link formatter doesn't expect the node to have children, and is
trying to output $node-content (where $node-child[n]-content needs
to be output after a transform).

S




[2005-06-08 01:36:02] [EMAIL PROTECTED]

Description:

When you write something like
link linkend=language.types.ressourceDoc on
typeresource/types/link
It will output directly the Resource title.
So with link linkend=language.types.integerDoc on
typeresource/types/link will output Integer (with the link of
course)

Supposed to output Doc on typeresource/types with the link.






-- 
Edit this bug report at http://bugs.php.net/?id=33269edit=1


[PHP-DOC] #33269 [Opn]: link tag displays wrong output when using with type tag

2005-10-02 Thread jsgoupil
 ID:  33269
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
 Status:  Open
 Bug Type:Livedocs problem
 PHP Version: Irrelevant
 New Comment:

not ibm_db2.instance_name but expect://
(:


Previous Comments:


[2005-10-02 23:39:48] [EMAIL PROTECTED]

/reference/expect/reference.xml
/en/ref.expect.html

link linkend=wrappers.expectliteralexpect:///literal
wrapper/link

Outputs : a class=link
href=/livedocs/en/wrappers.html#wrappers.expectProcess Interaction
Streams/a
Instead of : a class=link
href=/livedocs/en/wrappers.html#wrappers.expectspan
class=literalibm_db2.instance_name/span wrapper/a



[2005-06-21 03:44:36] [EMAIL PROTECTED]

This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.

I think this is fixed, but if it's not please provide a URL to  page
that demonstrates the problem.



[2005-06-16 02:37:51] [EMAIL PROTECTED]

I'm pretty sure this is the same behavior as #32780.

The link formatter doesn't expect the node to have children, and is
trying to output $node-content (where $node-child[n]-content needs
to be output after a transform).

S




[2005-06-08 01:36:02] [EMAIL PROTECTED]

Description:

When you write something like
link linkend=language.types.ressourceDoc on
typeresource/types/link
It will output directly the Resource title.
So with link linkend=language.types.integerDoc on
typeresource/types/link will output Integer (with the link of
course)

Supposed to output Doc on typeresource/types with the link.






-- 
Edit this bug report at http://bugs.php.net/?id=33269edit=1


[PHP-DOC] #34660 [Opn]: Error in version number of IBM_DB2

2005-09-27 Thread jsgoupil
 ID:  34660
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

server:

the database server is runnin

(g missing)


(PS. I post all these bugs here just to make one commit)


Previous Comments:


[2005-09-27 17:49:02] [EMAIL PROTECTED]

in db2-server-info.xml

The following table lists the DB2 client properties:

I think it is server properties



[2005-09-27 17:36:26] [EMAIL PROTECTED]

Description:

/en/reference/ibm_db2/functions/db2-client-info.xml

entryThe version of the client, in the form of a string MM.mm.
where
varnameMM/varname is the major version,
varnamemm/varname is the minor version,
and varname/varname is the update. For example,
08.02.0001
represents major version 8, minor version 2, update 1.
   /entry

 or 

AND

   entryThe version of ODBC that the ODBC driver manager
supports. This
returns a string MM.mm where varnameMM/varname is the
major
version, varnamemm/varname is the minor version, and
varname/varname is the release. The DB2 client always
returns
03.01..

 or  or no revision :) ?






-- 
Edit this bug report at http://bugs.php.net/?id=34660edit=1


[PHP-DOC] #34660 [Opn]: Error in version number of IBM_DB2

2005-09-27 Thread jsgoupil
 ID:  34660
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

in db2-server-info.xml

The following table lists the DB2 client properties:

I think it is server properties


Previous Comments:


[2005-09-27 17:36:26] [EMAIL PROTECTED]

Description:

/en/reference/ibm_db2/functions/db2-client-info.xml

entryThe version of the client, in the form of a string MM.mm.
where
varnameMM/varname is the major version,
varnamemm/varname is the minor version,
and varname/varname is the update. For example,
08.02.0001
represents major version 8, minor version 2, update 1.
   /entry

 or 

AND

   entryThe version of ODBC that the ODBC driver manager
supports. This
returns a string MM.mm where varnameMM/varname is the
major
version, varnamemm/varname is the minor version, and
varname/varname is the release. The DB2 client always
returns
03.01..

 or  or no revision :) ?






-- 
Edit this bug report at http://bugs.php.net/?id=34660edit=1


[PHP-DOC] #34660 [Asn-Opn]: Error in version number of IBM_DB2

2005-09-27 Thread jsgoupil
 ID:  34660
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
-Status:  Assigned
+Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 Assigned To: dbs
 New Comment:

server:

Cursor staability

AND

   entryMAX_INDEX_SIZE/entry
   entryMaximum size of columns combined in an index supported by
the
   database server, expressed in bytes./entry
   entry/entry
(text shifted + add int)



Previous Comments:


[2005-09-27 18:12:26] [EMAIL PROTECTED]

Thanks for the quick feedback! Will fix in the next 24 hours.



[2005-09-27 17:52:23] [EMAIL PROTECTED]

server:

the database server is runnin

(g missing)


(PS. I post all these bugs here just to make one commit)



[2005-09-27 17:49:02] [EMAIL PROTECTED]

in db2-server-info.xml

The following table lists the DB2 client properties:

I think it is server properties



[2005-09-27 17:36:26] [EMAIL PROTECTED]

Description:

/en/reference/ibm_db2/functions/db2-client-info.xml

entryThe version of the client, in the form of a string MM.mm.
where
varnameMM/varname is the major version,
varnamemm/varname is the minor version,
and varname/varname is the update. For example,
08.02.0001
represents major version 8, minor version 2, update 1.
   /entry

 or 

AND

   entryThe version of ODBC that the ODBC driver manager
supports. This
returns a string MM.mm where varnameMM/varname is the
major
version, varnamemm/varname is the minor version, and
varname/varname is the release. The DB2 client always
returns
03.01..

 or  or no revision :) ?






-- 
Edit this bug report at http://bugs.php.net/?id=34660edit=1


[PHP-DOC] #34660 [Csd-Opn]: Error in version number of IBM_DB2

2005-09-27 Thread jsgoupil
 ID:  34660
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
-Status:  Closed
+Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 Assigned To: dbs
 New Comment:

you forgot some :)
client :
entryODBC_VER/entry
(you mentionned  but not in the string)

server:
entryDBMS_VER/entry
( or )
+
runnin - running

You're welcome :)


Previous Comments:


[2005-09-27 19:22:56] [EMAIL PROTECTED]

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.

Thanks Jean-Sebastian!



[2005-09-27 18:27:16] [EMAIL PROTECTED]

(fix non-atomic bug editing)



[2005-09-27 18:15:47] [EMAIL PROTECTED]

server:

Cursor staability

AND

   entryMAX_INDEX_SIZE/entry
   entryMaximum size of columns combined in an index supported by
the
   database server, expressed in bytes./entry
   entry/entry
(text shifted + add int)




[2005-09-27 18:12:26] [EMAIL PROTECTED]

Thanks for the quick feedback! Will fix in the next 24 hours.



[2005-09-27 17:52:23] [EMAIL PROTECTED]

server:

the database server is runnin

(g missing)


(PS. I post all these bugs here just to make one commit)



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/34660

-- 
Edit this bug report at http://bugs.php.net/?id=34660edit=1


[PHP-DOC] #34215 [Opn-Csd]: language.expressions.php - Translation error

2005-08-22 Thread jsgoupil
 ID:   34215
 Updated by:   [EMAIL PROTECTED]
 Reported By:  xenon54 at generationphp dot net
-Status:   Open
+Status:   Closed
 Bug Type: Documentation problem
 Operating System: Irrelevant
 PHP Version:  Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.


Previous Comments:


[2005-08-23 02:58:51] xenon54 at generationphp dot net

Description:

Just an error of translation for this page:
http://www.php.net/manual/fr/language.expressions.php

2 paragraphs after the Example 14-1, you can read:
PHP supporte 3 types de variables scalaires : les valeurs entières
(entier), les nombres à virgule flottante (float), les chaînes de
caractères (chaîne de caractères) et les booléens (boolean).

After some counting and checking with the English version, we should
read:
PHP supporte 4 types de variables scalaires : les valeurs entières
(entier), les nombres à virgule flottante (float), les chaînes de
caractères (chaîne de caractères) et les booléens (boolean).






-- 
Edit this bug report at http://bugs.php.net/?id=34215edit=1


[PHP-DOC] #33948 [Opn-Csd]: Error in french translation of str_rot13 info page

2005-08-01 Thread jsgoupil
 ID:   33948
 Updated by:   [EMAIL PROTECTED]
 Reported By:  gkieffer at evolutive dot org
-Status:   Open
+Status:   Closed
 Bug Type: Documentation problem
 Operating System: All
 PHP Version:  Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.


Previous Comments:


[2005-08-01 18:02:14] gkieffer at evolutive dot org

Description:

There's a slight error in the french translation of the documentation
page of str_rot13().

Original documentation says:
Note: The behaviour of this function was buggy until PHP 4.3.0. Before
this, the str was also modified, as if passed by reference. 

French translation says:
Note : Le comportement de cette fonction était bogué jusqu'en PHP
4.3.0. Avant cela, str n'était pas modifié, comme s'il était passé par
référence. 

... that is: Before this, the str was NOT modified, as if passed by
reference.

Obviously the french translation is wrong.

The french translation should read:
Avant cela, str était modifié, comme s'il était passé par référence.

EN: http://www.php.net/manual/en/function.str-rot13.php
FR: http://www.php.net/manual/fr/function.str-rot13.php

Expected result:

Note : Le comportement de cette fonction était bogué jusqu'en PHP
4.3.0. Avant cela, str était modifié, comme s'il était passé par
référence. 

Actual result:
--
Note : Le comportement de cette fonction était bogué jusqu'en PHP
4.3.0. Avant cela, str n'était pas modifié, comme s'il était passé par
référence.





-- 
Edit this bug report at http://bugs.php.net/?id=33948edit=1


[PHP-DOC] #33840 [Opn]: XMLReader parameter

2005-07-23 Thread jsgoupil
 ID:  33840
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

check refpurpose of xmlreader-setparserproperty.xml


Previous Comments:


[2005-07-23 22:11:05] [EMAIL PROTECTED]

Description:

/en/reference/xmlreader/function/xmlreader-getparserproperty.xml

What is parameterfeature/paremeter in explanation ?
remove or explain or put property ?






-- 
Edit this bug report at http://bugs.php.net/?id=33840edit=1


[PHP-DOC] #30440 [Csd-Opn]: Nested entities cause invalid XML

2005-06-20 Thread jsgoupil
 ID:   30440
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
-Status:   Closed
+Status:   Open
 Bug Type: Livedocs problem
 Operating System: n/a
 PHP Version:  Irrelevant
 Assigned To:  iliaa
 New Comment:

I have still the same errors... Do I have to apply the patch again ?


Previous Comments:


[2005-06-18 04:03:40] [EMAIL PROTECTED]

This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.





[2005-04-20 20:37:16] [EMAIL PROTECTED]

I applied the patch and with French doc there are a lot of accents...
(é à ...)
I got only a Warning (the page is displayed but crash only at the
special character) :

XML: 1:33 Invalid character Line: 1 is divdiv
class=function_linkfunctionpg_affected_rows/function - Retourne
le nombre de lignes affectées/div

divdiv class=function_linkfunctionpg_affected_rows/function -
Retourne le nombre de lignes affectées/div
div class=function_linkfunctionpg_cancel_query/function -
Annule une requête asynchrone/div
...


It seems that it is only for displaying functions at the end of a
reference.xml file
Example : fr/ref.pgsql.html



[2004-10-15 17:54:58] [EMAIL PROTECTED]

Confirmed that this patch fixes this problem.

Could someone with the necessary karma please patch  commit?

Thanks,
S



[2004-10-15 17:44:09] [EMAIL PROTECTED]

That should be fixed with one of my patches:
http://livedocs.aborla.net/patch.php?id=entities



[2004-10-15 06:56:20] [EMAIL PROTECTED]

Description:

When an entity contains a nested (special character) entity, the
handler is not called properly, and this can result in malformed XML.

I worked on this for about 30 mins, tonight, and didn't get very far,
so no patch, yet.

Reproduce code:
---
http://livedocs.phpdoc.info/ref.regex

Expected result:

ulink url=http://www.tin.org/bin/man.cgi?section=7topic=regex;

Actual result:
--
ulink url=http://www.tin.org/bin/man.cgi?section=7phpdoc_include
ref=amp/topic=regex





-- 
Edit this bug report at http://bugs.php.net/?id=30440edit=1


[PHP-DOC] #33300 [Bgs]: mistake in one command description

2005-06-10 Thread jsgoupil
 ID:   33300
 Updated by:   [EMAIL PROTECTED]
 Reported By:  jaume at nobainfo dot net
 Status:   Bogus
 Bug Type: Documentation problem
 Operating System: n.a.
 PHP Version:  Irrelevant
 New Comment:

Time is not 01-23 system. It is 00-23 (or 24h, opposed at 12h).

Midnight is 00:00 like 12AM.

23:00 is like 11PM.

So after 11:59PM, there is 12:00AM (or 00:00).


Previous Comments:


[2005-06-10 18:13:21] [EMAIL PROTECTED]

What time would midnight be in your 01-23 system?

01:00 or 23:00?

The documentation is obviously right 

PS: i also see 0:00 on my clock a lot ...



[2005-06-10 16:26:30] [EMAIL PROTECTED]

Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

.



[2005-06-10 16:19:00] jaume at nobainfo dot net

Description:

In the date() function documentation there is a mistake

In Table 1., the line that reads:

H .. 24-hour format of an hour with leading zeros .. 00 through 23 


Ought to be:

H .. 24-hour format of an hour with leading zeros .. 01 through 23 


(page referred)
http://es2.php.net/manual/en/function.date.php







-- 
Edit this bug report at http://bugs.php.net/?id=33300edit=1


[PHP-DOC] #33037 [Fbk]: English : Example Bad output

2005-05-16 Thread jsgoupil
 ID:  33037
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
 Status:  Feedback
 Bug Type:Livedocs problem
 PHP Version: Irrelevant
 New Comment:

I'm already running the patch mentionned in #30440
http://livedocs.aborla.net/patch.php?id=entities
Moreover, i wrote a comment into this bug.

I applied it a long time ago and, if I remember, one of the pattern
didn't match, so Ive corrected all files by hand.


These lines were removed :

-$GLOBALS['special'] = array('gt' = 1,'lt' = 1,'quot' = 1,'amp' =
1);
-
 function handle_include($node) 
 {
global $current_page;
 
$ref = $node-attributes['ref'];
 
-   /* Special HTML entities */
-   if (isset($GLOBALS['special'][$ref])) {
-   return '' . $ref . ';';
-   }
-


Previous Comments:


[2005-05-16 16:28:46] [EMAIL PROTECTED]

Its a livedocs problem.
Could you please try my ancient patch mentioned in #30440 ?



[2005-05-16 03:52:27] [EMAIL PROTECTED]

Description:

reference/strings/functions/htmlspecialchars-decode.html

Ok, look at the example in livedocs what it outputs..., the output is
the same... (check example too).
I don't really know if it is a doc bug or a livedocs bug.
Feel free to redirect this bug to Livedocs...

Perhaps the output will be great on php.net, i don't know ?!

Expected result:

?php
$str = 'pthis -gt; quot;/p';

echo htmlspecialchars_decode($str);

// notez ici que les guillemets ne sont pas convertis
echo htmlspecialchars_decode($str, ENT_NOQUOTES);
? 

pthis - /p
pthis - quot;/p

Actual result:
--
?php
$str = 'pthis -gt; /p';

echo htmlspecialchars_decode($str);

// notez ici que les guillemets ne sont pas convertis
echo htmlspecialchars_decode($str, ENT_NOQUOTES);
? 

pthis - /p
pthis - /p





-- 
Edit this bug report at http://bugs.php.net/?id=33037edit=1


[PHP-DOC] #32960 [Opn]: English : dio, error logic + examples

2005-05-05 Thread jsgoupil
 ID:  32960
 Updated by:  [EMAIL PROTECTED]
-Summary: English : db2
 Reported By: [EMAIL PROTECTED]
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

By the way, check the example title of dio-open.xml, dio-seek.xml

They all have : 
titleSetting the baud rate on a serial port/title


Previous Comments:


[2005-05-06 06:13:48] [EMAIL PROTECTED]

Description:

reference/dio/functions/dio-seek.xml

In the new doc you said :
SEEK_END - Specifies that pos is a count of characters from the end of
the file. A negative count specifies a position within the current
extent of the file; a positive count specifies a position past the
current end. If you set the position past the current end, and actually
write data, you will extend the file with zeros up to that position.

And in the example :
dio_seek($fd, SEEK_END, -10);
// position is now at 10 characters past the end of the file.
// The 10 characters between the end of the file and the current
// position are filled with zeros.


I think you do the inverse... ? you said in the doc that - remain in
the file, and + pad with 0, but in the example it seems to be the
inverse. You do -10, and you said it goes after the end...

If the doc is ok, it should be a little bit more explicit.








-- 
Edit this bug report at http://bugs.php.net/?id=32960edit=1


[PHP-DOC] #32939 [Opn-Asn]: English : db2

2005-05-04 Thread jsgoupil
 ID:  32939
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
-Status:  Open
+Status:  Assigned
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 Assigned To: dbs


Previous Comments:


[2005-05-04 05:19:39] [EMAIL PROTECTED]

Description:

reference/ibm_db2/functions/db2-procedure-columns.xml

The methodsynopsis doesn't match with the parameters... I think it is
parameter not column but I prefer to assigned to the right person.






-- 
Edit this bug report at http://bugs.php.net/?id=32939edit=1



[PHP-DOC] #32872 [Opn]: [DOC] English : ^M in example

2005-04-28 Thread jsgoupil
 ID:  32872
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

Same in reference/pgsql/functions/pg-options.xml


Previous Comments:


[2005-04-28 20:09:06] [EMAIL PROTECTED]

Description:

In the file reference/pgsql/functions/pg-host.xml 
There are ^M (special end of line) at the end of the example line. It
should be removed.






-- 
Edit this bug report at http://bugs.php.net/?id=32872edit=1


[PHP-DOC] #32877 [Opn]: [DOC] English : Parameters Missing

2005-04-28 Thread jsgoupil
 ID:  32877
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

It's partially written there pg_meta_data() returns table definition
for table_name as an array but it could be cool to have a param
section.


Previous Comments:


[2005-04-28 22:14:16] [EMAIL PROTECTED]

Description:

reference/pgsql/functions/pg-meta-data.xml

Parameters refsect1 is missing






-- 
Edit this bug report at http://bugs.php.net/?id=32877edit=1


[PHP-DOC] #32872 [Asn-Csd]: English : ^M in example

2005-04-28 Thread jsgoupil
 ID:  32872
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
-Status:  Assigned
+Status:  Closed
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 Assigned To: jsgoupil
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.

Fixed by chriskl


Previous Comments:


[2005-04-28 22:27:51] [EMAIL PROTECTED]

Same in reference/pgsql/functions/pg-options.xml



[2005-04-28 20:09:06] [EMAIL PROTECTED]

Description:

In the file reference/pgsql/functions/pg-host.xml 
There are ^M (special end of line) at the end of the example line. It
should be removed.






-- 
Edit this bug report at http://bugs.php.net/?id=32872edit=1


[PHP-DOC] #32879 [Asn-Csd]: English : mismatch between code and output

2005-04-28 Thread jsgoupil
 ID:  32879
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
-Status:  Assigned
+Status:  Closed
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 Assigned To: jsgoupil
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.




Previous Comments:


[2005-04-28 22:45:25] [EMAIL PROTECTED]

Description:

reference/pgsql/functions/pg-cancel-query.xml
Really a little improvement :

 echo First call to pg_get_result(): $res1\n;

output
first call to...

(minus f ...)






-- 
Edit this bug report at http://bugs.php.net/?id=32879edit=1


[PHP-DOC] #32876 [Asn-Csd]: [DOC] English : Switch comment

2005-04-28 Thread jsgoupil
 ID:  32876
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
-Status:  Assigned
+Status:  Closed
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 Assigned To: jsgoupil
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.




Previous Comments:


[2005-04-28 22:51:44] [EMAIL PROTECTED]

You have karma to fix this yourself so please do.



[2005-04-28 21:37:29] [EMAIL PROTECTED]

Same on pg-lo-tell.xml

// Skip first 1 bytes

-
// Skip first 5 bytes



[2005-04-28 21:33:29] [EMAIL PROTECTED]

Description:

In reference/pgsql/functions/pg-lo-seek.xml

It seems that the comment bytes are inversed.

   // Skip first 1 bytes
   pg_lo_seek($handle, 5, PGSQL_SEEK_SET);
   // Read the next 5 bytes
   $data = pg_lo_read($handle, 1);

Should be

   // Skip first 5 bytes
   pg_lo_seek($handle, 5, PGSQL_SEEK_SET);
   // Read the next 1 bytes
   $data = pg_lo_read($handle, 1);







-- 
Edit this bug report at http://bugs.php.net/?id=32876edit=1


[PHP-DOC] #32877 [Asn-Csd]: English : Parameters Missing

2005-04-28 Thread jsgoupil
 ID:  32877
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
-Status:  Assigned
+Status:  Closed
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 Assigned To: jsgoupil
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.

ok


Previous Comments:


[2005-04-28 22:53:08] [EMAIL PROTECTED]

(And there is no need to prefix the summary with [DOC]...)



[2005-04-28 22:15:45] [EMAIL PROTECTED]

It's partially written there pg_meta_data() returns table definition
for table_name as an array but it could be cool to have a param
section.



[2005-04-28 22:14:16] [EMAIL PROTECTED]

Description:

reference/pgsql/functions/pg-meta-data.xml

Parameters refsect1 is missing






-- 
Edit this bug report at http://bugs.php.net/?id=32877edit=1


[PHP-DOC] #32780 [NEW]: refpurpose isn't displayed if it contains a function

2005-04-20 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: Linux
PHP version:  Irrelevant
PHP Bug Type: Livedocs problem
Bug description:  refpurpose isn't displayed if it contains a function

Description:

The content of refpurpose is not displayed if it contains a function tag
: function.

As you can see on pg_set_error_verbosity


Jean-Sébastien Goupil


-- 
Edit bug report at http://bugs.php.net/?id=32780edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32780r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32780r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32780r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32780r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32780r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32780r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32780r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32780r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32780r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32780r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32780r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32780r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32780r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32780r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32780r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32780r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32780r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32780r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32780r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32780r=mysqlcfg


[PHP-DOC] #30440 [Ana]: Nested entities cause invalid XML

2005-04-20 Thread jsgoupil
 ID:   30440
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
 Status:   Analyzed
 Bug Type: Livedocs problem
 Operating System: n/a
 PHP Version:  Irrelevant
 Assigned To:  iliaa
 New Comment:

I applied the patch and with French doc there are a lot of accents...
(é à ...)
I got only a Warning (the page is displayed but crash only at the
special character) :

XML: 1:33 Invalid character Line: 1 is divdiv
class=function_linkfunctionpg_affected_rows/function - Retourne
le nombre de lignes affectées/div

divdiv class=function_linkfunctionpg_affected_rows/function -
Retourne le nombre de lignes affectées/div
div class=function_linkfunctionpg_cancel_query/function -
Annule une requête asynchrone/div
...


It seems that it is only for displaying functions at the end of a
reference.xml file
Example : fr/ref.pgsql.html


Previous Comments:


[2004-10-15 17:54:58] [EMAIL PROTECTED]

Confirmed that this patch fixes this problem.

Could someone with the necessary karma please patch  commit?

Thanks,
S



[2004-10-15 17:44:09] [EMAIL PROTECTED]

That should be fixed with one of my patches:
http://livedocs.aborla.net/patch.php?id=entities



[2004-10-15 06:56:20] [EMAIL PROTECTED]

Description:

When an entity contains a nested (special character) entity, the
handler is not called properly, and this can result in malformed XML.

I worked on this for about 30 mins, tonight, and didn't get very far,
so no patch, yet.

Reproduce code:
---
http://livedocs.phpdoc.info/ref.regex

Expected result:

ulink url=http://www.tin.org/bin/man.cgi?section=7topic=regex;

Actual result:
--
ulink url=http://www.tin.org/bin/man.cgi?section=7phpdoc_include
ref=amp/topic=regex





-- 
Edit this bug report at http://bugs.php.net/?id=30440edit=1


[PHP-DOC] #32780 [Opn]: refpurpose isn't displayed if it contains a function or entity

2005-04-20 Thread jsgoupil
 ID:   32780
 Updated by:   [EMAIL PROTECTED]
-Summary:  refpurpose isn't displayed if it contains a function
 Reported By:  jsgoupil at lookstrike dot com
 Status:   Open
 Bug Type: Livedocs problem
 Operating System: Linux
 PHP Version:  Irrelevant
 New Comment:

same if entity (null;)
See pg_field_is_null


Previous Comments:


[2005-04-20 20:24:48] jsgoupil at lookstrike dot com

Description:

The content of refpurpose is not displayed if it contains a function
tag : function.

As you can see on pg_set_error_verbosity


Jean-Sébastien Goupil






-- 
Edit this bug report at http://bugs.php.net/?id=32780edit=1


[PHP-DOC] #32787 [Opn]: [DOC] English : pgsql: function-literal

2005-04-20 Thread jsgoupil
 ID:  32787
 Updated by:  [EMAIL PROTECTED]
-Summary: [DOC] English :
 Reported By: [EMAIL PROTECTED]
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

renamed


Previous Comments:


[2005-04-21 01:24:17] [EMAIL PROTECTED]

Description:

Index: pg-client-encoding.xml
===
RCS file:
/repository/phpdoc/en/reference/pgsql/functions/pg-client-encoding.xml,v
retrieving revision 1.7
diff -u -r1.7 pg-client-encoding.xml
--- pg-client-encoding.xml  5 Apr 2005 08:56:09 -   1.7
+++ pg-client-encoding.xml  20 Apr 2005 23:22:58 -
@@ -31,7 +31,7 @@
 version.  Refer to the PostgreSQL Documentation supported
encodings.
/para
para
-The function used to be called
functionpg_clientencoding/function.
+The function used to be called
literalpg_clientencoding()/literal.
/para
   /note
  /refsect1







-- 
Edit this bug report at http://bugs.php.net/?id=32787edit=1


[PHP-DOC] #32336 [Opn-Csd]: [fr] Translation error in htmlspecialchars

2005-04-17 Thread jsgoupil
 ID:  32336
 Updated by:  [EMAIL PROTECTED]
 Reported By: eric_php at fantasy-lands dot net
-Status:  Open
+Status:  Closed
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.

corrected my first bug


Previous Comments:


[2005-03-16 13:59:44] eric_php at fantasy-lands dot net

Description:

Hi,

In page some mirroring site/manual/fr/function.htmlspecialchars.php,
there is a mismatch between lower than and greater than
translations which has been swapped.

Current content is:
 (supérieur à) devient lt; 
 (inférieur à) devient gt; 

and should be:
 (inférieur à) devient lt; 
 (supérieur à) devient gt; 

Regards,
Eric






-- 
Edit this bug report at http://bugs.php.net/?id=32336edit=1


[PHP-DOC] #32156 [NEW]: [DOC] French : Ocirc

2005-04-12 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  [DOC] French : Ocirc

Description:

fr/reference/array/functions/array-merge.xml
$Revision : 1.27 $

It displays on PHP.net :
trapézoOcirc;de

On livedocs :
trapézophpdoc_include ref=Ocirc/de

In the code and in the display of the example.

Furthermore, I think it is icirc and not Ocirc ?


Jean-Sébastien Goupil


-- 
Edit bug report at http://bugs.php.net/?id=32156edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32156r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32156r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32156r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32156r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32156r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32156r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32156r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32156r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32156r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32156r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32156r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32156r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32156r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32156r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32156r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32156r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32156r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32156r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32156r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32156r=mysqlcfg


[PHP-DOC] #32154 [NEW]: [DOC] French : PHP Tag

2005-04-12 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: WinXP
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  [DOC] French : PHP Tag

Description:

fr/reference/strings/functions/ucfirst.xml
$Revision : 1.11 $

Il manque les tags ?php et ? et la coloration syntaxique.


-- 
Edit bug report at http://bugs.php.net/?id=32154edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32154r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32154r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32154r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32154r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32154r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32154r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32154r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32154r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32154r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32154r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32154r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32154r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32154r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32154r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32154r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32154r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32154r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32154r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32154r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32154r=mysqlcfg


[PHP-DOC] #32651 [NEW]: [DOC] French : Error in array

2005-04-09 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  [DOC] French : Error in array

Description:

fr/reference/array/functions/array.xml
$Revision: 1.17 $

=?
remplacer par 
=

http://jsgoupil.homelinux.com/phpdoc/diff20050409_1.txt


-- 
Edit bug report at http://bugs.php.net/?id=32651edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32651r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32651r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32651r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32651r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32651r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32651r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32651r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32651r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32651r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32651r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32651r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32651r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32651r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32651r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32651r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32651r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32651r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32651r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32651r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32651r=mysqlcfg


[PHP-DOC] #32652 [NEW]: [DOC] French : split

2005-04-09 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  [DOC] French : split

Description:

fr/reference/regex/functions/split.xml
$Revision: 1.14 $

puissant - puissance

http://jsgoupil.homelinux.com/phpdoc/diff20050410_1.txt


-- 
Edit bug report at http://bugs.php.net/?id=32652edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32652r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32652r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32652r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32652r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32652r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32652r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32652r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32652r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32652r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32652r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32652r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32652r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32652r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32652r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32652r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32652r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32652r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32652r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32652r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32652r=mysqlcfg


[PHP-DOC] #32492 [NEW]: [DOC] French : preg_quote

2005-03-29 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  5CVS-2005-03-30 (dev)
PHP Bug Type: Documentation problem
Bug description:  [DOC] French : preg_quote

Description:

fr/reference/pcre/function/preg-quote.xml
$ Revision: 1.13 $

Les caractères échappés, il ne devrait y avoir qu'un seul \ et il y en a
2.
Un . devrait être ajouté à la chaine Cette fonction gère les chaînes
binaires

Voici les diff -u
http://jsgoupil.homelinux.com/phpdoc/diff20050329_1.txt
http://jsgoupil.homelinux.com/phpdoc/diff20050329_2.txt

Je sais que c'est peut-etre un peu poussé de modifier les snippets pour un
point seulement...

J'ai aussi remarqué que preg-quote.xml n'était simplement pas à jour à la
version anglaise.

Question : comment mettre à jour livedocs lors de modification de snippets
? je dois recompiler ?


Jean-Sébastien Goupil


-- 
Edit bug report at http://bugs.php.net/?id=32492edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32492r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32492r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32492r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32492r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32492r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32492r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32492r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32492r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32492r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32492r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32492r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32492r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32492r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32492r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32492r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32492r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32492r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32492r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32492r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32492r=mysqlcfg


[PHP-DOC] #32492 [Opn]: [DOC] French : preg_quote

2005-03-29 Thread jsgoupil at lookstrike dot com
 ID:  32492
 User updated by: jsgoupil at lookstrike dot com
 Reported By: jsgoupil at lookstrike dot com
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: 5CVS-2005-03-30 (dev)
 New Comment:

J'ai vu aussi dans les snippets une autre petite erreur...
Voyez la fonction functionclearstatcache/function plus de détails.
par
Voyez la fonction functionclearstatcache/function pour plus de
détails.

ou sinon il fallait mettre plus en détail, mais il y a un s à
détail...
Ca ma juste sauté aux yeux puisque c'était sous bin-safe...


Previous Comments:


[2005-03-30 01:05:29] jsgoupil at lookstrike dot com

Description:

fr/reference/pcre/function/preg-quote.xml
$ Revision: 1.13 $

Les caractères échappés, il ne devrait y avoir qu'un seul \ et il y en
a 2.
Un . devrait être ajouté à la chaine Cette fonction gère les chaînes
binaires

Voici les diff -u
http://jsgoupil.homelinux.com/phpdoc/diff20050329_1.txt
http://jsgoupil.homelinux.com/phpdoc/diff20050329_2.txt

Je sais que c'est peut-etre un peu poussé de modifier les snippets pour
un point seulement...

J'ai aussi remarqué que preg-quote.xml n'était simplement pas à jour à
la version anglaise.

Question : comment mettre à jour livedocs lors de modification de
snippets ? je dois recompiler ?


Jean-Sébastien Goupil






-- 
Edit this bug report at http://bugs.php.net/?id=32492edit=1


[PHP-DOC] #32476 [NEW]: [DOC] French : Magic Methods

2005-03-28 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  5CVS-2005-03-28 (dev)
PHP Bug Type: Documentation problem
Bug description:  [DOC] French : Magic Methods

Description:

Where is the option PHP Version : Irrevelant ? (For documentation problem
!?)


fr/language/oop5/magic.xml
$Revision: 1.6 $

objets qui n'ont pas besoin d'ere sauvegardés en totalité.
= être

convertion
= conversion (2 fois)


Jean-Sébastien Goupil


-- 
Edit bug report at http://bugs.php.net/?id=32476edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32476r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32476r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32476r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32476r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32476r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32476r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32476r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32476r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32476r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32476r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32476r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32476r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32476r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32476r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32476r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32476r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32476r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32476r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32476r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32476r=mysqlcfg


[PHP-DOC] #32164 [NEW]: [DOC] French : Session

2005-03-02 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  [DOC] French : Session

Description:

fr/reference/session/reference.xml
$Revision: 1.28 $
http://ca.php.net/session

Vous ne pouvais pas utiliser les références sur des variables de session
car il n'y a aucune manière faisable de restaurer une référence vers une
autre variable.

- Vous ne pouvEZ

De plus, dans livedocs, il y a une erreur : XML: 4:152 Invalid character
Line: 4 is div class=function_linkfunctionsession_decode/function
- Décode les données de session/div

Jean-Sébastien Goupil


-- 
Edit bug report at http://bugs.php.net/?id=32164edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32164r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32164r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32164r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32164r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32164r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32164r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32164r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32164r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32164r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32164r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32164r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32164r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32164r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32164r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32164r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32164r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32164r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32164r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32164r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32164r=mysqlcfg


[PHP-DOC] #32159 [NEW]: [DOC] French : uniqid

2005-03-01 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  [DOC] French : uniqid

Description:

reference/misc/functions/uniqid.xml
$Revision: 1.16 $

Si le paramètre optionnel lcg est TRUE... lcg n'existe pas (plus?), il
s'agit du paramètre $more_entropy.
L'exemple est différent de celui anglais.
(un nombre hexadécimal de 128 ) il y a un espace après 128.


Jean-Sébastien Goupil


-- 
Edit bug report at http://bugs.php.net/?id=32159edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32159r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32159r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32159r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32159r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32159r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32159r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32159r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32159r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32159r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32159r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32159r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32159r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32159r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32159r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32159r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32159r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32159r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32159r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32159r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32159r=mysqlcfg


[PHP-DOC] #32083 [NEW]: stream_set_blocking : mode boolean or integer ?

2005-02-23 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  stream_set_blocking : mode boolean or integer ?

Description:

In the doc : en/function.stream-set-blocking.php
It says that the mode is an integer but you give only TRUE or FALSE for
the mode.
So, perhaps it is a bool argument or more explanations about the mode
should be written.


-- 
Edit bug report at http://bugs.php.net/?id=32083edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32083r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32083r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32083r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32083r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32083r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32083r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32083r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32083r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32083r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32083r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32083r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32083r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32083r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32083r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32083r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32083r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32083r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32083r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32083r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32083r=mysqlcfg


[PHP-DOC] #32071 [NEW]: [DOC] French : move_uploaded_file Typo

2005-02-22 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  [DOC] French : move_uploaded_file Typo

Description:

$Revision: 1.10 $
fr/reference/filesystem/functions/move-uploaded-file.xml

n'es tpas - n'est pas
opétation - opération


Jean-Sébastien Goupil


-- 
Edit bug report at http://bugs.php.net/?id=32071edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32071r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32071r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32071r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32071r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32071r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32071r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32071r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32071r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32071r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32071r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32071r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32071r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32071r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32071r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32071r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32071r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32071r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32071r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32071r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32071r=mysqlcfg


[PHP-DOC] #32072 [NEW]: [DOC] French : Upload Typo

2005-02-22 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  [DOC] French : Upload Typo

Description:

$Revision: 1.37 $
fr/features/file-upload.xml

concidéré - considéré 
Value: 6. - Valeur : 6. (mettre la même nomenclature)
Si une limite de mémoire est activé - activée
de faible connexions - au pluriel ou singulier ?
des téléchargement multiples - téléchargements
mega-octets - Larousse2002 dit : mégaoctets

Le mot téléchargé est utilisé sur certaines pages alors que parfois le
mot uploadé est utilisé. Il faudrait être constant :)

Jean-Sébastien Goupil


-- 
Edit bug report at http://bugs.php.net/?id=32072edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32072r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32072r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32072r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32072r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32072r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32072r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32072r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32072r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32072r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32072r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32072r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32072r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32072r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32072r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32072r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32072r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32072r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32072r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32072r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32072r=mysqlcfg


[PHP-DOC] #31722 [NEW]: [DOC] French : Translation Error

2005-01-27 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  [DOC] French : Translation Error

Description:

language.variables.basics
en anglais : $bar = My name is $bar;  // Alter $bar...
en francais : $bar = Mon nom est Pierre;  // Modifie $bar...

Le résultat est le même, mais bon, voila :)


-- 
Edit bug report at http://bugs.php.net/?id=31722edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=31722r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=31722r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=31722r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=31722r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=31722r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=31722r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=31722r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=31722r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=31722r=support
Expected behavior:   http://bugs.php.net/fix.php?id=31722r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=31722r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=31722r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=31722r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=31722r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=31722r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=31722r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=31722r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=31722r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=31722r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=31722r=mysqlcfg


[PHP-DOC] #31665 [Csd-Opn]: [DOC] French : Histoire du PHP

2005-01-23 Thread jsgoupil at looktsrike dot com
 ID:  31665
 User updated by: jsgoupil at looktsrike dot com
 Reported By: jsgoupil at looktsrike dot com
-Status:  Closed
+Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

plate-formes - plates-formes
Larousse 2002 page 792 ;) héhé :)

(Lorsque je disais d'utiliser un correcteur d'orthographe, juste le
fait de copier le rendu dans un correcteur d'orthographe et regarder
les erreurs que cela sort, ça corrige beaucoup de fautes !)

Jean-Sébastien Goupil


Previous Comments:


[2005-01-23 11:06:25] [EMAIL PROTECTED]

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.





[2005-01-23 08:57:27] jsgoupil at looktsrike dot com

Oups, I've made a little mistake in my email, if you can change it, it
could be cool... but if you can't, I will not die for it :)

Real Mail : jsgoupil at lookstrike dot com

Thank you



[2005-01-23 08:45:38] jsgoupil at looktsrike dot com

Description:

http://ca.php.net/manual/fr/history.php

facilement dans HTML.La - décoler le .
En 1997, PHP/FI 2.0,la - décoler la ,
beta - bêta
une version alpha de PHP 3.0 était publié - était publiée
dizianes - dizaines
avec un groupe de développeur compétents - développeurs
sur différentes plate formes - plates-formes
 est la solution PHP pour écrire - un peu brutal comme début ?
concues - conçues
paralellement - parallèlement
témoingnage - témoignage 
Francais - Français
librarie - librairie 

@±

Jean-Sébastien Goupil






-- 
Edit this bug report at http://bugs.php.net/?id=31665edit=1


[PHP-DOC] #31662 [NEW]: [DOC] French : Variables XML

2005-01-22 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  [DOC] French : Variables XML

Description:

http://ca.php.net/manual/fr/language.variables.php

Erreur XML

$ma#239;s = 'jaune';  // valide; 'phpdoc_include ref=Ocirc/' est
ASCII 239.


Jean-Sébastien Goupil  Encore Moi :)


-- 
Edit bug report at http://bugs.php.net/?id=31662edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=31662r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=31662r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=31662r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=31662r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=31662r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=31662r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=31662r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=31662r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=31662r=support
Expected behavior:   http://bugs.php.net/fix.php?id=31662r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=31662r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=31662r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=31662r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=31662r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=31662r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=31662r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=31662r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=31662r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=31662r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=31662r=mysqlcfg


[PHP-DOC] #31663 [NEW]: [DOC] French : Language + .

2005-01-22 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  [DOC] French : Language + .

Description:

http://www.php.net/manual/fr/migration5.oop.php

Pareil dans Livedocs

référence du language..

 * Il y a 2 points.
 * langage et non language



Jean-Sébastien Goupil


-- 
Edit bug report at http://bugs.php.net/?id=31663edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=31663r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=31663r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=31663r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=31663r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=31663r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=31663r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=31663r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=31663r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=31663r=support
Expected behavior:   http://bugs.php.net/fix.php?id=31663r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=31663r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=31663r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=31663r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=31663r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=31663r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=31663r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=31663r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=31663r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=31663r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=31663r=mysqlcfg


[PHP-DOC] #31664 [NEW]: [DOC] French : Manu Bugs (FAQ)

2005-01-22 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  [DOC] French : Manu Bugs (FAQ)

Description:

http://www.php.net/manual/fr/faq.installation.php

systèmmes - systèmes
Unix: J'ai installé PHP en utili... - mettre Unix : (espace après Unix)
j'otiens - j'obtiens
fondammental - fondamental 
clôs - clos
copirez - copierez
l'adpater - l'adapter 
rationelles - rationnelles 
standart - standard
ci-dessou - ci-dessous
de la base de données populaires - populaire (données ou base ?)
Nous supposerons que vous avez installer - installé
Quelque chose est donc incorrect - incorrecte
l'empéchant - l'empchant 
apparait - apparaît 
elle a besoin que PHP soit compiler - compilé
commane - commande
Cette utilisateur doit avoir les droits - Cet
boutton - bouton
fchier - fichier

Vous mettez parfois RPM au pluriel avec un S (ou un s) et parfois vous ne
le mettez pas au pluriel... à vérifier et à standardiser !

Eh utilisez un vérificateur d'orthographe ? Faites la même chose avec
faq.build.php... et cie... c'est pleins de fautes...

Le texte est lourd et le style est différent de la documentation de PHP.
(faq != doc)


-- 
Edit bug report at http://bugs.php.net/?id=31664edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=31664r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=31664r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=31664r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=31664r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=31664r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=31664r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=31664r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=31664r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=31664r=support
Expected behavior:   http://bugs.php.net/fix.php?id=31664r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=31664r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=31664r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=31664r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=31664r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=31664r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=31664r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=31664r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=31664r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=31664r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=31664r=mysqlcfg


[PHP-DOC] #31665 [NEW]: [DOC] French : Histoire du PHP

2005-01-22 Thread jsgoupil at looktsrike dot com
From: jsgoupil at looktsrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  [DOC] French : Histoire du PHP

Description:

http://ca.php.net/manual/fr/history.php

facilement dans HTML.La - décoler le .
En 1997, PHP/FI 2.0,la - décoler la ,
beta - bêta
une version alpha de PHP 3.0 était publié - était publiée
dizianes - dizaines
avec un groupe de développeur compétents - développeurs
sur différentes plate formes - plates-formes
 est la solution PHP pour écrire - un peu brutal comme début ?
concues - conçues
paralellement - parallèlement
témoingnage - témoignage 
Francais - Français
librarie - librairie 

@±

Jean-Sébastien Goupil


-- 
Edit bug report at http://bugs.php.net/?id=31665edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=31665r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=31665r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=31665r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=31665r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=31665r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=31665r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=31665r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=31665r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=31665r=support
Expected behavior:   http://bugs.php.net/fix.php?id=31665r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=31665r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=31665r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=31665r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=31665r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=31665r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=31665r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=31665r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=31665r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=31665r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=31665r=mysqlcfg


[PHP-DOC] #31664 [Opn]: [DOC] French : Many Bugs (FAQ)

2005-01-22 Thread jsgoupil at lookstrike dot com
 ID:  31664
 User updated by: jsgoupil at lookstrike dot com
-Summary: [DOC] French : Manu Bugs (FAQ)
 Reported By: jsgoupil at lookstrike dot com
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

Correcting title :)


Previous Comments:


[2005-01-23 08:22:58] jsgoupil at lookstrike dot com

Description:

http://www.php.net/manual/fr/faq.installation.php

systèmmes - systèmes
Unix: J'ai installé PHP en utili... - mettre Unix : (espace après
Unix)
j'otiens - j'obtiens
fondammental - fondamental 
clôs - clos
copirez - copierez
l'adpater - l'adapter 
rationelles - rationnelles 
standart - standard
ci-dessou - ci-dessous
de la base de données populaires - populaire (données ou base ?)
Nous supposerons que vous avez installer - installé
Quelque chose est donc incorrect - incorrecte
l'empéchant - l'empchant 
apparait - apparaît 
elle a besoin que PHP soit compiler - compilé
commane - commande
Cette utilisateur doit avoir les droits - Cet
boutton - bouton
fchier - fichier

Vous mettez parfois RPM au pluriel avec un S (ou un s) et parfois vous
ne le mettez pas au pluriel... à vérifier et à standardiser !

Eh utilisez un vérificateur d'orthographe ? Faites la même chose avec
faq.build.php... et cie... c'est pleins de fautes...

Le texte est lourd et le style est différent de la documentation de
PHP. (faq != doc)






-- 
Edit this bug report at http://bugs.php.net/?id=31664edit=1


[PHP-DOC] #31665 [Opn]: [DOC] French : Histoire du PHP

2005-01-22 Thread jsgoupil at looktsrike dot com
 ID:  31665
 User updated by: jsgoupil at looktsrike dot com
 Reported By: jsgoupil at looktsrike dot com
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

Oups, I've made a little mistake in my email, if you can change it, it
could be cool... but if you can't, I will not die for it :)

Real Mail : jsgoupil at lookstrike dot com

Thank you


Previous Comments:


[2005-01-23 08:45:38] jsgoupil at looktsrike dot com

Description:

http://ca.php.net/manual/fr/history.php

facilement dans HTML.La - décoler le .
En 1997, PHP/FI 2.0,la - décoler la ,
beta - bêta
une version alpha de PHP 3.0 était publié - était publiée
dizianes - dizaines
avec un groupe de développeur compétents - développeurs
sur différentes plate formes - plates-formes
 est la solution PHP pour écrire - un peu brutal comme début ?
concues - conçues
paralellement - parallèlement
témoingnage - témoignage 
Francais - Français
librarie - librairie 

@±

Jean-Sébastien Goupil






-- 
Edit this bug report at http://bugs.php.net/?id=31665edit=1


[PHP-DOC] #31171 [NEW]: [DOC] French Error - openssl

2004-12-17 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  [DOC] French Error - openssl

Description:

French Doc :

http://ca3.php.net/manual/fr/function.openssl-csr-new.php

Dans les exemples on peut voir openssl_csr_export($csr, $csrout) et
var_dump($csrout);
, il ne faut pas traduire le and :)

Expected result:

Index: openssl-csr-new.xml
===
RCS file:
/repository/phpdoc-fr/reference/openssl/functions/openssl-csr-new.xml,v
retrieving revision 1.8
diff -u -r1.8 openssl-csr-new.xml
--- openssl-csr-new.xml 10 Nov 2004 22:08:35 -  1.8
+++ openssl-csr-new.xml 18 Dec 2004 02:36:39 -
@@ -155,9 +155,9 @@
 // mais vous pouvez aussi les mettre directement dans des fichiers.
 // Typiquement, vous allez envoyer la CSR à votre autorité de
certification
 // qui vous émettra un vrai certificat.
-openssl_csr_export($csr, $csrout) et var_dump($csrout);
-openssl_x509_export($sscert, $certout) et var_dump($certout);
-openssl_pkey_export($privkey, $pkeyout, mypassword) et
var_dump($pkeyout);
+openssl_csr_export($csr, $csrout) and var_dump($csrout);
+openssl_x509_export($sscert, $certout) and var_dump($certout);
+openssl_pkey_export($privkey, $pkeyout, mypassword) and
var_dump($pkeyout);
 
 // Affiche les erreurs qui sont survenues
 while (($e = openssl_error_string()) !== false) {



-- 
Edit bug report at http://bugs.php.net/?id=31171edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=31171r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=31171r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=31171r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=31171r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=31171r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=31171r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=31171r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=31171r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=31171r=support
Expected behavior:   http://bugs.php.net/fix.php?id=31171r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=31171r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=31171r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=31171r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=31171r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=31171r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=31171r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=31171r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=31171r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=31171r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=31171r=mysqlcfg


[PHP-DOC] #30517 [NEW]: French Error interface php5

2004-10-21 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  French Error interface php5

Description:

On http://ca3.php.net/manual/fr/language.oop5.interfaces.php
It's written Les classes qui implémentent une interface doivent le faire
en utilisant le mot clé implement et doivent avoir des définitions de
toutes les méthodes listées dans l'interface

The keyword is implements and not implement (written in italic)

Note : Also, the example is different from english to french.


-- 
Edit bug report at http://bugs.php.net/?id=30517edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=30517r=trysnapshot4
Try a CVS snapshot (php5.0): http://bugs.php.net/fix.php?id=30517r=trysnapshot50
Try a CVS snapshot (php5.1): http://bugs.php.net/fix.php?id=30517r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=30517r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=30517r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=30517r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=30517r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=30517r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=30517r=support
Expected behavior:   http://bugs.php.net/fix.php?id=30517r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=30517r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=30517r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=30517r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=30517r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=30517r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=30517r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=30517r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=30517r=float
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=30517r=mysqlcfg


[PHP-DOC] #30518 [NEW]: French Error Word Translation interface

2004-10-21 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  French Error Word Translation interface

Description:

On http://ca3.php.net/manual/fr/language.oop5.interfaces.php

In english we can found : Classes may implement more than one interface
if desired by listing each interface split by a comma
And in french : Les classes qui implémentent plus d'une interface doivent
le faire en listant chaque interface, séparées d'un espace

A comma in french is une virgule not a space...


-- 
Edit bug report at http://bugs.php.net/?id=30518edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=30518r=trysnapshot4
Try a CVS snapshot (php5.0): http://bugs.php.net/fix.php?id=30518r=trysnapshot50
Try a CVS snapshot (php5.1): http://bugs.php.net/fix.php?id=30518r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=30518r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=30518r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=30518r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=30518r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=30518r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=30518r=support
Expected behavior:   http://bugs.php.net/fix.php?id=30518r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=30518r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=30518r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=30518r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=30518r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=30518r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=30518r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=30518r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=30518r=float
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=30518r=mysqlcfg


[PHP-DOC] #30518 [Opn]: French Error Word Translation interface

2004-10-21 Thread jsgoupil at lookstrike dot com
 ID:  30518
 User updated by: jsgoupil at lookstrike dot com
 Reported By: jsgoupil at lookstrike dot com
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

Ok I found http://bugs.php.net/bug.php?id=29984 , you had correct it in
english but not in other languages I think...


Previous Comments:


[2004-10-21 20:42:10] jsgoupil at lookstrike dot com

Description:

On http://ca3.php.net/manual/fr/language.oop5.interfaces.php

In english we can found : Classes may implement more than one
interface if desired by listing each interface split by a comma
And in french : Les classes qui implémentent plus d'une interface
doivent le faire en listant chaque interface, séparées d'un espace

A comma in french is une virgule not a space...






-- 
Edit this bug report at http://bugs.php.net/?id=30518edit=1


[PHP-DOC] #30486 [NEW]: First call of imagecolorallocate in french

2004-10-19 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  First call of imagecolorallocate in french

Description:

You say in english that the first call of imagecolorallocate color the
background, but there is no note that talk about that in french
http://ca.php.net/manual/fr/function.imagecolorallocate.php
I think it should be added because its really important


-- 
Edit bug report at http://bugs.php.net/?id=30486edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=30486r=trysnapshot4
Try a CVS snapshot (php5.0): http://bugs.php.net/fix.php?id=30486r=trysnapshot50
Try a CVS snapshot (php5.1): http://bugs.php.net/fix.php?id=30486r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=30486r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=30486r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=30486r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=30486r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=30486r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=30486r=support
Expected behavior:   http://bugs.php.net/fix.php?id=30486r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=30486r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=30486r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=30486r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=30486r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=30486r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=30486r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=30486r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=30486r=float
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=30486r=mysqlcfg


[PHP-DOC] #30239 [NEW]: French Error ob_start()

2004-09-26 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  French Error ob_start()

Description:

http://ca3.php.net/ob_start (french)

Si vous les appelez depuis une fonction de collback

supposed to be

callback


-- 
Edit bug report at http://bugs.php.net/?id=30239edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=30239r=trysnapshot4
Try a CVS snapshot (php5.0): http://bugs.php.net/fix.php?id=30239r=trysnapshot50
Try a CVS snapshot (php5.1): http://bugs.php.net/fix.php?id=30239r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=30239r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=30239r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=30239r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=30239r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=30239r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=30239r=support
Expected behavior:   http://bugs.php.net/fix.php?id=30239r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=30239r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=30239r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=30239r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=30239r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=30239r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=30239r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=30239r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=30239r=float
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=30239r=mysqlcfg


[PHP-DOC] #30116 [NEW]: French Error mb_string

2004-09-17 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  French Error mb_string

Description:

In http://ca3.php.net/manual/fr/ref.mbstring.php

qui ne supporte que les jeux mon-octets
supposed to be
qui ne supporte que les jeux mono-octets


-- 
Edit bug report at http://bugs.php.net/?id=30116edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=30116r=trysnapshot4
Try a CVS snapshot (php5.0): http://bugs.php.net/fix.php?id=30116r=trysnapshot50
Try a CVS snapshot (php5.1): http://bugs.php.net/fix.php?id=30116r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=30116r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=30116r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=30116r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=30116r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=30116r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=30116r=support
Expected behavior:   http://bugs.php.net/fix.php?id=30116r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=30116r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=30116r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=30116r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=30116r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=30116r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=30116r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=30116r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=30116r=float
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=30116r=mysqlcfg


[PHP-DOC] #30033 [Bgs-Opn]: unpack('n') never returns negative values

2004-09-09 Thread jsgoupil at lookstrike dot com
 ID:   30033
 User updated by:  jsgoupil at lookstrike dot com
 Reported By:  jsgoupil at lookstrike dot com
-Status:   Bogus
+Status:   Open
-Bug Type: Scripting Engine problem
+Bug Type: Documentation problem
 Operating System: WinXP - Linux
 PHP Version:  5.0.1
 New Comment:

OMG, i saw your message and I was angry ! but i check and in French it
is written entier court signé
so it means signed short
It means that there is a doc error.


Previous Comments:


[2004-09-09 08:04:34] [EMAIL PROTECTED]

Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions. 

Thank you for your interest in PHP.

http://php.net/pack:

n   unsigned short (always 16 bit, big endian byte order)



[2004-09-09 06:21:40] jsgoupil at lookstrike dot com

Description:

With the following code, i receive the max positive value.
Same error in PHP4.3.7.

Reproduce code:
---
?php
$val = -1;
$val2 = pack('n',$val);
$val3 = unpack('nint',$val2);
echo $val3['int'];
?

Expected result:

-1

Actual result:
--
65535





-- 
Edit this bug report at http://bugs.php.net/?id=30033edit=1


[PHP-DOC] #29871 [NEW]: Missing Stuff Doc - global variables

2004-08-27 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  Missing Stuff Doc - global variables

Description:

On http://ca2.php.net/manual/fr/language.variables.predefined.php

There is the following sentence :
Pour des informations liées à cette évolution, lisez la documentation de
la directive register_globals, le chapitre sur la sécurité, à propos de
l'Utilisation des variables superglobales, ainsi que les annonces de PHP
4.1.0 et 4.2.0.

The link Utilisation des variables superglobales is linking to Missing
Stuff

In English, it links to http://ca2.php.net/manual/en/security.globals.php
and the 
http://ca2.php.net/manual/fr/security.globals.php is existing.

So why don't you links the french link to the fr page :) ?


-- 
Edit bug report at http://bugs.php.net/?id=29871edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=29871r=trysnapshot4
Try a CVS snapshot (php5.0): http://bugs.php.net/fix.php?id=29871r=trysnapshot50
Try a CVS snapshot (php5.1): http://bugs.php.net/fix.php?id=29871r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=29871r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=29871r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=29871r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=29871r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=29871r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=29871r=support
Expected behavior:   http://bugs.php.net/fix.php?id=29871r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=29871r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=29871r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=29871r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=29871r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=29871r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=29871r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=29871r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=29871r=float


[PHP-DOC] #29872 [NEW]: French Error peut = peu

2004-08-27 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  French Error peut = peu

Description:

On
http://ca2.php.net/manual/fr/security.globals.php

Sentence
Cette page explique comment on peut écrire du code peut sécuritaire en
utilisant cette directive.

Supposed to be
Cette page explique comment on peut écrire du code peu sécuritaire en
utilisant cette directive.

(peut is supposed to be peu (the 2nd one))


-- 
Edit bug report at http://bugs.php.net/?id=29872edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=29872r=trysnapshot4
Try a CVS snapshot (php5.0): http://bugs.php.net/fix.php?id=29872r=trysnapshot50
Try a CVS snapshot (php5.1): http://bugs.php.net/fix.php?id=29872r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=29872r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=29872r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=29872r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=29872r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=29872r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=29872r=support
Expected behavior:   http://bugs.php.net/fix.php?id=29872r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=29872r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=29872r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=29872r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=29872r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=29872r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=29872r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=29872r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=29872r=float


[PHP-DOC] #29367 [Csd-Opn]: mysqli_stmt_init() typo

2004-08-11 Thread jsgoupil at lookstrike dot com
 ID:  29367
 User updated by: jsgoupil at lookstrike dot com
 Reported By: jsgoupil at lookstrike dot com
-Status:  Closed
+Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

You know that there is always the same bug in other languages...


Previous Comments:


[2004-07-24 21:35:50] [EMAIL PROTECTED]

What's funny is I fixed this about an hour ago :)  It'll show up when
the manual is next built, here's the diff:

http://cvs.php.net/diff.php/phpdoc/en/reference/mysqli/functions/mysqli-stmt-init.xml?r1=1.3r2=1.4

Thanks for the report!




[2004-07-24 21:29:33] jsgoupil at lookstrike dot com

Description:

In the page http://ca3.php.net/manual/fr/function.mysqli-stmt-init.php

We can see mysqli_stmt-init and lower in the page, we can see
mysqli_stmt_init.

(I think it is in all languages and also in the list of the functions
on the left, and also in the last list of function on
http://ca3.php.net/manual/en/ref.mysqli.php)



We can also see on http://ca3.php.net/manual/en/ref.mysqli.php
stmt_initInitializes a statement for use with mysqli_stmt_prepare
(There is no dash to seperate the function and explanation)
English Only

Expected result:

Supposed to be mysqli_stmt_init() ?






-- 
Edit this bug report at http://bugs.php.net/?id=29367edit=1


[PHP-DOC] #29565 [NEW]: French Error strcasecmp

2004-08-07 Thread jsgoupil at looktsrike dot com
From: jsgoupil at looktsrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  French Error strcasecmp

Description:

On
http://ca2.php.net/manual/fr/function.strcasecmp.php

We can first see Comparaison sensible à la casse de chaînes binaires
(you say Sensible = sensitive)

At the bottom of the page
Notez que cette comparaison est insensible à la casse. 
(you say insensible = insensitive)

Supposed to be insensitive at all :P

PS : I found the same bug on http://bugs.php.net/bug.php?id=23559; but
it is closed and it dates of 9may !


-- 
Edit bug report at http://bugs.php.net/?id=29565edit=1
-- 
Try a CVS snapshot (php4):  http://bugs.php.net/fix.php?id=29565r=trysnapshot4
Try a CVS snapshot (php5):  http://bugs.php.net/fix.php?id=29565r=trysnapshot5
Fixed in CVS:   http://bugs.php.net/fix.php?id=29565r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=29565r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=29565r=needtrace
Need Reproduce Script:  http://bugs.php.net/fix.php?id=29565r=needscript
Try newer version:  http://bugs.php.net/fix.php?id=29565r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=29565r=support
Expected behavior:  http://bugs.php.net/fix.php?id=29565r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=29565r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=29565r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=29565r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=29565r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=29565r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=29565r=isapi
Install GNU Sed:http://bugs.php.net/fix.php?id=29565r=gnused
Floating point limitations: http://bugs.php.net/fix.php?id=29565r=float


[PHP-DOC] #29540 [NEW]: French Error

2004-08-05 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  French Error

Description:

On http://ca2.php.net/print_r

Si vous voulez obtenir le résultat de print_r() dans une chaîne, utilisez
le paramètre return. Si ce paramètre vaut TRUE, print_r() retournera ce
qu'il aurait affiché (ce qu'il fait pas défaut). 

(ce qu'il fait pas défaut) suposed to be (ce qu'il fait par défaut) =
par, not pas


-- 
Edit bug report at http://bugs.php.net/?id=29540edit=1
-- 
Try a CVS snapshot (php4):  http://bugs.php.net/fix.php?id=29540r=trysnapshot4
Try a CVS snapshot (php5):  http://bugs.php.net/fix.php?id=29540r=trysnapshot5
Fixed in CVS:   http://bugs.php.net/fix.php?id=29540r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=29540r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=29540r=needtrace
Need Reproduce Script:  http://bugs.php.net/fix.php?id=29540r=needscript
Try newer version:  http://bugs.php.net/fix.php?id=29540r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=29540r=support
Expected behavior:  http://bugs.php.net/fix.php?id=29540r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=29540r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=29540r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=29540r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=29540r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=29540r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=29540r=isapi
Install GNU Sed:http://bugs.php.net/fix.php?id=29540r=gnused
Floating point limitations: http://bugs.php.net/fix.php?id=29540r=float


[PHP-DOC] #29367 [NEW]: mysqli_init

2004-07-24 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  mysqli_init

Description:

In the page http://ca3.php.net/manual/fr/function.mysqli-stmt-init.php

We can see mysqli_stmt-init and lower in the page, we can see
mysqli_stmt_init.

(I think it is in all languages and also in the list of the functions on
the left, and also in the last list of function on
http://ca3.php.net/manual/en/ref.mysqli.php)



We can also see on http://ca3.php.net/manual/en/ref.mysqli.php
stmt_initInitializes a statement for use with mysqli_stmt_prepare (There
is no dash to seperate the function and explanation)
English Only

Expected result:

Supposed to be mysqli_stmt_init() ?


-- 
Edit bug report at http://bugs.php.net/?id=29367edit=1
-- 
Try a CVS snapshot (php4):  http://bugs.php.net/fix.php?id=29367r=trysnapshot4
Try a CVS snapshot (php5):  http://bugs.php.net/fix.php?id=29367r=trysnapshot5
Fixed in CVS:   http://bugs.php.net/fix.php?id=29367r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=29367r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=29367r=needtrace
Need Reproduce Script:  http://bugs.php.net/fix.php?id=29367r=needscript
Try newer version:  http://bugs.php.net/fix.php?id=29367r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=29367r=support
Expected behavior:  http://bugs.php.net/fix.php?id=29367r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=29367r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=29367r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=29367r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=29367r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=29367r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=29367r=isapi
Install GNU Sed:http://bugs.php.net/fix.php?id=29367r=gnused
Floating point limitations: http://bugs.php.net/fix.php?id=29367r=float


[PHP-DOC] #29289 [NEW]: Session Doc Mistake Typing

2004-07-20 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  Session Doc Mistake Typing

Description:

http://ca3.php.net/manual/fr/function.session-id.php

In French
session_id -- Let et/ou modifie l'identifiant courant de session

Let supposed to be Lit (like Read)


-- 
Edit bug report at http://bugs.php.net/?id=29289edit=1
-- 
Try a CVS snapshot (php4):  http://bugs.php.net/fix.php?id=29289r=trysnapshot4
Try a CVS snapshot (php5):  http://bugs.php.net/fix.php?id=29289r=trysnapshot5
Fixed in CVS:   http://bugs.php.net/fix.php?id=29289r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=29289r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=29289r=needtrace
Need Reproduce Script:  http://bugs.php.net/fix.php?id=29289r=needscript
Try newer version:  http://bugs.php.net/fix.php?id=29289r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=29289r=support
Expected behavior:  http://bugs.php.net/fix.php?id=29289r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=29289r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=29289r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=29289r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=29289r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=29289r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=29289r=isapi
Install GNU Sed:http://bugs.php.net/fix.php?id=29289r=gnused
Floating point limitations: http://bugs.php.net/fix.php?id=29289r=float


[PHP-DOC] #29056 [NEW]: preg_match example error (fr)

2004-07-07 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: WinXP
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  preg_match example error (fr)

Description:

There is an error on the page
http://ca3.php.net/manual/fr/function.preg-match.php

We can see
} else {
 echo 'Un mot n
Warning:  Unexpected character in input:  '\' (ASCII=92) state=1 in
/vhost/sites/www.php.ca/htdocs/include/layout.inc on line 21
'a pas été trouvé.';
}


French Only


-- 
Edit bug report at http://bugs.php.net/?id=29056edit=1
-- 
Try a CVS snapshot (php4):  http://bugs.php.net/fix.php?id=29056r=trysnapshot4
Try a CVS snapshot (php5):  http://bugs.php.net/fix.php?id=29056r=trysnapshot5
Fixed in CVS:   http://bugs.php.net/fix.php?id=29056r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=29056r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=29056r=needtrace
Need Reproduce Script:  http://bugs.php.net/fix.php?id=29056r=needscript
Try newer version:  http://bugs.php.net/fix.php?id=29056r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=29056r=support
Expected behavior:  http://bugs.php.net/fix.php?id=29056r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=29056r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=29056r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=29056r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=29056r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=29056r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=29056r=isapi
Install GNU Sed:http://bugs.php.net/fix.php?id=29056r=gnused
Floating point limitations: http://bugs.php.net/fix.php?id=29056r=float


[PHP-DOC] #29017 [NEW]: Red everywhere on ini.sect.data-handling.php

2004-07-05 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: WinXP
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  Red everywhere on ini.sect.data-handling.php

Description:

There is red on the half page
http://ca2.php.net/manual/fr/ini.sect.data-handling.php

(only french)


-- 
Edit bug report at http://bugs.php.net/?id=29017edit=1
-- 
Try a CVS snapshot (php4):  http://bugs.php.net/fix.php?id=29017r=trysnapshot4
Try a CVS snapshot (php5):  http://bugs.php.net/fix.php?id=29017r=trysnapshot5
Fixed in CVS:   http://bugs.php.net/fix.php?id=29017r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=29017r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=29017r=needtrace
Need Reproduce Script:  http://bugs.php.net/fix.php?id=29017r=needscript
Try newer version:  http://bugs.php.net/fix.php?id=29017r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=29017r=support
Expected behavior:  http://bugs.php.net/fix.php?id=29017r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=29017r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=29017r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=29017r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=29017r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=29017r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=29017r=isapi
Install GNU Sed:http://bugs.php.net/fix.php?id=29017r=gnused
Floating point limitations: http://bugs.php.net/fix.php?id=29017r=float


[PHP-DOC] #28613 [NEW]: Output sent before header or setcookie

2004-06-02 Thread jsgoupil at lookstrike dot com
From: jsgoupil at lookstrike dot com
Operating system: WinXP
PHP version:  5.0.0RC2
PHP Bug Type: Documentation problem
Bug description:  Output sent before header or setcookie

Description:

In the documentation : Remember that header() must be called before any
actual output is sent...
We can find the same in setcookie() function.

In PHP5, when we use
header(Location: http://www.lookstrike.com;);
, the function doen't care if we sent something before.

If other function exists like that, perhaps it will do the same thing...

php.ini file : 
display_error = On
error_reporting = E_ALL

I don't know if you have to clarify the docs or if it is a function bug...

Reproduce code:
---
?php
echo A;
header(Location: http://www.lookstrike.com;); // Going to Website
?

of

?php
echo A;
setcookie(TEST); // No error
?


-- 
Edit bug report at http://bugs.php.net/?id=28613edit=1
-- 
Try a CVS snapshot (php4):  http://bugs.php.net/fix.php?id=28613r=trysnapshot4
Try a CVS snapshot (php5):  http://bugs.php.net/fix.php?id=28613r=trysnapshot5
Fixed in CVS:   http://bugs.php.net/fix.php?id=28613r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=28613r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=28613r=needtrace
Need Reproduce Script:  http://bugs.php.net/fix.php?id=28613r=needscript
Try newer version:  http://bugs.php.net/fix.php?id=28613r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=28613r=support
Expected behavior:  http://bugs.php.net/fix.php?id=28613r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=28613r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=28613r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=28613r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=28613r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=28613r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=28613r=isapi
Install GNU Sed:http://bugs.php.net/fix.php?id=28613r=gnused
Floating point limitations: http://bugs.php.net/fix.php?id=28613r=float