Home | History | Annotate | Download | only in www
      1 Search CVS is a tool for converting cvs commits into a mysql database, which 
      2 can be updated without worry of data duplication. The database is then searchable 
      3 via a web page run on www.eclipse.org.
      4 
      5 This folder is a copy of the contents of another cvs repository for example purposes only,
      6 and should not be considered up to date. It is provided here simply to make this code base 
      7 more complete and to provide a self-contained runnable example. 
      8 
      9 For the latest version of this folder's contents, see:
     10 
     11 :pserver:anonymous (a] dev.eclipse.org:/cvsroot/org.eclipse/www/emf/
     12     searchcvs.php
     13     includes/searchcvs.css
     14     includes/db.php
     15 
     16 Additionally, there is a non-public file called includes/searchcvs-dbaccess.php (referenced by
     17 includes/db.php) which reads something like this:
     18 
     19 <?php
     20     $dbhost = "mysqlserver";
     21     $dbuser = "dbaccessro";
     22     $dbpass = "dbaccessropassword";
     23 ?>
     24 
     25 ** WARNING: DO NOT COMMIT THIS FILE INTO YOUR PUBLIC CVS REPOSITORY! **
     26 
     27 To put this file on the www.eclipse.org server without it being available in CVS for public view, 
     28 place a copy of the file in your home directory on dev.eclipse.org, then open a bug 
     29 (https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Community) or send a note to webmaster (a] eclipse.org
     30 and ask to have the file placed for you. Example: https://bugs.eclipse.org/bugs/show_bug.cgi?id=156451#c8
     31 
     32 ----
     33 
     34 Additional details on setup and on using this tool can be found here:
     35 
     36 http://wiki.eclipse.org/index.php/Search_CVS
     37