php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #30464 No link for See Also item
Submitted: 2004-10-17 09:37 UTC Modified: 2005-01-10 01:46 UTC
From: davey@php.net Assigned: didou (profile)
Status: Closed Package: Documentation problem
PHP Version: Irrelevant OS: Irrelevant
Private report: No CVE-ID: None
 [2004-10-17 09:37 UTC] davey@php.net
Description:
------------
If you visit the following URI:

http://www.php.net/manual/en/function.soapserver-handle.php

At the bottom it reads:

See also SoapServer::SoapServer().

This should link to http://www.php.net/manual/en/function.soapserver-soapserver.php

- Davey


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-10-17 12:21 UTC] nlopess@php.net
Livedocs handles this correctly.

Just a problem in DSSSL...
 [2004-10-18 10:24 UTC] vrana@php.net
I think this patch should fix it. But I'm not a DSSSL expert so revise it please.

RCS file: /repository/phpdoc/dsssl/html-common.dsl,v
retrieving revision 1.15
diff -u -r1.15 html-common.dsl
--- html-common.dsl	3 Jun 2004 13:06:55 -0000	1.15
+++ html-common.dsl	18 Oct 2004 08:22:32 -0000
@@ -145,9 +145,10 @@
      (linkend 
       (string-append
        "function." 
-       (case-fold-down (string-replace
-                        (string-replace function-name "_" "-")
-                        "::" "."))))
+       (case-fold-down (string-replace (string-replace
+                        (string-replace function-name "->" "-")
+                        "_" "-")
+                        "::" "-"))))
      (target (element-with-id linkend))
      (parent-gi (gi (parent))))
     (cond

RCS file: /repository/phpdoc/dsssl/print.dsl.in,v
retrieving revision 1.5
diff -u -r1.5 print.dsl.in
--- print.dsl.in	2 Jan 2004 19:00:11 -0000	1.5
+++ print.dsl.in	18 Oct 2004 08:22:27 -0000
@@ -271,9 +271,10 @@
      (linkend 
       (string-append
        "function." 
-       (string-replace
-        (string-replace function-name "_" "-")
-        "::" ".")))
+       (string-replace (string-replace
+        (string-replace function-name "->" "-")
+        "_" "-")
+        "::" "-")))
      (target (element-with-id linkend))
      (parent-gi (gi (parent))))
     (cond

 [2004-10-18 10:27 UTC] derick@php.net
Did you test it Jakub?
 [2004-10-18 10:33 UTC] vrana@php.net
No, I don't have DSSSL stuff installed. Would someone be so kind and test it?
 [2004-10-19 06:33 UTC] curt@php.net
Jakub,

I couldn't apply the patch you provided, they were rejected, so I had to do it manually. But my output, if I applied the patch correctly simply doesn't seem to work:
  http://phpweb.zirzow.dyndns.org/manual/en/function.soapserver-handle.php
  
However, the way to handle OOP stuff is on the TODO list, so perhaps that decision should be made before this issue is resolved?



 [2004-12-28 16:55 UTC] didou@php.net
I'm actually switching SOAP docs to the new structure, this issue will be then solved.
 [2005-01-10 01:46 UTC] didou@php.net
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.


 [2020-02-07 06:11 UTC] phpdocbot@php.net
Automatic comment on behalf of didou
Revision: http://git.php.net/?p=doc/en.git;a=commit;h=5528dd40dfa6111d01f3369868fef74c997c43ea
Log: Switch ref.soap to the new structure # Changed filenames and ids to follow the other OO references # This also fix #30464
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Wed Nov 19 11:00:01 2025 UTC