Re: [PHP-DOC] Manual build failure

2005-07-27 Thread Darvin Andrioli
[...]
  and xref tags, either xref is not supported in this context (which I
  doubt), or xref should not point to a paragraph with an ID (which is
  probable). But as far as I guess, function.dom-domattr-construct is not
  a para, but a complete function doc section.
Finally, last night I was able to build the Italian manual on my system.
I got the 'unsupported para' only on one file (faq/com.xml) and not four as
Derick's build (probably his tree needs to be update) and I found out that
the error was caused by missing ID (due to an old translated file) declared
as para into missing-ids.xml.
Removed the translated file to fall back to the En version, I got [xref to
varlistentry unsupported].The En version has the ID ini.com.allow-dcom
declared as varlistentry (file reference/com/ini.xml, line 65).
I also build the En version and I got the same errors; so there is something
else to fix on my build system, or should be fixed the xref links on the En
tree?

Darvin


[PHP-DOC] Re: Possible error in online manual

2005-07-27 Thread Gabor Hojtsy
Hi Louis,

Please submit documentation bugs in the bug system (bugs.php.net),
classified as documentation problems.

Regards,
Gabor Hojtsy

Louis Williams wrote:
 The page is http://us2.php.net/manual/en/function.iis-get-service-state.php
 
 It states the following:
 
   iis_get_service_state -- Starts the service defined by
 ServiceId
 
 Shouldn't it read Gets the state of the service defined by ServiceId?
 
 Louis
 


Re: [PHP-DOC] Manual build failure

2005-07-27 Thread Gabor Hojtsy
and xref tags, either xref is not supported in this context (which I
doubt), or xref should not point to a paragraph with an ID (which is
probable). But as far as I guess, function.dom-domattr-construct is not
a para, but a complete function doc section.
 
 Finally, last night I was able to build the Italian manual on my system.
 I got the 'unsupported para' only on one file (faq/com.xml) and not four as
 Derick's build (probably his tree needs to be update) and I found out that
 the error was caused by missing ID (due to an old translated file) declared
 as para into missing-ids.xml.
 Removed the translated file to fall back to the En version, I got [xref to
 varlistentry unsupported].The En version has the ID ini.com.allow-dcom
 declared as varlistentry (file reference/com/ini.xml, line 65).
 I also build the En version and I got the same errors; so there is something
 else to fix on my build system, or should be fixed the xref links on the En
 tree?

Seems like to be a problem in the EN version then.

Goba


[PHP-DOC] cvs: phpdoc /en/reference/iisfunc/functions iis-get-service-state.xml

2005-07-27 Thread Jakub Vrana
vrana   Wed Jul 27 04:26:06 2005 EDT

  Modified files:  
/phpdoc/en/reference/iisfunc/functions  iis-get-service-state.xml 
  Log:
  Wrong refpurpose (spotted by Louis Williams)
  
http://cvs.php.net/diff.php/phpdoc/en/reference/iisfunc/functions/iis-get-service-state.xml?r1=1.2r2=1.3ty=u
Index: phpdoc/en/reference/iisfunc/functions/iis-get-service-state.xml
diff -u phpdoc/en/reference/iisfunc/functions/iis-get-service-state.xml:1.2 
phpdoc/en/reference/iisfunc/functions/iis-get-service-state.xml:1.3
--- phpdoc/en/reference/iisfunc/functions/iis-get-service-state.xml:1.2 Wed Apr 
17 02:39:02 2002
+++ phpdoc/en/reference/iisfunc/functions/iis-get-service-state.xml Wed Jul 
27 04:26:05 2005
@@ -1,10 +1,10 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
 !-- splitted from ./en/functions/iisfunc.xml, last change in rev 1.1 --
   refentry id=function.iis-get-service-state
refnamediv
 refnameiis_get_service_state/refname
-refpurposeStarts the service defined by ServiceId/refpurpose
+refpurposeReturns the state for the service defined by 
ServiceId/refpurpose
/refnamediv
refsect1
 titleDescription/title


