[PHP-DOC] cvs: phpdoc / Makefile.in

2004-11-14 Thread anatoly techtonik
techtonik   Sun Nov 14 17:33:26 2004 EDT

  Modified files:  
/phpdoc Makefile.in 
  Log:
  use XSL to generate quick reference (quickref.xsl)
  
http://cvs.php.net/diff.php/phpdoc/Makefile.in?r1=1.155&r2=1.156&ty=u
Index: phpdoc/Makefile.in
diff -u phpdoc/Makefile.in:1.155 phpdoc/Makefile.in:1.156
--- phpdoc/Makefile.in:1.155Mon Nov  1 16:12:09 2004
+++ phpdoc/Makefile.in  Sun Nov 14 17:33:26 2004
@@ -16,7 +16,7 @@
 #
 
 #
-# $Id: Makefile.in,v 1.155 2004/11/01 21:12:09 derick Exp $
+# $Id: Makefile.in,v 1.156 2004/11/14 22:33:26 techtonik Exp $
 #
 
 all: html
@@ -50,6 +50,7 @@
 
 CHM_XSL_SHEET=xsl/htmlhelp.xsl
 HOWTO_XSL_SHEET=xsl/howto.xsl
+QUICKREF_XSL_SHEET=xsl/quickref.xsl
 
 BIGHTML_DEPS=$(HTML_STYLESHEET) dsssl/html-common.dsl dsssl/html-locale.dsl.in 
dsssl/common.dsl.in zendapi
 HTML_DEPS=$(HTML_STYLESHEET) dsssl/html-common.dsl dsssl/html-locale.dsl.in 
dsssl/common.dsl.in zendapihtml
@@ -147,7 +148,7 @@
 quickref: quickref.txt
 quickref.txt: FORCE
@if test ! -e funcindex.xml; then touch funcindex.xml; fi 
-   $(JADE) $(CATALOG) -d $(QUICKREF_STYLESHEET) -V nochunks -t sgml 
$(XMLDCL) manual.xml | sed -e 's/   */ /g' | sed -e 's/>/>/' | sed -e 
's/ quickref.txt
 
 kdevelop_toc: php.toc
 php.toc: manual.xml $(KDEVELOP_TOC_DEPS)


[PHP-DOC] cvs: phpdoc /xsl quickref.xsl

2004-11-14 Thread anatoly techtonik
techtonik   Sun Nov 14 17:30:58 2004 EDT

  Modified files:  
/phpdoc/xsl quickref.xsl 
  Log:
  write quick reference for every refname if there are more than one
  (e.g. mysqli)
  
http://cvs.php.net/diff.php/phpdoc/xsl/quickref.xsl?r1=1.4&r2=1.5&ty=u
Index: phpdoc/xsl/quickref.xsl
diff -u phpdoc/xsl/quickref.xsl:1.4 phpdoc/xsl/quickref.xsl:1.5
--- phpdoc/xsl/quickref.xsl:1.4 Sun Nov 14 15:37:29 2004
+++ phpdoc/xsl/quickref.xsl Sun Nov 14 17:30:57 2004
@@ -3,7 +3,7 @@
 
   quickref.xsl: Stylesheet for generating quick-reference
 
-  $Id: quickref.xsl,v 1.4 2004/11/14 20:37:29 techtonik Exp $
+  $Id: quickref.xsl,v 1.5 2004/11/14 22:30:57 techtonik Exp $
 
 -->
 
   
-  
-
+  
+
  - 
-
+
 

-  
+  
 
 
 
\ No newline at end of file


[PHP-DOC] cvs: phpdoc /xsl quickref.xsl

2004-11-14 Thread anatoly techtonik
techtonik   Sun Nov 14 15:37:31 2004 EDT

  Modified files:  
/phpdoc/xsl quickref.xsl 
  Log:
  function names in reference can't contain spaces
  fix since refnamediv is used more widely
  
http://cvs.php.net/diff.php/phpdoc/xsl/quickref.xsl?r1=1.3&r2=1.4&ty=u
Index: phpdoc/xsl/quickref.xsl
diff -u phpdoc/xsl/quickref.xsl:1.3 phpdoc/xsl/quickref.xsl:1.4
--- phpdoc/xsl/quickref.xsl:1.3 Sun Nov 14 12:36:11 2004
+++ phpdoc/xsl/quickref.xsl Sun Nov 14 15:37:29 2004
@@ -3,7 +3,7 @@
 
   quickref.xsl: Stylesheet for generating quick-reference
 
-  $Id: quickref.xsl,v 1.3 2004/11/14 17:36:11 techtonik Exp $
+  $Id: quickref.xsl,v 1.4 2004/11/14 20:37:29 techtonik Exp $
 
 -->
 
 
 
-  
-   - 
-  
-  
-
+  
+  
+
+ - 
+
+

+  
 
 
 
\ No newline at end of file


[PHP-DOC] cvs: phpdoc /xsl quickref.xsl

