[PHP-DOC] Re: Bug #40690 [Opn->Bgs]: I downloaded CHM docs (php_manual_ru.chm), but it always shows me blank page.

2007-03-04 Thread pavela

PHP Bug Database пишет:

ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at
http://bugs.php.net/?id=40690&edit=2


 ID:   40690
 Updated by:   [EMAIL PROTECTED]
 Reported By:  pavela at cigoutlet dot us
-Status:   Open
+Status:   Bogus
 Bug Type: Documentation problem
 Operating System: Windows XP
 PHP Version:  Irrelevant
 New Comment:

I've just downloaded
http://uk.php.net/get/php_manual_ru.chm/from/this/mirror via FireFox.

It is 8,015,380 bytes long.

Opened it fine.

Downloaded same URL via IE7. Same file size.

Opened it and I get the blank page.

But that's because IE will always "lock" some types of files.

See the notes on http://www.php.net/download-docs.php

"If you are using Microsoft Internet Explorer under Windows XP SP2 or
later and you are going to download the documentation in CHM format,
you should "unblock" the file after downloading it, by right-clicking
on it and selecting the properties menu item. Then click on the
'Unblock' button. Failing to do this may lead to errors in the
visualization of the file, due to a Microsoft bug."




Previous Comments:


[2007-03-02 14:49:41] pavela at cigoutlet dot us

Description:

I downloaded CHM docs (php_manual_ru.chm), but it always shows me blank
page. I was having to recompile it, and now I have normal CHM file. If
You wish, I can give it to use by all people. 









Thanks, I've checked this file on other system - Windows 2000 - and made 
sure that this file works fine. I think, it was bug of Windows XP. May 
be, this is because of IE6 (in Windows XP)? In Windows 2000 I have IE v5.5.


With respect, Paul


[PHP-DOC] #40723 [NEW]: new build system truncates pp.

