Removed /usr/local from CDPATH
[clearscm.git] / web / clearquest / db.php
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2    "http://www.w3.org/TR/html4/strict.dtd">
3 <html>
4 <head>
5   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6   <meta name="GENERATOR" content="Mozilla/4.61 [en] (Win98; U) [Netscape]">
7
8   <title>ClearSCM: Clearquest</title>
9
10   <link rel="stylesheet" type="text/css" media="screen" href="/css/Article.css">
11   <link rel="stylesheet" type="text/css" media="print"  href="/css/Print.css">
12   <link rel="SHORTCUT ICON" href="http://clearscm.com/favicon.ico" type="image/png">
13
14   <!-- Google Analytics
15   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
16   </script>
17   <script type="text/javascript">
18     _uacct = "UA-89317-1";
19     urchinTracker ();
20   </script>
21   Google Analytics -->
22
23   <?php
24   include "clearscm.php";
25   menu_css ();
26   ?>
27 </head>
28
29 <body id="homepage">
30 <?php heading ();?>
31
32 <div id="page">
33   <div id="content">
34     <?php start_box ("cs3");?>
35       <h2>Clearquest</h2>
36     <?php end_box ();?>
37
38     <p>There are many times when we have written custom code to
39     interact with Clearquest databases. Below are links to some of the
40     code we have developed over the years.</p>
41
42     <p>At one client, we had written a <a
43     href="/clearquest/cqd">Clearquest Daemon</a>, a daemon process
44     that maintained a connection to a Clearquest database and serviced
45     requests for information about Clearquest defects.</p>
46
47     <p>Other Perl scripts had been developed for a client to merge
48     together two similar, yet different, Clearquest databases into a
49     new combined database. This script, <a
50     href="pqamerge.php">pqamerge</a> does just that. Obviously such
51     conversions and merges are very specific to the customer at
52     hand. Still this script serves to show how to interact with the
53     Clearquest API to perform such actions.</p>
54
55     <p>The pqamerge script, while it did perform the merge in general,
56     also had a few side scripts that were useful when performing this
57     merge:</p>
58
59     <ul>
60       <li><a href="PQA.pm.php">PQA.pm</a>: Perl Module to hold common
61       routines</li>
62
63       <li><a href="pqamerge.php">pqamerge</a>: Main script - performs
64       the merge</li>
65
66       <li><a href="pqaclean.php">pqaclean</a>: Cleans up by removing
67       all records from the destination database as well as removing
68       all Dynamic Lists.</li>
69
70       <li><a href="CheckCodePage.php">CheckCodePage.pl</a>: Checks to
71       see if there are any non US ASCII characters in the database
72       fields</li>
73
74       <li><a href="check_attachments.php">check_attachments</a>:
75       Checks to make sure that the size of the attachments added up
76       after the merge</li>
77
78       <li><a href="listdynlists.php">listdynlist</a>: Lists Dynamic
79       Lists present in the database</li>
80
81       <li><a href="enable_ldap.php">enable_ldap</a>: Prompts for the
82       data necessary to enable LDAP Authentication in Clearquest and
83       issues the necessary installutil commands to enable LDAP. Reads
84       data from a config file.</li>
85     </ul>
86   </div>
87
88   <?php copyright ();?>  
89 </div>
90
91 <script language="JavaScript" src="/JavaScript/Menus.js" type="text/javascript"></script>
92
93 </body>
94 </html>