2004-11-14 Thread anatoly techtonik
techtonik   Sun Nov 14 12:36:11 2004 EDT

  Modified files:  
/phpdoc/xsl quickref.xsl 
  Log:
  production release
  [add] parameter to sort quickreference alphabetically regardless of case 
  
http://cvs.php.net/diff.php/phpdoc/xsl/quickref.xsl?r1=1.2&r2=1.3&ty=u
Index: phpdoc/xsl/quickref.xsl
diff -u phpdoc/xsl/quickref.xsl:1.2 phpdoc/xsl/quickref.xsl:1.3
--- phpdoc/xsl/quickref.xsl:1.2 Sun Nov 14 12:34:27 2004
+++ phpdoc/xsl/quickref.xsl Sun Nov 14 12:36:11 2004
@@ -3,20 +3,37 @@
 
   quickref.xsl: Stylesheet for generating quick-reference
 
-  $Id: quickref.xsl,v 1.2 2004/11/14 17:34:27 techtonik Exp $
+  $Id: quickref.xsl,v 1.3 2004/11/14 17:36:11 techtonik Exp $
 
 -->
+
+
+
+]>
 http://www.w3.org/1999/XSL/Transform";
 version="1.0">
 
 
 
+
+
 
 
 
-  
- 
-  
+  
+  
+
+
+
+  
+  
+
+
+
+  
+  
 
 
 


[PHP-DOC] cvs: phpdoc /xsl quickref.xsl

2004-11-14 Thread anatoly techtonik
techtonik   Sun Nov 14 12:34:28 2004 EDT

  Modified files:  
/phpdoc/xsl quickref.xsl 
  Log:
  eternal mess. linefeeds
  
http://cvs.php.net/diff.php/phpdoc/xsl/quickref.xsl?r1=1.1&r2=1.2&ty=u
Index: phpdoc/xsl/quickref.xsl
diff -u phpdoc/xsl/quickref.xsl:1.1 phpdoc/xsl/quickref.xsl:1.2
--- phpdoc/xsl/quickref.xsl:1.1 Sat Nov 13 12:49:41 2004
+++ phpdoc/xsl/quickref.xsl Sun Nov 14 12:34:27 2004
@@ -1,30 +1,30 @@
-
-
-http://www.w3.org/1999/XSL/Transform";
-version="1.0">
-
-
-
-
-
-
-  
- 
-  
-
-
-
-  
-   - 
-  
-  
-
-
-
+
+
+http://www.w3.org/1999/XSL/Transform";
+version="1.0">
+
+
+
+
+
+
+  
+ 
+  
+
+
+
+  
+   - 
+  
+  
+
+
+
 
\ No newline at end of file


[PHP-DOC] cvs: phpdoc /xsl common.xsl

2004-11-14 Thread anatoly techtonik
techtonik   Sun Nov 14 11:18:43 2004 EDT

  Modified files:  
/phpdoc/xsl common.xsl 
  Log:
  bring external links markup from previous version of templates
  
http://cvs.php.net/diff.php/phpdoc/xsl/common.xsl?r1=1.23&r2=1.24&ty=u
Index: phpdoc/xsl/common.xsl
diff -u phpdoc/xsl/common.xsl:1.23 phpdoc/xsl/common.xsl:1.24
--- phpdoc/xsl/common.xsl:1.23  Sun Nov 14 08:28:52 2004
+++ phpdoc/xsl/common.xsl   Sun Nov 14 11:18:42 2004
@@ -3,11 +3,10 @@
 
   common.xsl: Common customizations for all HTML formats
 
-  $Id: common.xsl,v 1.23 2004/11/14 13:28:52 techtonik Exp $
+  $Id: common.xsl,v 1.24 2004/11/14 16:18:42 techtonik Exp $
 
--->
-
 http://www.w3.org/1999/XSL/Transform";
 version="1.0">
@@ -426,4 +426,33 @@
 
 
 
+
+
+
+  
+
+  
+
+  
+  
+  
+
+  
+
+  
+
+  » 
+ 
+  
+
+  
+
+
+  
+
+  
+
+
+
 


[PHP-DOC] xsl/notes.txt/1.1/Sun Jul 18 20:42:08 2004//

2004-11-14 Thread techtonik
Hello, [EMAIL PROTECTED]

What for is that file?
Is this checkin by mistake?
xsl/notes.txt/1.1/Sun Jul 18 20:42:08 2004//