2007-03-04 Thread [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  new build system truncates pp. 

Description:

As you can see when comparing http/reference.xml and php.net/http, the
(new?) build system truncates any subsequent  sections.


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


[PHP-DOC] cvs: ZendEngine2 / zend_language_parser.y

2007-03-04 Thread Marcus Boerger
helly   Sun Mar  4 16:25:58 2007 UTC

  Modified files:  
/ZendEngine2zend_language_parser.y 
  Log:
  - Implement '?:'
  [DOC] "expr1 ?: expr1" is a shortcut for: "expr1 ? expr1 : expr2" as
exists in gcc and discussed some time back. Note that this is not
an implementation ifsetor($var, default). While ifsetor would not
generate any message for non existing variables or array indices
the ternary shortcut does. Also the ternary shortcut does a boolean
evaluation rather then checking for isset(). That way ther ternary
shortcut can work on any expression while ifsetor can only work on
variables. Also to be silent one has do do: "@$expr1 ?: $expr2".
  
  
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_language_parser.y?r1=1.178&r2=1.179&diff_format=u
Index: ZendEngine2/zend_language_parser.y
diff -u ZendEngine2/zend_language_parser.y:1.178 
ZendEngine2/zend_language_parser.y:1.179
--- ZendEngine2/zend_language_parser.y:1.178Mon Jan 29 04:40:46 2007
+++ ZendEngine2/zend_language_parser.y  Sun Mar  4 16:25:57 2007
@@ -18,7 +18,7 @@
+--+
 */
 
-/* $Id: zend_language_parser.y,v 1.178 2007/01/29 04:40:46 iliaa Exp $ */
+/* $Id: zend_language_parser.y,v 1.179 2007/03/04 16:25:57 helly Exp $ */
 
 /*
  * LALR shift/reduce conflicts and how they are resolved:
@@ -611,6 +611,9 @@
|   expr '?' { zend_do_begin_qm_op(&$1, &$2 TSRMLS_CC); }
expr ':' { zend_do_qm_true(&$4, &$2, &$5 TSRMLS_CC); }
expr { zend_do_qm_false(&$$, &$7, &$2, &$5 TSRMLS_CC); }
+   |   expr '?' { zend_do_begin_qm_op(&$1, &$2 TSRMLS_CC); }
+   ':'  { zend_do_qm_true(&$1, &$2, &$4 TSRMLS_CC); }
+   expr { zend_do_qm_false(&$$, &$6, &$2, &$4 TSRMLS_CC); }
|   internal_functions_in_yacc { $$ = $1; }
|   T_INT_CAST expr { zend_do_cast(&$$, &$2, IS_LONG 
TSRMLS_CC); }
|   T_DOUBLE_CAST expr  { zend_do_cast(&$$, &$2, IS_DOUBLE 
TSRMLS_CC); }


[PHP-DOC] Notes Status, 16957 total

2007-03-04 Thread phpdoc
Following are the top 20 pages of the manual, sorted by the number
of user notes contributed. These sections could use a polish, those
notes represent 8.9% of the 16957 total user notes.

Notes  |  Page
---+-
  109  | http://php.net/manual/en/function.header.php
   97  | http://php.net/manual/en/function.strtotime.php
   94  | http://php.net/manual/en/ref.session.php
   87  | http://php.net/manual/en/function.preg-match.php
   81  | http://php.net/manual/en/function.fsockopen.php
   81  | http://php.net/manual/en/ref.image.php
   80  | http://php.net/manual/en/features.file-upload.php
   76  | http://php.net/manual/en/function.array-search.php
   76  | http://php.net/manual/en/function.readdir.php
   70  | http://php.net/manual/en/reserved.variables.php
   69  | http://php.net/manual/en/function.preg-replace.php
   68  | http://php.net/manual/en/ref.array.php
   68  | http://php.net/manual/en/function.fgetcsv.php
   67  | http://php.net/manual/en/ref.com.php
   67  | http://php.net/manual/en/function.mssql-connect.php
   66  | http://php.net/manual/en/function.rand.php
   64  | http://php.net/manual/en/function.in-array.php
   63  | http://php.net/manual/en/function.strpos.php
   63  | http://php.net/manual/en/function.date.php
   62  | http://php.net/manual/en/control-structures.foreach.php


[PHP-DOC] cvs: phpdoc /en language-snippets.ent

2007-03-04 Thread Philip Olson
philip  Sun Mar  4 09:39:34 2007 UTC

  Modified files:  
/phpdoc/en  language-snippets.ent 
  Log:
  Cleaned up the Windows PECL entities to use &url.pecl.win;
  
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/language-snippets.ent?r1=1.191&r2=1.192&diff_format=u
Index: phpdoc/en/language-snippets.ent
diff -u phpdoc/en/language-snippets.ent:1.191 
phpdoc/en/language-snippets.ent:1.192
--- phpdoc/en/language-snippets.ent:1.191   Wed Feb 28 05:36:07 2007
+++ phpdoc/en/language-snippets.ent Sun Mar  4 09:39:34 2007
@@ -1,4 +1,4 @@
-
+
 
 
 
@@ -464,17 +464,15 @@
 the extensions/ directory within the PHP Windows
 binaries download.'>
 
-PECL
-extension DLL from the 
-PHP Downloads page or at 
-&url.php.snapshots;.'>
-
-PECL extension from the various
-PECL snaps pages (select the appropriate repository for
-your version of PHP): PECL for PHP
-4.3.x, PECL for PHP 5.0.x
- or PECL Unstable.'>
+DLL for this PECL extension
+may be downloaded from either the 
+PHP Downloads page or from 
+&url.pecl.win;'>
+
+PECL 
+extensions may be downloaded from:
+&url.pecl.win;'>
 
 PECL repository and is no longer bundled with 


[PHP-DOC] cvs: phpdoc /en/reference/curl constants.xml reference.xml

2007-03-04 Thread Philip Olson
philip  Sun Mar  4 09:22:06 2007 UTC

  Modified files:  
/phpdoc/en/reference/curl   reference.xml constants.xml 
  Log:
  Moved cURL constants to their own page, possibly a model for all extensions.
  
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/curl/reference.xml?r1=1.16&r2=1.17&diff_format=u
Index: phpdoc/en/reference/curl/reference.xml
diff -u phpdoc/en/reference/curl/reference.xml:1.16 
phpdoc/en/reference/curl/reference.xml:1.17
--- phpdoc/en/reference/curl/reference.xml:1.16 Sat Mar  3 22:12:00 2007
+++ phpdoc/en/reference/curl/reference.xml  Sun Mar  4 09:22:06 2007
@@ -1,5 +1,5 @@
 
-
+
 
 
 
@@ -46,8 +46,13 @@
  handle.
 

-
-   &reference.curl.constants;
+   
+   
+&reftitle.constants;
+
+ See also the cURL Predefined 
Constants
+
+   


 &reftitle.examples;
@@ -86,6 +91,8 @@
 
   
 
+  &reference.curl.constants;
+
   &reference.curl.functions;
 
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/curl/constants.xml?r1=1.8&r2=1.9&diff_format=u
Index: phpdoc/en/reference/curl/constants.xml
diff -u phpdoc/en/reference/curl/constants.xml:1.8 
phpdoc/en/reference/curl/constants.xml:1.9
--- phpdoc/en/reference/curl/constants.xml:1.8  Tue Nov 14 13:01:32 2006
+++ phpdoc/en/reference/curl/constants.xml  Sun Mar  4 09:22:06 2007
@@ -1,6 +1,12 @@
 
-
-
+
+
+ 
+  Constants
+  Curl Predefined Constants
+ 
+ 
+ 
  &reftitle.constants;
  &extension.constants;
  
@@ -2861,7 +2867,8 @@

   
  
-
+
+
 
 

[PHP-DOC] cvs: phpdoc /en/reference/http reference.xml resources.xml

2007-03-04 Thread Philip Olson
philip  Sun Mar  4 08:38:38 2007 UTC

  Added files: 
/phpdoc/en/reference/http   resources.xml 

  Modified files:  
/phpdoc/en/reference/http   reference.xml 
  Log:
  Fixed build, ref.http is "special" (added resources via bug #31733)
  
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/http/reference.xml?r1=1.15&r2=1.16&diff_format=u
Index: phpdoc/en/reference/http/reference.xml
diff -u phpdoc/en/reference/http/reference.xml:1.15 
phpdoc/en/reference/http/reference.xml:1.16
--- phpdoc/en/reference/http/reference.xml:1.15 Sat Mar  3 22:12:00 2007
+++ phpdoc/en/reference/http/reference.xml  Sun Mar  4 08:38:38 2007
@@ -1,5 +1,5 @@
 
-
+
 
 
 
@@ -33,6 +33,7 @@
 Installation
 Configuration
 Global Constants
+Resource Types

   
 
@@ -163,15 +164,9 @@
  &reference.http.install;
 
  &reference.http.configuration;
+ 
+ &reference.http.resources;
 
- 
-  &reftitle.resources;
-  
-   This extension defines a stream resource returned by
-   http_get_request_body_stream and (thereafter)
-   HttpResponse::getStream.
-  
- 
 
  &reference.http.constants;
  &reference.http.HttpMessage;

http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/http/resources.xml?view=markup&rev=1.1
Index: phpdoc/en/reference/http/resources.xml
+++ phpdoc/en/reference/http/resources.xml



 
  Resources
  Resources created by the HTTP extension
 

 
  &reftitle.resources;
  
   This extension defines a stream resource returned by
   http_get_request_body_stream and (thereafter)
   HttpResponse::getStream.