Re: [PHP-DOC] http docs

2007-01-18 Thread Carola 'Sammy' Kummert
Hi,

just a question:

Michael Wallner wrote:
 this is just a heads up, that I just committed http extension
 docs to reference/en/http.

| refentry id=function.HttpQueryString-construct
[...]
| methodparam choice=opttypebool/typeparameterglobal =
TRUE/parameter/methodparam
[...]
|  para
|   Operates on and modifies $_GET and $_SERVER['QUERY_STRING']
if global is TRUE.
|  /para

shouldnt the last paragraph looks like this?

para
 Operates on and modifies $_GET and $_SERVER['QUERY_STRING']
 if parameterglobal/parameter is true;.
/para


Regards,
Sammy


Re: [PHP-DOC] http docs

2007-01-18 Thread Michael Wallner
Carola 'Sammy' Kummert wrote:
 Hi,
 
 just a question:
 
 Michael Wallner wrote:
 this is just a heads up, that I just committed http extension
 docs to reference/en/http.
 
 | refentry id=function.HttpQueryString-construct
 [...]
 | methodparam choice=opttypebool/typeparameterglobal =
 TRUE/parameter/methodparam
 [...]
 |  para
 |   Operates on and modifies $_GET and $_SERVER['QUERY_STRING']
 if global is TRUE.
 |  /para
 
 shouldnt the last paragraph looks like this?
 
 para
  Operates on and modifies $_GET and $_SERVER['QUERY_STRING']
  if parameterglobal/parameter is true;.
 /para

Yeah, probably... updates to the docs are on my, well, TODO :-/

-- 
Michael


RE: [PHP-DOC] http docs

2006-07-24 Thread Richard A. Quadling
The XML files are not well formed.

You've got a leading space in front of the lines.

Attempting to make the manual ...

/cygdrive/D/cygwin/home/RichardQ/phpdoc/en/reference/http/HttpQueryStrin
g.xml:1: parser error : XML declaration allowed only at the start of the
document
 ?xml version=1.0 encoding=iso-8859-1?
  ^
/cygdrive/D/cygwin/home/RichardQ/phpdoc/en/reference/http/reference.xml:
166: parser error : Failure to process entity
reference.http.HttpQueryString
 reference.http.HttpQueryString;
 ^
/cygdrive/D/cygwin/home/RichardQ/phpdoc/en/reference/http/reference.xml:
166: parser error : Entity 'reference.http.HttpQueryString' not defined
 reference.http.HttpQueryString;
 ^
/cygdrive/D/cygwin/home/RichardQ/phpdoc/en/reference/http/reference.xml:
196: parser error : chunk is not well balanced


And HttpQueryString.xml ...

[space]?xml[space]version=1.0[space]encoding=iso-8859-1?
[space]!--[space]$Revision:[space]1.1[space]$[space]--
[space]!--[space]Generated[space]by[space]xml_proto.php[space]v2.4.[spa
ce]Found[space]in[space]/scripts[space]directory[space]of[space]phpdoc.[
space]--
[space]refentry[space]id=http.HttpQueryString
[space][space]refnamediv
[space][space][space]refnameHttpQueryString/refname
[space][space][space]refpurposeHTTP[space]Query[space]String[space]Cla
ss/refpurpose
[space][space]/refnamediv
[space][space]refsynopsisdiv
[space][space][space]synopsis
[space][space][space][space]class[space]HttpQueryString[space]implements
[space]Serializable,[space]ArrayAccess
[space][space][space]/synopsis
[space][space]/refsynopsisdiv
[space][space]refsect1[space]role=members[space]id=http.HttpQueryStr
ing.members
[space][space][space]titleClass[space]Members/title
[space][space][space]refsect2[space]id=http.HttpQueryString.properties

[space][space][space][space]reftitle.properties;

I replaced ' ' with [space]



-Original Message-
From: Michael Wallner [mailto:[EMAIL PROTECTED] 
Sent: 24 July 2006 12:27
To: phpdoc@lists.php.net
Subject: [PHP-DOC] http docs

Hi,

this is just a heads up, that I just committed http extension docs to
reference/en/http.  The commit message is probably too big to get
through the ML.

The functions previously shown at ref.http have been moved to networking
as discussed and are linked under a Builtin Functions section on the
new main page.

If anything breaks, it's been me ;)

Regards,
--
Michael


Re: [PHP-DOC] http docs

2006-07-24 Thread Michael Wallner

Richard A. Quadling wrote:

The XML files are not well formed.

You've got a leading space in front of the lines.

Attempting to make the manual ...

/cygdrive/D/cygwin/home/RichardQ/phpdoc/en/reference/http/HttpQueryStrin
g.xml:1: parser error : XML declaration allowed only at the start of the
document
 ?xml version=1.0 encoding=iso-8859-1?


Fixed, thanks.

--
Michael


Re: [PHP-DOC] http docs

2006-07-24 Thread Sean Coates
Michael Wallner wrote:
 Richard A. Quadling wrote:
 The XML files are not well formed.

 You've got a leading space in front of the lines.

 Attempting to make the manual ...

 /cygdrive/D/cygwin/home/RichardQ/phpdoc/en/reference/http/HttpQueryStrin
 g.xml:1: parser error : XML declaration allowed only at the start of the
 document
  ?xml version=1.0 encoding=iso-8859-1?
 
 Fixed, thanks.
 

You can prevent this by running make test in the doc root -- don't
worry, it doesn't take nearly as long as make.

S