Re: [PHP-DOC] Re: Possible error in online manual

2005-07-27 Thread Jakub Vrana
Fixed in CVS. Next time, please fill-in a bug report at bugs.php.net
as Goba said.

 Louis Williams wrote:
 The page is
 http://us2.php.net/manual/en/function.iis-get-service-state.php
 
 It states the following:
 
  iis_get_service_state -- Starts the service defined by
 ServiceId
 
 Shouldn't it read Gets the state of the service defined by ServiceId?

Jakub Vrana


[PHP-DOC] #33873 [Opn]: parse_ini_file() bails out with parse error when NO is inside file

2005-07-27 Thread eric at aplosmedia dot com
 ID:   33873
 User updated by:  eric at aplosmedia dot com
 Reported By:  eric at aplosmedia dot com
 Status:   Open
 Bug Type: Documentation problem
 Operating System: Windows XP; RHEL 3
 PHP Version:  5.0.4
 New Comment:

Im aware that these are reserved words, but I wasn't able to find
anything in the documentation that outlines this behavior...


Previous Comments:


[2005-07-26 22:10:34] [EMAIL PROTECTED]

no, on, off, yes, true, false, none are reserved words.
That should be documented somewhere.



[2005-07-26 21:59:06] eric at aplosmedia dot com

Description:

If an INI file contains a definition such as NO = 667, php will bail
out with a parse error.

Warning: Error parsing /home/public_html/lookup.ini on line 147 in
/home/public_html/start.php on line 24

This occurs on PHP 5.0.4 on Windows XP, RHEL 3  as well as php 4.3.11
on RHEL 3 (only platforms tested)

Reproduce code:
---
lookup.ini


; NETHERLANDS
NL = 31

; NORWAY
NO = 47

; NEW ZEALAND
NZ = 64


PHP


?php print_r( parse_ini_file( './lookup.ini' ) ); ?

Expected result:

should return an array:

Array
(
[NL] = 31
[NO] = 47
[NZ] = 64
}

Actual result:
--
Warning: Error parsing /home/public_html/lookup.ini on line 147 in
/home/public_html/start.php on line 24

Array
(
[NL] = 31
}





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


[PHP-DOC] cvs: phpdoc /en/install/windows apache2.xml

2005-07-27 Thread Jakub Vrana
vrana   Wed Jul 27 05:25:03 2005 EDT

  Modified files:  
