[PHP-DOC] cvs: livedocs / livedoc-index.php /themes/default html_format.php /themes/php.net html_format.php

2004-02-18 Thread Mehdi Achour
didou   Wed Feb 18 13:21:49 2004 EDT

  Modified files:  
/livedocs   livedoc-index.php 
/livedocs/themes/defaulthtml_format.php 
/livedocs/themes/php.nethtml_format.php 
  Log:
  rename this one and keep index_ for the TRUE index (look at the TODO)
  
http://cvs.php.net/diff.php/livedocs/livedoc-index.php?r1=1.8&r2=1.9&ty=u
Index: livedocs/livedoc-index.php
diff -u livedocs/livedoc-index.php:1.8 livedocs/livedoc-index.php:1.9
--- livedocs/livedoc-index.php:1.8  Mon Feb 16 12:54:59 2004
+++ livedocs/livedoc-index.php  Wed Feb 18 13:21:48 2004
@@ -18,9 +18,9 @@
 // | Livedocs index   |
 // +--+
 //
-// $Id: livedoc-index.php,v 1.8 2004/02/16 17:54:59 derick Exp $
+// $Id: livedoc-index.php,v 1.9 2004/02/18 18:21:48 didou Exp $
 
-echo index_page_header();
+echo functions_page_header();
 
 $alphabet = range('a', 'z');
 foreach ($alphabet as $char) {
@@ -55,7 +55,7 @@
 }
 
 $date = date("d-m-Y H:i:s");
-echo index_page_footer();
+echo functions_page_footer();
 
 function sqlite_starts_with($title, $char) {
$title = strtolower($title);
http://cvs.php.net/diff.php/livedocs/themes/default/html_format.php?r1=1.3&r2=1.4&ty=u
Index: livedocs/themes/default/html_format.php
diff -u livedocs/themes/default/html_format.php:1.3 
livedocs/themes/default/html_format.php:1.4
--- livedocs/themes/default/html_format.php:1.3 Mon Feb 16 15:11:48 2004
+++ livedocs/themes/default/html_format.php Wed Feb 18 13:21:49 2004
@@ -18,7 +18,7 @@
 // | headers and footers for the HTML rendering   |
 // +--+
 //  
-// $Id: html_format.php,v 1.3 2004/02/16 20:11:48 derick Exp $
+// $Id: html_format.php,v 1.4 2004/02/18 18:21:49 didou Exp $
 
 // in livedoc.php
 
@@ -94,7 +94,7 @@
 
 // in livedoc-index.php
 
-function index_page_header()
+function functions_page_header()
 {
 global $css_url;
 $head =<

[PHP-DOC] cvs: livedocs / livedoc-index.php

2004-02-02 Thread Moshe Doron
momoMon Feb  2 15:33:28 2004 EDT

  Modified files:  
/livedocs   livedoc-index.php 
  Log:
  support dynamic mode.
  
http://cvs.php.net/diff.php/livedocs/livedoc-index.php?r1=1.6&r2=1.7&ty=u
Index: livedocs/livedoc-index.php
diff -u livedocs/livedoc-index.php:1.6 livedocs/livedoc-index.php:1.7
--- livedocs/livedoc-index.php:1.6  Fri Jan 23 09:58:38 2004
+++ livedocs/livedoc-index.php  Mon Feb  2 15:33:28 2004
@@ -18,7 +18,7 @@
 // | Livedocs index   |
 // +--+
 //
-// $Id: livedoc-index.php,v 1.6 2004/01/23 14:58:38 didou Exp $
+// $Id: livedoc-index.php,v 1.7 2004/02/02 20:33:28 momo Exp $
 
 echo index_page_header();
 
@@ -48,7 +48,8 @@
 if ($q) {
 while ($r = sqlite_fetch_array($q, SQLITE_NUM)) {
 list($title, $id) = $r;
-echo "$title\n";
+$url = FORCE_DYNAMIC ? "?l=$lang&q=$id#$id" : "$lang/$id#$id";
+echo "$title\n";
 }
 }
 }


[PHP-DOC] cvs: livedocs / livedoc-index.php

2004-01-23 Thread Mehdi Achour
didou   Fri Jan 23 07:38:15 2004 EDT

  Modified files:  
/livedocs   livedoc-index.php 
  Log:
  use WEBBASE to avoid 404
  
http://cvs.php.net/diff.php/livedocs/livedoc-index.php?r1=1.4&r2=1.5&ty=u
Index: livedocs/livedoc-index.php
diff -u livedocs/livedoc-index.php:1.4 livedocs/livedoc-index.php:1.5
--- livedocs/livedoc-index.php:1.4  Fri Jan 23 04:40:23 2004
+++ livedocs/livedoc-index.php  Fri Jan 23 07:38:15 2004
@@ -18,7 +18,7 @@
 // | Livedocs index   |
 // +--+
 //
-// $Id: livedoc-index.php,v 1.4 2004/01/23 09:40:23 didou Exp $
+// $Id: livedoc-index.php,v 1.5 2004/01/23 12:38:15 didou Exp $
 
 echo <<$char ";
+echo "$char ";
 }
 
 echo "\n";