t
-- 
--[ http://wiki.phpdoc.info/DocLinks ]--


[PHP-DOC] cvs: phpdoc /xsl htmlhelp.xsl

2004-11-14 Thread anatoly techtonik
techtonik   Sun Nov 14 09:28:25 2004 EDT

  Modified files:  
/phpdoc/xsl htmlhelp.xsl 
  Log:
  add some comments (save state)
  
http://cvs.php.net/diff.php/phpdoc/xsl/htmlhelp.xsl?r1=1.17&r2=1.18&ty=u
Index: phpdoc/xsl/htmlhelp.xsl
diff -u phpdoc/xsl/htmlhelp.xsl:1.17 phpdoc/xsl/htmlhelp.xsl:1.18
--- phpdoc/xsl/htmlhelp.xsl:1.17Wed Nov 10 15:40:03 2004
+++ phpdoc/xsl/htmlhelp.xsl Sun Nov 14 09:28:25 2004
@@ -3,7 +3,7 @@
 
   HTML Help specific stylesheet
 
-  $Id: htmlhelp.xsl,v 1.17 2004/11/10 20:40:03 techtonik Exp $
+  $Id: htmlhelp.xsl,v 1.18 2004/11/14 14:28:25 techtonik Exp $
 
 -->
 http://www.w3.org/1999/XSL/Transform";
@@ -12,6 +12,30 @@
 xmlns:set="http://exslt.org/sets";
version="1.0"
 exclude-result-prefixes="doc exsl set">
+
 
 
 
@@ -496,8 +520,7 @@
   
 
 
-
+
 
 
   


[PHP-DOC] cvs: phpdoc /xsl common.xsl

2004-11-14 Thread anatoly techtonik
techtonik   Sun Nov 14 08:28:52 2004 EDT

  Modified files:  
/phpdoc/xsl common.xsl 
  Log:
  add some comments (save state)
  
http://cvs.php.net/diff.php/phpdoc/xsl/common.xsl?r1=1.22&r2=1.23&ty=u
Index: phpdoc/xsl/common.xsl
diff -u phpdoc/xsl/common.xsl:1.22 phpdoc/xsl/common.xsl:1.23
--- phpdoc/xsl/common.xsl:1.22  Sun Nov 14 08:15:42 2004
+++ phpdoc/xsl/common.xsl   Sun Nov 14 08:28:52 2004
@@ -3,12 +3,21 @@
 
   common.xsl: Common customizations for all HTML formats
 
-  $Id: common.xsl,v 1.22 2004/11/14 13:15:42 techtonik Exp $
+  $Id: common.xsl,v 1.23 2004/11/14 13:28:52 techtonik Exp $
 
 -->
 
 http://www.w3.org/1999/XSL/Transform";
 version="1.0">


[PHP-DOC] cvs: phpdoc /xsl common.xsl

2004-11-14 Thread anatoly techtonik
techtonik   Sun Nov 14 08:15:43 2004 EDT

  Modified files:  
/phpdoc/xsl common.xsl 
  Log:
  TOC labels (like section numbers) are not included in TOC href
  
http://cvs.php.net/diff.php/phpdoc/xsl/common.xsl?r1=1.21&r2=1.22&ty=u
Index: phpdoc/xsl/common.xsl
diff -u phpdoc/xsl/common.xsl:1.21 phpdoc/xsl/common.xsl:1.22
--- phpdoc/xsl/common.xsl:1.21  Wed Nov 10 15:34:59 2004
+++ phpdoc/xsl/common.xsl   Sun Nov 14 08:15:42 2004
@@ -3,9 +3,13 @@
 
   common.xsl: Common customizations for all HTML formats
 
-  $Id: common.xsl,v 1.21 2004/11/10 20:34:59 techtonik Exp $
+  $Id: common.xsl,v 1.22 2004/11/14 13:15:42 techtonik Exp $
 
 -->
+
 http://www.w3.org/1999/XSL/Transform";
 version="1.0">
 
@@ -291,6 +295,37 @@
 
 
 
+
+
+  
+  
+  
+
+  
+  
+
+  
+
+  
+  
+  
+
+  
+
+  
+
+  
+
+  
+
+
+
+  
+  
+
+
+
 
 
 


[PHP-DOC] cvs: phpdoc /xsl howto.xsl

2004-11-14 Thread anatoly techtonik
techtonik   Sun Nov 14 08:15:23 2004 EDT

  Modified files:  
/phpdoc/xsl howto.xsl 
  Log:
  TOC labels (like section numbers) are not included in TOC href (moved to 
common.xsl)
  
http://cvs.php.net/diff.php/phpdoc/xsl/howto.xsl?r1=1.5&r2=1.6&ty=u
Index: phpdoc/xsl/howto.xsl
diff -u phpdoc/xsl/howto.xsl:1.5 phpdoc/xsl/howto.xsl:1.6
--- phpdoc/xsl/howto.xsl:1.5Tue Nov  2 14:04:44 2004
+++ phpdoc/xsl/howto.xslSun Nov 14 08:15:22 2004
@@ -3,7 +3,7 @@
 
   HOWTO specific stylesheet based on Docbook XSL 1.66.1
 
-  $Id: howto.xsl,v 1.5 2004/11/02 19:04:44 techtonik Exp $
+  $Id: howto.xsl,v 1.6 2004/11/14 13:15:22 techtonik Exp $
 
 -->
 
-  
-
-
-
-
-
-
-
-
-  
-
-
-
-  
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-  
-
-