/phpdoc/en/install/windows  apache2.xml 
  Log:
  Reversed meaning (bug #33878)
  
http://cvs.php.net/diff.php/phpdoc/en/install/windows/apache2.xml?r1=1.11r2=1.12ty=u
Index: phpdoc/en/install/windows/apache2.xml
diff -u phpdoc/en/install/windows/apache2.xml:1.11 
phpdoc/en/install/windows/apache2.xml:1.12
--- phpdoc/en/install/windows/apache2.xml:1.11  Mon Mar  7 13:43:37 2005
+++ phpdoc/en/install/windows/apache2.xml   Wed Jul 27 05:25:02 2005
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.11 $ --
+!-- $Revision: 1.12 $ --
sect1 id=install.windows.apache2
 titleApache 2.0.x on Microsoft Windows/title
 para
@@ -101,7 +101,7 @@
  /para
  note
   simpara
-   Remember to substitute the filenamec:/php//filename for your actual
+   Remember to substitute the filenamec:/php//filename by your actual
path to PHP in the above examples. Take care to use
either filenamephp4apache2.dll/filename or 
filenamephp5apache2.dll/filename in your LoadModule directive and


[PHP-DOC] #33878 [Opn-Csd]: sense reversed

2005-07-27 Thread vrana
 ID:   33878
 Updated by:   [EMAIL PROTECTED]
 Reported By:  bgbgbg at operamail dot com
-Status:   Open
+Status:   Closed
 Bug Type: Documentation problem
 Operating System: windows
 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.

Remember to substitute the c:/php/ by your actual path to PHP in the
above examples.


Previous Comments:


[2005-07-27 00:54:53] bgbgbg at operamail dot com

Description:

This, in the installation instructions for php on windows.


 Remember to substitute the c:/php/ for your actual path to PHP in the
above examples.

the sense is reversed in this statement. Should be:

Remember to substitute your actual path for the c:/php/ in the above
examples.






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


RE: [PHP-DOC] cvs: phpdoc /en/install/windows apache2.xml

2005-07-27 Thread Ford, Mike
On 27 July 2005 10:25, Jakub Vrana wrote:

 vrana Wed Jul 27 05:25:03 2005 EDT
 
   Modified files:
 /phpdoc/en/install/windowsapache2.xml
   Log:
   Reversed meaning (bug #33878)
 

 -   Remember to substitute the
 filenamec:/php//filename for your actual
 +   Remember to substitute the
 filenamec:/php//filename by your actual

Substitute ... by is not good English.  Substitute ... with, possibly,
but the original submitter had the best solution -- the sentence should be
reversed.

Cheers!

Mike

-
Mike Ford,  Electronic Information Services Adviser,
Learning Support Services, Learning  Information Services,
JG125, James Graham Building, Leeds Metropolitan University,
Headingley Campus, LEEDS,  LS6 3QS,  United Kingdom
Email: [EMAIL PROTECTED]
Tel: +44 113 283 2600 extn 4730  Fax:  +44 113 283 3211 


To view the terms under which this email is distributed, please go to 
http://disclaimer.leedsmet.ac.uk/email.htm


[PHP-DOC] cvs: phpdoc /en/install/windows apache2.xml

2005-07-27 Thread Jakub Vrana
vrana   Wed Jul 27 10:36:00 2005 EDT

  Modified files:  
/phpdoc/en/install/windows  apache2.xml 
  Log:
  Better English (thanks Mike Ford)
  
http://cvs.php.net/diff.php/phpdoc/en/install/windows/apache2.xml?r1=1.12r2=1.13ty=u
Index: phpdoc/en/install/windows/apache2.xml
diff -u phpdoc/en/install/windows/apache2.xml:1.12 
phpdoc/en/install/windows/apache2.xml:1.13
--- phpdoc/en/install/windows/apache2.xml:1.12  Wed Jul 27 05:25:02 2005
+++ phpdoc/en/install/windows/apache2.xml   Wed Jul 27 10:35:59 2005
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.12 $ --
+!-- $Revision: 1.13 $ --
sect1 id=install.windows.apache2
 titleApache 2.0.x on Microsoft Windows/title
 para
@@ -101,8 +101,8 @@
  /para
  note
   simpara
-   Remember to substitute the filenamec:/php//filename by your actual
-   path to PHP in the above examples. Take care to use
+   Remember to substitute your actual path to PHP for the
+   filenamec:/php//filename in the above examples. Take care to use
either filenamephp4apache2.dll/filename or 
filenamephp5apache2.dll/filename in your LoadModule directive and
emphasisnot/emphasis filenamephp4apache.dll/filename or 


[PHP-DOC] build failure en (2005-07-28)

2005-07-27 Thread derick
/usr/bin/openjade:/dat/dev/php/phpdoc/en/appendices/extensions.xml:88:21:E: 
[xref to para �� ����]
/usr/bin/openjade:/dat/dev/php/phpdoc/en/appendices/extensions.xml:104:21:E: 
[xref to para �� ����]
/usr/bin/openjade:/dat/dev/php/phpdoc/en/appendices/extensions.xml:508:20:E: 
[xref to para �� ����]
/usr/bin/openjade:/dat/dev/php/phpdoc/en/appendices/extensions.xml:533:20:E: 
[xref to para �� ����]
/usr/bin/openjade:/dat/dev/php/phpdoc/en/appendices/extensions.xml:594:20:E: 
[xref to para �� ����]