@@ -60,7 +60,7 @@
 if ($q) {
 while ($r = sqlite_fetch_array($q, SQLITE_NUM)) {
 list($title, $id) = $r;
-echo "$title\n";
+echo "$title\n";
 }
 }
 }


[PHP-DOC] cvs: livedocs / livedoc-index.php livedoc.php search.php

2004-01-23 Thread Mehdi Achour
didou   Fri Jan 23 04:40:23 2004 EDT

  Modified files:  
/livedocs   livedoc-index.php livedoc.php search.php 
  Log:
  use  everywhere and get rid of some noise
  
http://cvs.php.net/diff.php/livedocs/livedoc-index.php?r1=1.3&r2=1.4&ty=u
Index: livedocs/livedoc-index.php
diff -u livedocs/livedoc-index.php:1.3 livedocs/livedoc-index.php:1.4
--- livedocs/livedoc-index.php:1.3  Mon Jan 12 18:04:30 2004
+++ livedocs/livedoc-index.php  Fri Jan 23 04:40:23 2004
@@ -18,7 +18,7 @@
 // | Livedocs index   |
 // +--+
 //
-// $Id: livedoc-index.php,v 1.3 2004/01/12 23:04:30 didou Exp $
+// $Id: livedoc-index.php,v 1.4 2004/01/23 09:40:23 didou Exp $
 
 echo <<
 
 Livedocs Index
-
+
 
 
 Index
http://cvs.php.net/diff.php/livedocs/livedoc.php?r1=1.77&r2=1.78&ty=u
Index: livedocs/livedoc.php
diff -u livedocs/livedoc.php:1.77 livedocs/livedoc.php:1.78
--- livedocs/livedoc.php:1.77   Wed Jan 21 12:14:53 2004
+++ livedocs/livedoc.phpFri Jan 23 04:40:23 2004
@@ -18,14 +18,13 @@
 // | Generate an HTML version of a phpdoc/docbook page on the fly |
 // +--+
 //
-// $Id: livedoc.php,v 1.77 2004/01/21 17:14:53 nlopess Exp $
+// $Id: livedoc.php,v 1.78 2004/01/23 09:40:23 didou Exp $
  
 define('LIVEDOC_SOURCE', dirname(__FILE__));
 include LIVEDOC_SOURCE . '/common.php';
 include LIVEDOC_SOURCE . '/xml_classes.php';
 include LIVEDOC_SOURCE . '/style_mapping.php';
 
-// Handle the case where 
 if (!isset($_GET['q'])) {
 // Handles the 404. If a matching page is found, we redirect to it.
 // Else, we display a page with the closest matches and we stop the script.
@@ -100,7 +99,7 @@
 
 
 $title
-
+
 
 
 
http://cvs.php.net/diff.php/livedocs/search.php?r1=1.4&r2=1.5&ty=u
Index: livedocs/search.php
diff -u livedocs/search.php:1.4 livedocs/search.php:1.5
--- livedocs/search.php:1.4 Mon Jan 12 18:04:30 2004
+++ livedocs/search.php Fri Jan 23 04:40:23 2004
@@ -18,7 +18,7 @@
 // | Search page  |
 // +--+
 //
-// $Id: search.php,v 1.4 2004/01/12 23:04:30 didou Exp $
+// $Id: search.php,v 1.5 2004/01/23 09:40:23 didou Exp $
 
 include './common.php';
 
@@ -129,7 +129,7 @@
 ?>
 
   
-
+