|
From: Benjamin C. <bc...@us...> - 2001-12-15 18:58:18
|
Update of /cvsroot/phpbt/phpbt/docs/sgml
In directory usw-pr-cvs1:/tmp/cvs-serv1237/sgml
Modified Files:
configuration.sgml dependencies.sgml schema.sgml
Log Message:
Changes for moving phplib code internally. Database schema changes
Index: configuration.sgml
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/sgml/configuration.sgml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- configuration.sgml 2001/11/08 05:11:31 1.5
+++ configuration.sgml 2001/12/15 18:58:15 1.6
@@ -3,7 +3,7 @@
<title>Configuration Options</title>
<abstract>
-<para>Most of the options listed here can be configured via the Configuration page of the admin tools. The <varname>DB_</varname> and <varname>PHPLIB_PATH</varname> options can be found in <filename>config.php</filename>.</para>
+<para>Most of the options listed here can be configured via the Configuration page of the admin tools. The <varname>DB_</varname> options can be found in <filename>config.php</filename>.</para>
</abstract>
<variablelist>
Index: dependencies.sgml
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/sgml/dependencies.sgml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- dependencies.sgml 2001/10/09 04:03:35 1.7
+++ dependencies.sgml 2001/12/15 18:58:15 1.8
@@ -9,7 +9,7 @@
<sect2 id="dep-phplib">
<title>PHPlib</title>
- <para>PHPlib can be found at <ulink url="http://phplib.sourceforge.net/">http://phplib.sourceforge.net</ulink>. It provides the database abstraction layer, html templates, and session and authentication management.</para>
+ <para>As of version 0.6.0, &phpbt; includes the required portions of the PHPlib package in the <filename class="directory">inc</filename> sub-directory. The PHPlib code provides the database abstraction layer, html templates, and session and authentication management.</para>
<sect3>
<title>Database Abstraction</title>
<para>Instead of using PHP's database functions directly, interactions are done via database objects, which extend PHPlib's <classname>DB_Sql</classname> class.</para>
@@ -89,7 +89,7 @@
</sect2>
<sect2 id="dep-jpgraph">
<title>JpGraph</title>
- <para>This section will not cover the usage of JpGraph in any detail, since it is not an integral part of &phpbt;. Developers who are interested in using this class for generating bug reports or charting activity can see <filename>images.php</filename> for an example and are encouraged to visit JpGraph's web site at <ulink url="http://www.aditus.nu/jpgraph/">http://www.aditus.nu/jpgraph</ulink>.</para>
+ <para>This section will not cover the usage of JpGraph in any detail, since it is not an integral part of &phpbt;. Developers who are interested in using this class for generating bug reports or charting activity can see <filename>index.php</filename> for an example and are encouraged to visit JpGraph's web site at <ulink url="http://www.aditus.nu/jpgraph/">http://www.aditus.nu/jpgraph</ulink>.</para>
</sect2>
</sect1>
Index: schema.sgml
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/sgml/schema.sgml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- schema.sgml 2001/10/25 13:00:21 1.1
+++ schema.sgml 2001/12/15 18:58:15 1.2
@@ -133,6 +133,12 @@
<entry></entry>
</row>
<row>
+<entry>locked</entry>
+<entry>tinyint(1)</entry>
+<entry></entry>
+<entry>Accepts values 1 or 0 for whether or not a group can be edited from the admin tools.</entry>
+</row>
+<row>
<entry>created_by</entry>
<entry>int(10) unsigned</entry>
<entry></entry>
@@ -869,6 +875,46 @@
</row>
<row>
<entry>last_modified_date</entry>
+<entry>bigint(20) unsigned</entry>
+<entry></entry>
+<entry></entry>
+</row>
+</tbody>
+</tgroup>
+</table>
+
+<table>
+<title>Schema for table project_group</title>
+<tgroup cols="4">
+<thead>
+<row>
+<entry>Field</entry>
+<entry>Type</entry>
+<entry>Key</entry>
+<entry>Description</entry>
+</row>
+</thead>
+<tbody>
+<row>
+<entry>project_id</entry>
+<entry>int(10) unsigned</entry>
+<entry>Primary</entry>
+<entry></entry>
+</row>
+<row>
+<entry>group_id</entry>
+<entry>int(10) unsigned</entry>
+<entry>Primary</entry>
+<entry></entry>
+</row>
+<row>
+<entry>created_by</entry>
+<entry>int(10) unsigned</entry>
+<entry></entry>
+<entry></entry>
+</row>
+<row>
+<entry>created_date</entry>
<entry>bigint(20) unsigned</entry>
<entry></entry>
<entry></entry>
|