goba            Thu Dec 26 18:16:22 2002 EDT

  Added files:                 
    /phpdoc/htmlhelp/suppfiles/html     _function.html 

  Modified files:              
    /phpdoc/xsl htmlhelp-db.xsl.in 
  Log:
  Add _function.html to support IDEs without native PHP
  function lookup support. Now, an IDE can be configured
  to show a page for a function lookup in the form:
  
   
mk:@MSITStore:D:\phpcvs\phpdoc\htmlhelp\release\php_manual_en.chm::/_function.html#mysql_connect
  
  and the mysql_connect function page will appear...
  
  
Index: phpdoc/xsl/htmlhelp-db.xsl.in
diff -u phpdoc/xsl/htmlhelp-db.xsl.in:1.7 phpdoc/xsl/htmlhelp-db.xsl.in:1.8
--- phpdoc/xsl/htmlhelp-db.xsl.in:1.7   Wed Aug 14 09:04:05 2002
+++ phpdoc/xsl/htmlhelp-db.xsl.in       Thu Dec 26 18:16:22 2002
@@ -139,6 +139,7 @@
 _atw.gif
 _body.gif
 _code.gif
+_function.html
 _google.gif
 _index.html
 _masterheader.jpg

Index: phpdoc/htmlhelp/suppfiles/html/_function.html
+++ phpdoc/htmlhelp/suppfiles/html/_function.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
 <title>Function Redirect</title>
 <script language="JavaScript" type="text/javascript">
     function loadPage()
     {
         if (location.hash.length > 0) {
             funcname = location.hash.substr(1);
             funcpage = "function." + funcname.replace(/_/g, "-") + ".html";
             path = location.href.substring(0, location.href.lastIndexOf("/"));
             location.replace(path + '/' + funcpage);
         }
     }
 </script>
</head>
<body onload="loadPage();">
</body>
</html>



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to