You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(34) |
Aug
(215) |
Sep
(180) |
Oct
(135) |
Nov
(105) |
Dec
(81) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
(76) |
Feb
(22) |
Mar
(154) |
Apr
(149) |
May
(128) |
Jun
(94) |
Jul
(14) |
Aug
(24) |
Sep
(77) |
Oct
(52) |
Nov
(22) |
Dec
(6) |
| 2003 |
Jan
(4) |
Feb
(10) |
Mar
(6) |
Apr
(29) |
May
(10) |
Jun
(37) |
Jul
(39) |
Aug
(13) |
Sep
(23) |
Oct
(3) |
Nov
(7) |
Dec
(2) |
| 2004 |
Jan
|
Feb
(10) |
Mar
(4) |
Apr
|
May
(35) |
Jun
(4) |
Jul
(17) |
Aug
(6) |
Sep
(14) |
Oct
(18) |
Nov
(2) |
Dec
(14) |
| 2005 |
Jan
(9) |
Feb
(30) |
Mar
(6) |
Apr
|
May
(38) |
Jun
(23) |
Jul
(21) |
Aug
(76) |
Sep
(50) |
Oct
(51) |
Nov
(13) |
Dec
|
|
From: Benjamin C. <bc...@us...> - 2001-12-19 14:05:17
|
Update of /cvsroot/phpbt/phpbt/admin
In directory usw-pr-cvs1:/tmp/cvs-serv28791
Modified Files:
resolution.php severity.php status.php
Log Message:
dumb queries
Index: resolution.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/resolution.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- resolution.php 2001/11/22 05:14:33 1.18
+++ resolution.php 2001/12/19 14:05:14 1.19
@@ -90,8 +90,7 @@
$page = isset($_gv['page']) ? $_gv['page'] : 0;
- $nr = $q->query("select count(*) from ".TBL_RESOLUTION.
- " where resolution_id = '$resolutionid' order by $order $sort");
+ $nr = $q->query("select count(*) from ".TBL_RESOLUTION);
list($selrange, $llimit, $npages, $pages) = multipages($nr,$page,
"order=$order&sort=$sort");
Index: severity.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/severity.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- severity.php 2001/11/22 05:14:33 1.14
+++ severity.php 2001/12/19 14:05:15 1.15
@@ -93,8 +93,7 @@
$page = isset($_gv['page']) ? $_gv['page'] : 0;
- $nr = $q->query("select count(*) from ".TBL_SEVERITY.
- " where severity_id = '$severityid' order by $order $sort");
+ $nr = $q->query("select count(*) from ".TBL_SEVERITY);
list($selrange, $llimit, $npages, $pages) = multipages($nr,$page,
"order=$order&sort=$sort");
Index: status.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/status.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- status.php 2001/11/22 05:14:33 1.18
+++ status.php 2001/12/19 14:05:15 1.19
@@ -90,8 +90,7 @@
$page = isset($_gv['page']) ? $_gv['page'] : 0;
- $nr = $q->query("select count(*) from ".TBL_STATUS.
- " where status_id = '$statusid' order by $order $sort");
+ $nr = $q->query("select count(*) from ".TBL_STATUS);
list($selrange, $llimit, $npages, $pages) = multipages($nr,$page,
"order=$order&sort=$sort");
|
|
From: Benjamin C. <bc...@us...> - 2001-12-19 13:52:06
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv25014
Modified Files:
bug.php query.php
Log Message:
Fixes bug #494578 - problem with previous and next links query
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- bug.php 2001/12/19 13:33:14 1.69
+++ bug.php 2001/12/19 13:52:03 1.70
@@ -554,7 +554,8 @@
$offset = $pos;
$limit = 1;
}
- $q->limit_query('select bug_id from '.TBL_BUG.' b
+ $q->limit_query('select bug_id, reporter.login as reporter, owner.login as owner
+ from '.TBL_BUG.' b
left join '.TBL_AUTH_USER.' owner on b.assigned_to = owner.user_id
left join '.TBL_AUTH_USER.' reporter on b.created_by = reporter.user_id
left join '.TBL_AUTH_USER.' lastmodifier on b.last_modified_by = lastmodifier.user_id
@@ -565,7 +566,7 @@
and b.os_id = os.os_id and b.version_id = version.version_id
and b.component_id = component.component_id and b.project_id = project.project_id '.
"and {$queryinfo['query']} and bug_id <> $bugid
- order by {$queryinfo['order']} {$queryinfo['sort']}", $limit, $offset);
+ order by {$queryinfo['order']} {$queryinfo['sort']}, bug_id asc", $limit, $offset);
$firstid = $q->grab_field();
$secondid = $q->grab_field();
Index: query.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/query.php,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- query.php 2001/12/08 14:55:42 1.47
+++ query.php 2001/12/19 13:52:03 1.48
@@ -248,7 +248,7 @@
and b.os_id = os.os_id and b.version_id = version.version_id
and b.component_id = component.component_id and b.project_id = project.project_id '.
($queryinfo['query'] != '' ? "and {$queryinfo['query']} " : '').
- "order by $order $sort", $selrange, $llimit);
+ "order by $order $sort, bug_id asc", $selrange, $llimit);
$headers = array(
'bug_id' => 'bug_id',
|
|
From: Benjamin C. <bc...@us...> - 2001-12-19 13:38:06
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv19853
Modified Files:
bug.php
Log Message:
Call-time pass by reference is deprecated -- fixes bug #494267
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- bug.php 2001/12/12 14:42:57 1.68
+++ bug.php 2001/12/19 13:33:14 1.69
@@ -79,7 +79,7 @@
///
/// Send the email about changes to the bug and log the changes in the DB
-function do_changedfields($userid, $buginfo, $cf = array(), $comments = '') {
+function do_changedfields($userid, &$buginfo, $cf = array(), $comments = '') {
global $q, $t, $u, $select, $now, $STRING;
// It's a new bug if the changedfields array is empty and there are no comments
@@ -360,7 +360,7 @@
$q->query("update ".TBL_BUG." set title = '$title', url = '$url', severity_id = $severity_id, priority = $priority, ".(isset($status_id) ? "status_id = $status_id, " : ''). ($changeresolution ? "resolution_id = $resolution_id, " : ''). (isset($assignedto) ? "assigned_to = $assignedto, " : '')." project_id = $project_id, version_id = $version_id, component_id = $component_id, os_id = $os_id, last_modified_by = $u, last_modified_date = $now where bug_id = $bugid");
if (count($changedfields) or !empty($comments)) {
- do_changedfields($u, &$buginfo, $changedfields, $comments);
+ do_changedfields($u, $buginfo, $changedfields, $comments);
}
header("Location: bug.php?op=show&bugid=$bugid&pos=$pos");
}
@@ -405,7 +405,7 @@
$now, $u, $now, $project, $version, $component, '$os',
'{$GLOBALS['HTTP_USER_AGENT']}')");
$buginfo = $q->grab('select * from '.TBL_BUG." where bug_id = $bugid");
- do_changedfields($u, &$buginfo);
+ do_changedfields($u, $buginfo);
} else {
$q->query("update ".TBL_BUG." set title = '$title', description = '$description', url = '$url', severity_id = '$severity', priority = '$priority', status_id = $status, assigned_to = '$assignedto', project_id = $project, version_id = $version, component_id = $component, os_id = '$os', browser_string = '{$GLOBALS['HTTP_USER_AGENT']}' last_modified_by = $u, last_modified_date = $time where bug_id = '$bugid'");
}
|
|
From: Benjamin C. <bc...@us...> - 2001-12-19 13:36:32
|
Update of /cvsroot/phpbt/phpbt/admin
In directory usw-pr-cvs1:/tmp/cvs-serv20698/admin
Modified Files:
os.php
Log Message:
Fixes bug #494294 -- problems with query in list_items()
Index: os.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/os.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- os.php 2001/11/29 00:29:51 1.18
+++ os.php 2001/12/19 13:36:29 1.19
@@ -68,7 +68,7 @@
function list_items($osid = 0, $error = '') {
- global $me, $db, $t, $_gv, $STRING, $TITLE;
+ global $q, $me, $db, $t, $_gv, $STRING, $TITLE;
$t->set_file('content','oslist.html');
$t->set_block('content','row','rows');
@@ -84,7 +84,7 @@
$page = isset($_gv['page']) ? $_gv['page'] : 0;
- $nr = $q->grab_field("select count(*) from ".TBL_OS." where os_id = '$osid' order by $order $sort");
+ $nr = $q->grab_field("select count(*) from ".TBL_OS);
list($selrange, $llimit, $npages, $pages) = multipages($nr,$page,
"order=$order&sort=$sort");
|
|
From: Ben C. <php...@be...> - 2001-12-15 20:32:46
|
Only a month and change since the last releae. :) |
|
From: Benjamin C. <bc...@us...> - 2001-12-15 19:27:15
|
Update of /cvsroot/phpbt/phpbt In directory usw-pr-cvs1:/tmp/cvs-serv6437 Modified Files: CHANGELOG Log Message: Release date Index: CHANGELOG =================================================================== RCS file: /cvsroot/phpbt/phpbt/CHANGELOG,v retrieving revision 1.37 retrieving revision 1.38 diff -u -r1.37 -r1.38 --- CHANGELOG 2001/12/14 15:04:14 1.37 +++ CHANGELOG 2001/12/15 19:27:12 1.38 @@ -1,4 +1,4 @@ --- 0.6.0 -- +-- 0.6.0 -- 15 Dec 2001 : Fixed a bug with old queries being retained when submitting a new query. : Moved session, auth, and database classes into the package. : Added Previous and Next links for moving to other bugs in the bug list |
|
From: Benjamin C. <bc...@us...> - 2001-12-15 19:17:47
|
Update of /cvsroot/phpbt/phpbt In directory usw-pr-cvs1:/tmp/cvs-serv4664 Modified Files: TODO Log Message: Updated for 0.6.0 Index: TODO =================================================================== RCS file: /cvsroot/phpbt/phpbt/TODO,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- TODO 2001/11/29 00:30:48 1.12 +++ TODO 2001/12/15 19:17:44 1.13 @@ -2,9 +2,6 @@ - Create bugs via email - "Quick query" links (most active bugs, most serious bugs, unassigned bugs) -Users: -- User groups to be able to restrict user bug submissions to specific projects - Misc: - Be able to color by priority instead of severity - Conversion script from a bugzilla database |
|
From: Benjamin C. <bc...@us...> - 2001-12-15 19:17:12
|
Update of /cvsroot/phpbt/phpbt In directory usw-pr-cvs1:/tmp/cvs-serv4569 Modified Files: README Log Message: Updated for 0.6.0 Index: README =================================================================== RCS file: /cvsroot/phpbt/phpbt/README,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- README 2000/12/26 18:35:00 1.2 +++ README 2001/12/15 19:17:09 1.3 @@ -8,11 +8,10 @@ database backend and uses templates for rendering the pages. Currently phpBugTracker is nowhere near a drop-in replacement for Bugzilla, so -don't expect it to be. Maybe it will get to that point one day, maybe it won't. -If it doesn't meet your needs, your development help is welcome, but your -whining isn't! Just remember that I do this in my very limited spare time for -fun, and I hope others can enjoy what little I have done/will do on it. That -said, I hope you enjoy using phpBugTracker, and that you find it useful. +don't expect it to be. Maybe it will get to that point one day, maybe it won't, +but either way I'm trying to make it a capable bug tracker. I hope you enjoy +using phpBugTracker, and that you find it useful. + Comments and suggestions are always welcome, either at the SourceForge page at http://www.sourceforge.net/projects/phpbt or via email at bc...@us.... @@ -23,8 +22,6 @@ Here is a list of the requirements to get this running on your server. 1. A webserver 2. PHP -3. PHPlib (http://phplib.netuse.de) - This is used for the templates and the - database abstraction. -4. A database - Currently the default database is MySQL (http://www.mysql.com/), +3. A database - Currently MySQL and PostgreSQL have been tested, though the goal is to be database independent. The query routine is a notable exception to that goal at the moment. |
|
From: Benjamin C. <bc...@us...> - 2001-12-15 19:14:37
|
Update of /cvsroot/phpbt/phpbt In directory usw-pr-cvs1:/tmp/cvs-serv4120 Modified Files: INSTALL Log Message: Updated for 0.6.0 Index: INSTALL =================================================================== RCS file: /cvsroot/phpbt/phpbt/INSTALL,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- INSTALL 2001/11/09 04:56:28 1.11 +++ INSTALL 2001/12/15 19:14:35 1.12 @@ -1,24 +1,13 @@ Ok, here's the quick and dirty install instructions: -1. Install PHPlib (http://sourceforge.net/projects/phplib/) if it's not already - installed. Note that with recent versions of PHP, PHPlib needs to be - patched. Please do the following with the patch file in this directory: - cat page.inc.patch | patch -p0 -b /path/to/phplib/page.inc - - Make sure you replace /path/to/phplib with the actual path to the installation - of phplib. On windows systems you can edit page.inc and change line 67 - from 'if (isset($user)) {' to 'if (isset($user) && $user) {' (without the - quotes). +Optional: Install JpGraph (http://www.aditus.nu/jpgraph/) if you wish to use it. - Optional: Install JpGraph (http://www.aditus.nu/jpgraph/) if you wish to - use it. - -2. Copy the directory tree from the tarball to a location suitable for serving +1. Copy the directory tree from the tarball to a location suitable for serving web pages. -3. With your web browser, go the location where you installed the package. +2. With your web browser, go the location where you installed the package. You will be presented with a web page that will help you configure and install the application. -4. After completing the installation, login and start reporting bugs. +3. After completing the installation, login and start reporting bugs. |
|
From: Benjamin C. <bc...@us...> - 2001-12-15 19:01:19
|
Update of /cvsroot/phpbt/phpbt/languages In directory usw-pr-cvs1:/tmp/cvs-serv1909/languages Modified Files: pt-br.php Log Message: Updates from Alexandre Index: pt-br.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/pt-br.php,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- pt-br.php 2001/12/10 13:42:04 1.8 +++ pt-br.php 2001/12/15 19:01:16 1.9 @@ -33,7 +33,7 @@ 'noprojects' => 'Nenhum projeto encontrado', 'totalbugs' => 'Total de Bugs', 'giveemail' => 'Por favor, digite um endereço de email válido', - 'givelogin' => 'Please enter a login', + 'givelogin' => 'Por favor, digite um login', 'loginused' => 'Este login já está sendo usado', 'newacctsubject' => 'phpBugTracker Login', 'newacctmessage' => "Sua senha phpBugTracker é %s", @@ -64,9 +64,9 @@ 'bad_attachment' => 'Este anexo não existe', 'attachment_too_large' => 'O arquivo escolhido é maior que '.number_format(ATTACHMENT_MAX_SIZE).' bytes', 'bad_permission' => 'Você não tem as permissões necessárias para essa função', - 'project_only_all_groups' => 'You cannot choose specific groups when "All Groups" is chosen', - 'previous_bug' => 'Previous', - 'next_bug' => 'Next' + 'project_only_all_groups' => 'Você não pode escolher um grupo específico quando "All groups" esta selecionado', + 'previous_bug' => 'Anterior', + 'next_bug' => 'Próximo' ); // Page titles @@ -90,7 +90,7 @@ 'user' => 'Usuários', 'home' => 'Home', 'reporting' => 'Relatórios', - 'group' => 'Groups' + 'group' => 'Grupos' ); ?> |
|
From: Benjamin C. <bc...@us...> - 2001-12-15 18:58:19
|
Update of /cvsroot/phpbt/phpbt/docs/html In directory usw-pr-cvs1:/tmp/cvs-serv1237/html Modified Files: adminguide.html bugdetail.html bugsearch.html configuration.html devguide.html devstandards.html index.html schema.html userguide.html Log Message: Changes for moving phplib code internally. Database schema changes Index: adminguide.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/adminguide.html,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- adminguide.html 2001/12/01 17:56:33 1.11 +++ adminguide.html 2001/12/15 18:58:14 1.12 @@ -4,8 +4,7 @@ >Administrator's Guide</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.73 -"><LINK +CONTENT="Modular DocBook HTML Stylesheet Version 1.74b"><LINK REL="HOME" TITLE="phpBugTracker" HREF="index.html"><LINK Index: bugdetail.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/bugdetail.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- bugdetail.html 2001/10/17 13:44:10 1.1 +++ bugdetail.html 2001/12/15 18:58:14 1.2 @@ -4,8 +4,7 @@ >Working with Bugs</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.73 -"><LINK +CONTENT="Modular DocBook HTML Stylesheet Version 1.74b"><LINK REL="HOME" TITLE="phpBugTracker" HREF="index.html"><LINK Index: bugsearch.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/bugsearch.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- bugsearch.html 2001/10/17 13:44:10 1.2 +++ bugsearch.html 2001/12/15 18:58:14 1.3 @@ -4,8 +4,7 @@ >Searching the Bug Database</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.73 -"><LINK +CONTENT="Modular DocBook HTML Stylesheet Version 1.74b"><LINK REL="HOME" TITLE="phpBugTracker" HREF="index.html"><LINK Index: configuration.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/configuration.html,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- configuration.html 2001/12/01 17:56:33 1.11 +++ configuration.html 2001/12/15 18:58:14 1.12 @@ -4,8 +4,7 @@ >Configuration Options</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.73 -"><LINK +CONTENT="Modular DocBook HTML Stylesheet Version 1.74b"><LINK REL="HOME" TITLE="phpBugTracker" HREF="index.html"><LINK @@ -90,9 +89,6 @@ >Most of the options listed here can be configured via the Configuration page of the admin tools. The <TT CLASS="VARNAME" >DB_</TT -> and <TT -CLASS="VARNAME" ->PHPLIB_PATH</TT > options can be found in <TT CLASS="FILENAME" >config.php</TT Index: devguide.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/devguide.html,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- devguide.html 2001/12/01 17:56:33 1.17 +++ devguide.html 2001/12/15 18:58:14 1.18 @@ -4,8 +4,7 @@ >Developer's Guide</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.73 -"><LINK +CONTENT="Modular DocBook HTML Stylesheet Version 1.74b"><LINK REL="HOME" TITLE="phpBugTracker" HREF="index.html"><LINK @@ -132,7 +131,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN254" +NAME="AEN253" ></A ><P >Adding on to or extending phpBugTracker should be easy for those with a knowledge of PHP and SQL. New developers are always welcome to join the project at <A @@ -155,7 +154,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN259" +NAME="AEN258" ></A ><P >phpBugTracker requires one external package, PHPlib, and can optionally use JpGraph. Of course a web server running a version of PHP later than 4.0 and a database server are also necessary.</P @@ -170,17 +169,16 @@ >3.1.1. PHPlib</A ></H2 ><P ->PHPlib can be found at <A -HREF="http://phplib.sourceforge.net/" -TARGET="_top" ->http://phplib.sourceforge.net</A ->. It provides the database abstraction layer, html templates, and session and authentication management.</P +>As of version 0.6.0, phpBugTracker includes the required portions of the PHPlib package in the <TT +CLASS="FILENAME" +>inc</TT +> sub-directory. The PHPlib code provides the database abstraction layer, html templates, and session and authentication management.</P ><DIV CLASS="SECT3" ><H3 CLASS="SECT3" ><A -NAME="AEN265" +NAME="AEN264" >3.1.1.1. Database Abstraction</A ></H3 ><P @@ -211,7 +209,7 @@ ><DIV CLASS="EXAMPLE" ><A -NAME="AEN276" +NAME="AEN275" ></A ><P ><B @@ -249,7 +247,7 @@ ><H3 CLASS="SECT3" ><A -NAME="AEN279" +NAME="AEN278" >3.1.1.2. Templates</A ></H3 ><P @@ -257,7 +255,7 @@ ><DIV CLASS="EXAMPLE" ><A -NAME="AEN282" +NAME="AEN281" ></A ><P ><B @@ -294,7 +292,7 @@ ><H3 CLASS="SECT3" ><A -NAME="AEN285" +NAME="AEN284" >3.1.1.3. Session and Authentication</A ></H3 ><P @@ -366,7 +364,7 @@ ><DIV CLASS="EXAMPLE" ><A -NAME="AEN310" +NAME="AEN309" ></A ><P ><B @@ -409,7 +407,7 @@ ><P >This section will not cover the usage of JpGraph in any detail, since it is not an integral part of phpBugTracker. Developers who are interested in using this class for generating bug reports or charting activity can see <TT CLASS="FILENAME" ->images.php</TT +>index.php</TT > for an example and are encouraged to visit JpGraph's web site at <A HREF="http://www.aditus.nu/jpgraph/" TARGET="_top" Index: devstandards.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/devstandards.html,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- devstandards.html 2001/12/01 17:56:33 1.18 +++ devstandards.html 2001/12/15 18:58:14 1.19 @@ -4,8 +4,7 @@ >Development Standards</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.73 -"><LINK +CONTENT="Modular DocBook HTML Stylesheet Version 1.74b"><LINK REL="HOME" TITLE="phpBugTracker" HREF="index.html"><LINK @@ -84,7 +83,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN320" +NAME="AEN319" ></A ><P > This section details the coding and process standards to be Index: index.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/index.html,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- index.html 2001/12/01 17:56:33 1.15 +++ index.html 2001/12/15 18:58:14 1.16 @@ -4,8 +4,7 @@ >phpBugTracker</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.73 -"><LINK +CONTENT="Modular DocBook HTML Stylesheet Version 1.74b"><LINK REL="NEXT" TITLE="User's Guide" HREF="userguide.html"><LINK @@ -129,17 +128,17 @@ ></DT ><DT >3-1. <A -HREF="devguide.html#AEN276" +HREF="devguide.html#AEN275" >Using the database class</A ></DT ><DT >3-2. <A -HREF="devguide.html#AEN282" +HREF="devguide.html#AEN281" >Using the template class</A ></DT ><DT >3-3. <A -HREF="devguide.html#AEN310" +HREF="devguide.html#AEN309" >Permission and Group Checking</A ></DT ></DL Index: schema.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/schema.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- schema.html 2001/12/01 17:56:33 1.3 +++ schema.html 2001/12/15 18:58:14 1.4 @@ -4,8 +4,7 @@ >Database Schema</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.73 -"><LINK +CONTENT="Modular DocBook HTML Stylesheet Version 1.74b"><LINK REL="HOME" TITLE="phpBugTracker" HREF="index.html"><LINK @@ -75,7 +74,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN378" +NAME="AEN377" ></A ><P ><B @@ -188,7 +187,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN410" +NAME="AEN409" ></A ><P ><B @@ -368,7 +367,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN460" +NAME="AEN459" ></A ><P ><B @@ -438,6 +437,24 @@ ><TD ALIGN="LEFT" VALIGN="TOP" +>locked</TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +>tinyint(1)</TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +> </TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +>Accepts values 1 or 0 for whether or not a group can be edited from the admin tools.</TD +></TR +><TR +><TD +ALIGN="LEFT" +VALIGN="TOP" >created_by</TD ><TD ALIGN="LEFT" @@ -514,7 +531,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN501" +NAME="AEN505" ></A ><P ><B @@ -663,7 +680,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN543" +NAME="AEN547" ></A ><P ><B @@ -915,7 +932,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN613" +NAME="AEN617" ></A ><P ><B @@ -1302,7 +1319,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN721" +NAME="AEN725" ></A ><P ><B @@ -1410,7 +1427,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN751" +NAME="AEN755" ></A ><P ><B @@ -1484,7 +1501,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN772" +NAME="AEN776" ></A ><P ><B @@ -1628,7 +1645,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN812" +NAME="AEN816" ></A ><P ><B @@ -1754,7 +1771,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN847" +NAME="AEN851" ></A ><P ><B @@ -1973,7 +1990,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN908" +NAME="AEN912" ></A ><P ><B @@ -2083,7 +2100,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN939" +NAME="AEN943" ></A ><P ><B @@ -2157,7 +2174,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN960" +NAME="AEN964" ></A ><P ><B @@ -2229,7 +2246,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN980" +NAME="AEN984" ></A ><P ><B @@ -2337,7 +2354,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1010" +NAME="AEN1014" ></A ><P ><B @@ -2516,12 +2533,120 @@ ></DIV ><DIV CLASS="TABLE" +><A +NAME="AEN1064" +></A +><P +><B +>Table 3-17. Schema for table project_group</B +></P +><TABLE +BORDER="1" +CLASS="CALSTABLE" +><THEAD +><TR +><TH +ALIGN="LEFT" +VALIGN="TOP" +>Field</TH +><TH +ALIGN="LEFT" +VALIGN="TOP" +>Type</TH +><TH +ALIGN="LEFT" +VALIGN="TOP" +>Key</TH +><TH +ALIGN="LEFT" +VALIGN="TOP" +>Description</TH +></TR +></THEAD +><TBODY +><TR +><TD +ALIGN="LEFT" +VALIGN="TOP" +>project_id</TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +>int(10) unsigned</TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +>Primary</TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +> </TD +></TR +><TR +><TD +ALIGN="LEFT" +VALIGN="TOP" +>group_id</TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +>int(10) unsigned</TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +>Primary</TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +> </TD +></TR +><TR +><TD +ALIGN="LEFT" +VALIGN="TOP" +>created_by</TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +>int(10) unsigned</TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +> </TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +> </TD +></TR +><TR +><TD +ALIGN="LEFT" +VALIGN="TOP" +>created_date</TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +>bigint(20) unsigned</TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +> </TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +> </TD +></TR +></TBODY +></TABLE +></DIV +><DIV +CLASS="TABLE" ><A -NAME="AEN1060" +NAME="AEN1094" ></A ><P ><B ->Table 3-17. Schema for table resolution</B +>Table 3-18. Schema for table resolution</B ></P ><TABLE BORDER="1" @@ -2625,11 +2750,11 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1090" +NAME="AEN1124" ></A ><P ><B ->Table 3-18. Schema for table saved_query</B +>Table 3-19. Schema for table saved_query</B ></P ><TABLE BORDER="1" @@ -2738,11 +2863,11 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1122" +NAME="AEN1156" ></A ><P ><B ->Table 3-19. Schema for table severity</B +>Table 3-20. Schema for table severity</B ></P ><TABLE BORDER="1" @@ -2867,11 +2992,11 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1158" +NAME="AEN1192" ></A ><P ><B ->Table 3-20. Schema for table status</B +>Table 3-21. Schema for table status</B ></P ><TABLE BORDER="1" @@ -2975,11 +3100,11 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1188" +NAME="AEN1222" ></A ><P ><B ->Table 3-21. Schema for table user_group</B +>Table 3-22. Schema for table user_group</B ></P ><TABLE BORDER="1" @@ -3083,11 +3208,11 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1218" +NAME="AEN1252" ></A ><P ><B ->Table 3-22. Schema for table user_perm</B +>Table 3-23. Schema for table user_perm</B ></P ><TABLE BORDER="1" @@ -3155,11 +3280,11 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1238" +NAME="AEN1272" ></A ><P ><B ->Table 3-23. Schema for table version</B +>Table 3-24. Schema for table version</B ></P ><TABLE BORDER="1" Index: userguide.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/userguide.html,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- userguide.html 2001/10/17 13:44:10 1.9 +++ userguide.html 2001/12/15 18:58:15 1.10 @@ -4,8 +4,7 @@ >User's Guide</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.73 -"><LINK +CONTENT="Modular DocBook HTML Stylesheet Version 1.74b"><LINK REL="HOME" TITLE="phpBugTracker" HREF="index.html"><LINK |
|
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>
|
|
From: Benjamin C. <bc...@us...> - 2001-12-15 18:45:52
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv31105
Modified Files:
config-dist.php
Log Message:
More comments, remove PHPLIB_PATH
Index: config-dist.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/config-dist.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- config-dist.php 2001/12/14 14:40:19 1.3
+++ config-dist.php 2001/12/15 18:45:48 1.4
@@ -21,18 +21,17 @@
// ------------------------------------------------------------------------
// $Id$
-define ('PHPLIB_PATH', ''); // If PHPlib is not in your include path
-
// Database Config
-define ('DB_TYPE', '{db_type}'); // using PHPlib file naming
-define ('DB_HOST', '{db_host}');
-define ('DB_DATABASE', '{db_database}');
-define ('DB_USER', '{db_user}');
-define ('DB_PASSWORD', '{db_pass}');
+define ('DB_TYPE', '{db_type}'); // using PHPlib file naming (mysql | pgsql)
+define ('DB_HOST', '{db_host}'); // hostname of database server
+define ('DB_DATABASE', '{db_database}'); // database name
+define ('DB_USER', '{db_user}'); // username for database connection
+define ('DB_PASSWORD', '{db_pass}'); // password for database connection
// Database Table Config
// you can change either the prefix of the table names or each table name individually
define ('TBL_PREFIX', '{tbl_prefix}'); // the prefix for all tables, leave empty to use the old style
+
define ('TBL_ACTIVE_SESSIONS', TBL_PREFIX.'active_sessions');
define ('TBL_DB_SEQUENCE', TBL_PREFIX.'db_sequence');
define ('TBL_ATTACHMENT', TBL_PREFIX.'attachment');
|
|
From: Benjamin C. <bc...@us...> - 2001-12-15 18:45:22
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv30999
Modified Files:
UPGRADING
Log Message:
A little more info
Index: UPGRADING
===================================================================
RCS file: /cvsroot/phpbt/phpbt/UPGRADING,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- UPGRADING 2001/12/15 15:38:44 1.4
+++ UPGRADING 2001/12/15 18:45:19 1.5
@@ -7,7 +7,8 @@
Following the steps below will upgrade your installation of phpBT.
1. Edit config-dist.php, changing the database settings to match those from
- your old config.php. Save config-dist.php as config.php.
+ your old config.php (DB_* and TBL_PREFIX constants). Save config-dist.php
+ as config.php.
2. With your web browser, load upgrade.php from the directory where you
installed the new set of files.
3. After running that script your installation has been upgraded.
|
|
From: Benjamin C. <bc...@us...> - 2001-12-15 15:44:59
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv25569
Modified Files:
upgrade.php
Log Message:
Fixes
Index: upgrade.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/upgrade.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- upgrade.php 2001/12/11 13:56:48 1.4
+++ upgrade.php 2001/12/15 15:44:56 1.5
@@ -29,12 +29,12 @@
global $q;
$upgraded = $q->grab_field("select nextid from ". TBL_DB_SEQUENCE.
- ' where seq_name = "'.TBL_AUTH_GROUP."'");
+ ' where seq_name = "'.TBL_AUTH_GROUP.'"');
if (!$upgraded) {
// Make changes to the auth_group table
$q->query('alter table '.TBL_AUTH_GROUP.' add locked tinyint(1) not null default 0 after group_name');
$q->query('update '.TBL_AUTH_GROUP.' set locked = 1');
- $q->query("insert into db_sequence values('".TBL_AUTH_GROUP."', 3)");
+ $q->query("insert into ".TBL_DB_SEQUENCE." values('".TBL_AUTH_GROUP."', 3)");
// New table
if (DB_TYPE == 'pgsql') {
|
|
From: Benjamin C. <bc...@us...> - 2001-12-15 15:38:47
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv24537
Modified Files:
UPGRADING
Log Message:
These instructions might actually work :)
Index: UPGRADING
===================================================================
RCS file: /cvsroot/phpbt/phpbt/UPGRADING,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- UPGRADING 2001/12/14 14:53:50 1.3
+++ UPGRADING 2001/12/15 15:38:44 1.4
@@ -6,8 +6,8 @@
Following the steps below will upgrade your installation of phpBT.
-1. If you put this set of files in a new directory separate from your current
- installation of phpBT, then copy config.php from your installation here.
+1. Edit config-dist.php, changing the database settings to match those from
+ your old config.php. Save config-dist.php as config.php.
2. With your web browser, load upgrade.php from the directory where you
installed the new set of files.
3. After running that script your installation has been upgraded.
|
|
From: Benjamin C. <bc...@us...> - 2001-12-14 15:11:25
|
Update of /cvsroot/phpbt/phpbt/templates/default In directory usw-pr-cvs1:/tmp/cvs-serv25466/templates/default Modified Files: wrap.html Log Message: Removed an extra space Index: wrap.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/wrap.html,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- wrap.html 2001/12/14 15:08:01 1.10 +++ wrap.html 2001/12/14 15:11:22 1.11 @@ -16,7 +16,7 @@ <a href="index.php">Home</a> | <a href="bug.php?op=add">Enter Bug</a> | <a href="query.php?op=query">Query Bugs</a> | - <a href="report.php">Reporting</a> | + <a href="report.php">Reporting</a> | <a href="docs/html/userguide.html">Documentation</a> ] </b></font> |
|
From: Benjamin C. <bc...@us...> - 2001-12-14 15:08:04
|
Update of /cvsroot/phpbt/phpbt/templates/default In directory usw-pr-cvs1:/tmp/cvs-serv24440/templates/default Modified Files: wrap.html Log Message: Fixes bug #486225 - Links to the documentation Index: wrap.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/wrap.html,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- wrap.html 2001/12/14 15:04:14 1.9 +++ wrap.html 2001/12/14 15:08:01 1.10 @@ -16,7 +16,8 @@ <a href="index.php">Home</a> | <a href="bug.php?op=add">Enter Bug</a> | <a href="query.php?op=query">Query Bugs</a> | - <a href="report.php">Reporting</a> + <a href="report.php">Reporting</a> | + <a href="docs/html/userguide.html">Documentation</a> ] </b></font> </td> |
|
From: Benjamin C. <bc...@us...> - 2001-12-14 15:08:04
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv24440/templates/default/admin
Modified Files:
wrap.html
Log Message:
Fixes bug #486225 - Links to the documentation
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/wrap.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- wrap.html 2001/12/14 15:04:14 1.4
+++ wrap.html 2001/12/14 15:08:01 1.5
@@ -20,7 +20,8 @@
<a href="status.php">Statuses</a> |
<a href="resolution.php">Resolutions</a> |
<a href="severity.php">Severity</a> |
- <a href="os.php">OSes</a>
+ <a href="os.php">OSes</a> |
+ <a href="../docs/html/adminguide.html">Documentation</a>
]
</b></font>
</td>
|
|
From: Benjamin C. <bc...@us...> - 2001-12-14 15:04:17
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv23335/templates/default/admin
Modified Files:
wrap.html
Log Message:
Fixes bug #486223 - Login prompt now shows Login instead of Email when login names are separate from email addresses
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/wrap.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- wrap.html 2001/12/04 14:32:24 1.3
+++ wrap.html 2001/12/14 15:04:14 1.4
@@ -46,7 +46,7 @@
<td class="login-box">
<form method="post" action="{me2}">
<font color="{loginerrorcolor}"><b>{loginerror}<b></font>
- Email: <input type="text" name="username" class="login-box">
+ {loginlabel}: <input type="text" name="username" class="login-box">
Password: <input type="password" name="password" class="login-box">
<!--<input type="image" border="0" name="login" value="doit" src="go.gif" width="30" height="20" align="middle" class="login-button">-->
<input type="hidden" name="login" value="1">
|
|
From: Benjamin C. <bc...@us...> - 2001-12-14 15:04:17
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv23335/templates/default
Modified Files:
wrap.html
Log Message:
Fixes bug #486223 - Login prompt now shows Login instead of Email when login names are separate from email addresses
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/wrap.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- wrap.html 2001/10/11 14:24:03 1.8
+++ wrap.html 2001/12/14 15:04:14 1.9
@@ -45,7 +45,7 @@
<td class="login-box" nowrap>
<form method="post" action="{me2}">
<font color="{loginerrorcolor}"><b>{loginerror}<b></font>
- Email: <input type="text" name="username" class="login-box">
+ {loginlabel}: <input type="text" name="username" class="login-box">
Password: <input type="password" name="password" class="login-box">
<input type="hidden" name="dologin" value="1">
<input type="submit" value="Login" class="login-box">
|
|
From: Benjamin C. <bc...@us...> - 2001-12-14 15:04:17
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv23335
Modified Files:
CHANGELOG include.php
Log Message:
Fixes bug #486223 - Login prompt now shows Login instead of Email when login names are separate from email addresses
Index: CHANGELOG
===================================================================
RCS file: /cvsroot/phpbt/phpbt/CHANGELOG,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- CHANGELOG 2001/12/14 14:42:49 1.36
+++ CHANGELOG 2001/12/14 15:04:14 1.37
@@ -18,6 +18,8 @@
: Fixed a bug preventing users from being assigned to the User group when
created.
: Fixed a bug with the download option of the installation process.
+: Change the label on the login box from Email to Login if configuration
+ option EMAIL_IS_LOGIN is not true.
-- 0.5.1 -- 11 Nov 2001
: Fixed a bug (introduced in 0.5.0) with severity color not being pulled in
Index: include.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/include.php,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- include.php 2001/12/14 14:41:06 1.83
+++ include.php 2001/12/14 15:04:14 1.84
@@ -188,7 +188,8 @@
} else {
$this->set_var(array(
'loggedinas' => '',
- 'loblock' => ''
+ 'loblock' => '',
+ 'loginlabel' => EMAIL_IS_LOGIN ? 'Email' : 'Login'
));
$this->parse('liblock', 'loginblock', true);
}
|
|
From: Benjamin C. <bc...@us...> - 2001-12-14 14:53:56
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv20634
Modified Files:
UPGRADING
Log Message:
Updated for 0.6.0
Index: UPGRADING
===================================================================
RCS file: /cvsroot/phpbt/phpbt/UPGRADING,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- UPGRADING 2001/11/09 05:07:43 1.2
+++ UPGRADING 2001/12/14 14:53:50 1.3
@@ -1,18 +1,16 @@
-Upgrading from 0.4.0 to 0.5.0
+Upgrading from 0.5.1 to 0.6.0
-----------------------------
-The two support tables, active_sessions and db_sequence, now need to have
-the same prefix as the other tables (if you are using a table prefix). Also,
-two new configuration options have been added.
+A new table, project_group, has been added, and the auth_group table has been
+altered.
Following the steps below will upgrade your installation of phpBT.
-1. Edit config-dist.php with the relevant details from your existing config.php.
- Make sure the DB_* and the TBL_PREFIX definitions are correct.
-2. Save the file as config.php.
-3. With your web browser, load upgrade.php from the directory where you
+1. If you put this set of files in a new directory separate from your current
+ installation of phpBT, then copy config.php from your installation here.
+2. With your web browser, load upgrade.php from the directory where you
installed the new set of files.
-4. After running that script your installation has been upgraded.
+3. After running that script your installation has been upgraded.
See the CHANGELOG file for more information on changes made since the last
version.
|
|
From: Benjamin C. <bc...@us...> - 2001-12-14 14:42:52
|
Update of /cvsroot/phpbt/phpbt In directory usw-pr-cvs1:/tmp/cvs-serv17682 Modified Files: CHANGELOG Log Message: Index: CHANGELOG =================================================================== RCS file: /cvsroot/phpbt/phpbt/CHANGELOG,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- CHANGELOG 2001/12/13 14:07:47 1.35 +++ CHANGELOG 2001/12/14 14:42:49 1.36 @@ -17,6 +17,7 @@ assigned the bug and receive an email about the bug. : Fixed a bug preventing users from being assigned to the User group when created. +: Fixed a bug with the download option of the installation process. -- 0.5.1 -- 11 Nov 2001 : Fixed a bug (introduced in 0.5.0) with severity color not being pulled in |
|
From: Benjamin C. <bc...@us...> - 2001-12-14 14:42:12
|
Update of /cvsroot/phpbt/phpbt/templates/default In directory usw-pr-cvs1:/tmp/cvs-serv17532/templates/default Modified Files: install-complete.html install.html Log Message: Tweaks to the download option Index: install-complete.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/install-complete.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- install-complete.html 2001/11/09 17:53:37 1.2 +++ install-complete.html 2001/12/14 14:42:09 1.3 @@ -8,19 +8,12 @@ <td width="200" valign="top"><br><img src="logo.jpg"></td> <td valign="top"> <div class="banner">phpBugTracker Installation</div> - <!-- BEGIN writeableblock --> The database tables have been created and the config file has been written. Especially if you are on a shared server, you should change the permissions so that config.php isn't writeable by others by executing chmod og-w config.php. You can login to the admin tools by using the login form below. - <!-- END writeableblock --> - <!-- BEGIN unwriteableblock --> - The database tables have been created. Once you have - config.php in place, you will be able to login to the admin - tools via the form below using the admin login and password - you provided. - <!-- END unwriteableblock --> + You will be taken to the home page, and from there you can go to the configuration page of the admin tools which will allow you to customize your installation of phpBugTracker further. Once you have Index: install.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/install.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- install.html 2001/11/12 14:51:28 1.3 +++ install.html 2001/12/14 14:42:09 1.4 @@ -91,7 +91,11 @@ Since config.php is not writeable by this script, when you submit this form you will be prompted to save config.php. Copy this file to the location of the bug tracker, and then you will - be able to login to the bug tracker from the next page. + be able to <a href="index.php">login to the bug tracker</a>. From + the home page you can go to the Admin Tools and customize your + installation via the Configuration link. Once you have + completed the configuration, you will be ready to add a project and + start reporting bugs! <input type="hidden" name="op" value="dump_config_file"> <!-- END unwriteableblock --> <br> |