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-10-06 03:53:36
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv4854
Modified Files:
global-black.css global.css query.php
Log Message:
That should wrap up the cvs -- of course, I'm sure I missed something or introduced a bug :)
Index: global-black.css
===================================================================
RCS file: /cvsroot/phpbt/phpbt/global-black.css,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- global-black.css 2001/10/06 03:35:37 1.2
+++ global-black.css 2001/10/06 03:53:33 1.3
@@ -31,7 +31,11 @@
text-align: center;
background-color: #6a6a6a;
}
-
+
+td.center {
+ text-align: center;
+ }
+
th {
font-family: "Arial","Helvetica","MS Sans Serif","Sans-Serif";
font-size: 12px;
Index: global.css
===================================================================
RCS file: /cvsroot/phpbt/phpbt/global.css,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- global.css 2001/10/06 03:35:37 1.6
+++ global.css 2001/10/06 03:53:33 1.7
@@ -29,6 +29,10 @@
background-color: #bbbbbb;
}
+td.center {
+ text-align: center;
+ }
+
th {
font-family: "Arial","Helvetica","MS Sans Serif","Sans-Serif";
font-size: 12px;
Index: query.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/query.php,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- query.php 2001/10/06 03:35:37 1.29
+++ query.php 2001/10/06 03:53:33 1.30
@@ -253,6 +253,7 @@
while ($row = $q->grab()) {
$bgcolor = USE_SEVERITY_COLOR ? $row['severity_color'] :
((++$i % 2 == 0) ? '#dddddd' : '#ffffff');
+ $trclass = USE_SEVERITY_COLOR ? '' : ($i % 2 ? '' : 'alt');
foreach ($db_fields as $field) {
switch ($field) {
case 'url' :
@@ -263,7 +264,7 @@
case 'last_modified_date' :
case 'close_date' :
$coldata = $row[$field] ? date(DATEFORMAT, $row[$field]) : ' ';
- $td_extra = 'class="center-col"';
+ $td_extra = 'class="center"';
break;
case 'bug_id' :
case 'title' :
@@ -274,15 +275,15 @@
case 'owner' :
case 'lastmodifier' :
$coldata = maskemail($row[$field]);
- $td_extra = 'class="center-col"';
+ $td_extra = 'class="center"';
break;
case 'priority' :
$coldata = $select['priority'][$row[$field]];
- $td_extra = 'class="center-col"';
+ $td_extra = 'class="center"';
break;
default :
$coldata = $row[$field];
- $td_extra = 'class="center-col"';
+ $td_extra = 'class="center"';
break;
}
$t->set_var(array(
@@ -291,7 +292,7 @@
));
$t->parse('cols', 'col', true);
}
- $t->set_var('tr-extra', "bgcolor='$bgcolor' onClick=\"document.location.href='bug.php?op=show&bugid={$row['bug_id']}'\" onMouseOver=\"this.style.backgroundColor='#eeeeee'\" onMouseOut=\"this.style.backgroundColor='$bgcolor'\"");
+ $t->set_var('tr-extra', "class='$trclass' onClick=\"document.location.href='bug.php?op=show&bugid={$row['bug_id']}'\" onMouseOver=\"this.style.fontWeight='bold'\" onMouseOut=\"this.style.fontWeight='normal'\"");
$t->parse('rows','row',true);
$t->set_var('cols', '');
}
|
|
From: Benjamin C. <bc...@us...> - 2001-10-06 03:35:40
|
Update of /cvsroot/phpbt/phpbt/admin
In directory usw-pr-cvs1:/tmp/cvs-serv31878/admin
Modified Files:
severity.php
Log Message:
Almost there with css everywhere. Bug list mouseover and background color is still undone
Index: severity.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/severity.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- severity.php 2001/10/05 04:22:46 1.9
+++ severity.php 2001/10/06 03:35:37 1.10
@@ -71,7 +71,7 @@
function list_items($severityid = 0, $error = '') {
- global $q, $t, $selrange, $order, $sort, $STRING, $TITLE;
+ global $q, $t, $selrange, $order, $sort, $STRING, $TITLE, $me;
$t->set_file('content','severitylist.html');
$t->set_block('content','row','rows');
@@ -108,7 +108,7 @@
$t->set_var(array(
'bgcolor' => USE_SEVERITY_COLOR ? $row['severity_color'] :
((++$i % 2 == 0) ? '#dddddd' : '#ffffff'),
- 'trclass' => USE_SEVERITY_COLOR ? $row['severity_color'] :
+ 'trclass' => USE_SEVERITY_COLOR ? '' :
$i % 2 ? '' : 'alt',
'severityid' => $row['severity_id'],
'name' => $row['severity_name'],
|
|
From: Benjamin C. <bc...@us...> - 2001-10-06 03:35:40
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv31878
Modified Files:
global-black.css global.css include.php query.php
Log Message:
Almost there with css everywhere. Bug list mouseover and background color is still undone
Index: global-black.css
===================================================================
RCS file: /cvsroot/phpbt/phpbt/global-black.css,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- global-black.css 2001/10/04 13:56:36 1.1
+++ global-black.css 2001/10/06 03:35:37 1.2
@@ -20,6 +20,18 @@
background-color: #4e4e4e;
}
+td.head {
+ font-weight: bold;
+ text-align: center;
+ background-color: #4a4a4a;
+ }
+
+td.head-selected {
+ font-weight: bold;
+ text-align: center;
+ background-color: #6a6a6a;
+ }
+
th {
font-family: "Arial","Helvetica","MS Sans Serif","Sans-Serif";
font-size: 12px;
Index: global.css
===================================================================
RCS file: /cvsroot/phpbt/phpbt/global.css,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- global.css 2001/08/13 13:34:49 1.5
+++ global.css 2001/10/06 03:35:37 1.6
@@ -13,9 +13,26 @@
font-size: 12px;
}
+tr.alt {
+ background-color: #dddddd;
+ }
+
+td.head {
+ font-weight: bold;
+ text-align: center;
+ background-color: #eeeeee;
+ }
+
+td.head-selected {
+ font-weight: bold;
+ text-align: center;
+ background-color: #bbbbbb;
+ }
+
th {
font-family: "Arial","Helvetica","MS Sans Serif","Sans-Serif";
font-size: 12px;
+ background-color: #eeeeee;
}
select {
Index: include.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/include.php,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- include.php 2001/09/26 09:20:16 1.57
+++ include.php 2001/10/06 03:35:37 1.58
@@ -407,6 +407,7 @@
($order == $v ? ($sort == 'asc' ? 'desc' : 'asc') : 'asc').
($urlstr ? '&'.$urlstr : ''));
$t->set_var($k.'color', $order == $v ? '#bbbbbb' : '#eeeeee');
+ $t->set_var($k.'class', $order == $v ? 'head-selected' : 'head');
}
}
Index: query.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/query.php,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- query.php 2001/09/15 23:13:48 1.28
+++ query.php 2001/10/06 03:35:37 1.29
@@ -241,7 +241,7 @@
foreach ($db_fields as $field) {
$t->set_var(array(
'coldata' => "<a href='{{$field}url}'>{$all_db_fields[$field]}</a>",
- 'td-extra' => "class=\"header-col\" bgcolor=\"{{$field}color}\""
+ 'td-extra' => "class=\"{{$field}class}\""
));
$t->parse('cols', 'col', true);
}
|
|
From: Benjamin C. <bc...@us...> - 2001-10-06 03:35:40
|
Update of /cvsroot/phpbt/phpbt/admin/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv31878/admin/templates/default
Modified Files:
oslist.html project-edit.html resolutionlist.html
severitylist.html statuslist.html userlist.html wrap.html
Log Message:
Almost there with css everywhere. Bug list mouseover and background color is still undone
Index: oslist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/oslist.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- oslist.html 2001/08/17 14:45:54 1.2
+++ oslist.html 2001/10/06 03:35:37 1.3
@@ -11,7 +11,7 @@
<th><a href="{sortorderurl}">Sort Order</a></th>
</tr>
<!-- BEGIN row -->
- <tr bgcolor="{bgcolor}">
+ <tr class="{trclass}">
<td><a href="{me}?op=edit&id={osid}">{name}</a></td>
<td> {regex}</td>
<td align="center">{sortorder}</td>
@@ -49,4 +49,4 @@
</div>
</form>
</td>
-</table>
\ No newline at end of file
+</table>
Index: project-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/project-edit.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- project-edit.html 2001/09/11 12:58:46 1.2
+++ project-edit.html 2001/10/06 03:35:37 1.3
@@ -102,7 +102,7 @@
<th width="60">Active</th>
</tr>
<!-- BEGIN verrow -->
- <tr bgcolor="{bgcolor}">
+ <tr class="{trclass}">
<td><a href="{me}?op=edit&id={projectid}&versionid={verid}">{vername}</a></td>
<td align="center">{verdate}</td>
<td align="center">{veractive}</td>
@@ -121,7 +121,7 @@
<th width="60">Active</th>
</tr>
<!-- BEGIN row -->
- <tr bgcolor="{bgcolor}">
+ <tr class="{trclass}">
<td><a href="{me}?op=edit&id={projectid}&componentid={compid}">{compname}</a></td>
<td align="center">{compdate}</td>
<td align="center">{compactive}</td>
Index: resolutionlist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/resolutionlist.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- resolutionlist.html 2001/08/01 13:55:56 1.1
+++ resolutionlist.html 2001/10/06 03:35:37 1.2
@@ -11,7 +11,7 @@
<th><a href="{sortorderurl}">Sort Order</a></th>
</tr>
<!-- BEGIN row -->
- <tr bgcolor="{bgcolor}">
+ <tr class="{trclass}">
<td><a href="{me}?op=edit&id={resolutionid}">{name}</a></td>
<td> {description}</td>
<td align="center">{sortorder}</td>
Index: severitylist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/severitylist.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- severitylist.html 2001/08/18 20:12:22 1.1
+++ severitylist.html 2001/10/06 03:35:37 1.2
@@ -5,13 +5,13 @@
<b> Status List</b>
<hr size="1">
<table border="0">
- <tr bgcolor="#eeeeee">
+ <tr>
<th><a href="{nameurl}">Name</a></th>
<th><a href="{descriptionurl}">Description</a></th>
<th><a href="{sortorderurl}">Sort Order</a></th>
</tr>
<!-- BEGIN row -->
- <tr bgcolor="{bgcolor}">
+ <tr trclass="{trclass}" bgcolor="{bgcolor}">
<td><a href="{me}?op=edit&id={severityid}">{name}</a></td>
<td> {description}</td>
<td align="center">{sortorder}</td>
Index: statuslist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/statuslist.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- statuslist.html 2001/08/01 13:55:56 1.1
+++ statuslist.html 2001/10/06 03:35:37 1.2
@@ -11,7 +11,7 @@
<th><a href="{sortorderurl}">Sort Order</a></th>
</tr>
<!-- BEGIN row -->
- <tr bgcolor="{bgcolor}">
+ <tr class="{trclass}">
<td><a href="{me}?op=edit&id={statusid}">{name}</a></td>
<td> {description}</td>
<td align="center">{sortorder}</td>
Index: userlist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/userlist.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- userlist.html 2001/09/03 20:27:28 1.3
+++ userlist.html 2001/10/06 03:35:37 1.4
@@ -13,7 +13,7 @@
<th bgcolor="{activecolor}"><a href="{activeurl}">Active</a></th>
</tr>
<!-- BEGIN row -->
- <tr bgcolor="{bgcolor}">
+ <tr class="{trclass}">
<td><a href="{me}?op=edit&id={userid}">{login}</a></td>
<td align="center">{name}</td>
<td align="center">{date}</td>
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/wrap.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- wrap.html 2001/08/17 14:55:25 1.7
+++ wrap.html 2001/10/06 03:35:37 1.8
@@ -70,4 +70,4 @@
<!-- END adminnavblock -->
</body>
-</html>
\ No newline at end of file
+</html>
|
|
From: Benjamin C. <bc...@us...> - 2001-10-05 04:22:48
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv25131
Modified Files:
bug.php
Log Message:
Adding some more css stuff
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- bug.php 2001/09/29 14:50:26 1.47
+++ bug.php 2001/10/05 04:22:45 1.48
@@ -66,6 +66,7 @@
while ($row = $q->grab()) {
$t->set_var(array(
'bgcolor' => (++$i % 2 == 0) ? '#dddddd' : '#ffffff',
+ 'trclass' => $i % 2 ? '' : 'alt',
'field' => stripslashes($row['changed_field']),
'oldvalue' => stripslashes($row['old_value']),
'newvalue' => stripslashes($row['new_value']),
@@ -517,6 +518,7 @@
}
$t->set_var(array(
'bgcolor' => (++$j % 2 == 0) ? '#dddddd' : '#ffffff',
+ 'trclass' => $j % 2 ? '' : 'alt',
'attid' => $att['attachment_id'],
'attname' => stripslashes($att['file_name']),
'attdesc' => stripslashes($att['description']),
@@ -544,6 +546,7 @@
while ($row = $q->grab()) {
$t->set_var(array(
'bgcolor' => (++$i % 2 == 0) ? '#dddddd' : '#ffffff',
+ 'trclass' => $i % 2 ? '' : 'alt',
'rdescription' => nl2br(format_comments(
htmlspecialchars($row['comment_text']))),
'rreporter' => maskemail($row['login']),
|
|
From: Benjamin C. <bc...@us...> - 2001-10-05 04:22:48
|
Update of /cvsroot/phpbt/phpbt/admin
In directory usw-pr-cvs1:/tmp/cvs-serv25131/admin
Modified Files:
os.php project.php resolution.php severity.php status.php
user.php
Log Message:
Adding some more css stuff
Index: os.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/os.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- os.php 2001/09/18 03:26:15 1.13
+++ os.php 2001/10/05 04:22:46 1.14
@@ -101,6 +101,7 @@
while ($row = $q->grab()) {
$t->set_var(array(
'bgcolor' => (++$i % 2 == 0) ? '#dddddd' : '#ffffff',
+ 'trclass' => $i % 2 ? '' : 'alt',
'osid' => $row['os_id'],
'name' => $row['os_name'],
'regex' => $row['regex'],
Index: project.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/project.php,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- project.php 2001/10/04 13:56:36 1.21
+++ project.php 2001/10/05 04:22:46 1.22
@@ -84,6 +84,7 @@
while ($row = $q->grab()) {
$t->set_var(array(
'bgcolor' => (++$i % 2 == 0) ? '#dddddd' : '#ffffff',
+ 'trclass' => $i % 2 ? '' : 'alt',
'verid' => $row['version_id'],
'vername' => $row['version_name'],
'verdate' => date(DATEFORMAT,$row['created_date']),
@@ -162,6 +163,7 @@
while ($row = $q->grab()) {
$t->set_var(array(
'bgcolor' => (++$i % 2 == 0) ? '#dddddd' : '#ffffff',
+ 'trclass' => $i % 2 ? '' : 'alt',
'compid' => $row['component_id'],
'compname' => $row['component_name'],
'compdesc' => stripslashes($row['project_desc']),
Index: resolution.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/resolution.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- resolution.php 2001/09/18 03:26:15 1.14
+++ resolution.php 2001/10/05 04:22:46 1.15
@@ -103,6 +103,7 @@
while ($row = $q->grab()) {
$t->set_var(array(
'bgcolor' => (++$i % 2 == 0) ? '#dddddd' : '#ffffff',
+ 'trclass' => $i % 2 ? '' : 'alt',
'resolutionid' => $row['resolution_id'],
'name' => $row['resolution_name'],
'description' => $row['resolution_desc'],
Index: severity.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/severity.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- severity.php 2001/09/18 03:26:15 1.8
+++ severity.php 2001/10/05 04:22:46 1.9
@@ -108,6 +108,8 @@
$t->set_var(array(
'bgcolor' => USE_SEVERITY_COLOR ? $row['severity_color'] :
((++$i % 2 == 0) ? '#dddddd' : '#ffffff'),
+ 'trclass' => USE_SEVERITY_COLOR ? $row['severity_color'] :
+ $i % 2 ? '' : 'alt',
'severityid' => $row['severity_id'],
'name' => $row['severity_name'],
'description' => $row['severity_desc'],
Index: status.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/status.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- status.php 2001/09/18 03:26:15 1.14
+++ status.php 2001/10/05 04:22:46 1.15
@@ -102,6 +102,7 @@
while ($row = $q->grab()) {
$t->set_var(array(
'bgcolor' => (++$i % 2 == 0) ? '#dddddd' : '#ffffff',
+ 'trclass' => $i % 2 ? '' : 'alt',
'statusid' => $row['status_id'],
'name' => $row['status_name'],
'description' => $row['status_desc'],
Index: user.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/user.php,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- user.php 2001/09/18 03:26:15 1.27
+++ user.php 2001/10/05 04:22:46 1.28
@@ -206,6 +206,7 @@
while ($row = $q->grab()) {
$t->set_var(array(
'bgcolor' => (++$i % 2 == 0) ? '#dddddd' : '#ffffff',
+ 'trclass' => $i % 2 ? '' : 'alt',
'userid' => $row['user_id'],
'login' => $row['login'],
'name' => stripslashes($row['fullname']),
|
|
From: Ben C. <php...@be...> - 2001-10-04 14:01:37
|
Ok, Javier, I took a couple of minutes to get started on the "Back in Black" theme. :) If the changes I made to the admin project list were made for every list, then your new theme would be complete. |
|
From: Benjamin C. <bc...@us...> - 2001-10-04 13:56:40
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv14969
Added Files:
global-black.css
Log Message:
"Back in Black" for Javier :)
--- NEW FILE: global-black.css ---
body {
margin: 4px;
font-size: 12px;
color: #ffffff;
background-color: #000000;
}
a:link { text-decoration: none; color: #cecece; }
a:visited { text-decoration: none; color: #cecece; }
a:active { text-decoration: none }
a:hover { text-decoration: underline; }
td {
font-family: "Arial","Helvetica","MS Sans Serif","Sans-Serif";
font-size: 12px;
color: #ffffff;
}
tr.alt {
background-color: #4e4e4e;
}
th {
font-family: "Arial","Helvetica","MS Sans Serif","Sans-Serif";
font-size: 12px;
background-color: #4a4a4a;
}
select {
font-family: "Arial","Helvetica","MS Sans Serif","Sans-Serif";
font-size: 12px;
}
input {
font-size: 12px;
}
input[type="file"] {
font-family: "Arial","Helvetica","MS Sans Serif","Sans-Serif";
font-size: 12px;
}
input[type="submit"] {
font-family: "Arial","Helvetica","MS Sans Serif","Sans-Serif";
}
input[type="reset"] {
font-family: "Arial","Helvetica","MS Sans Serif","Sans-Serif";
}
textarea {
font-size: 12px;
}
.navfont {
font-family: "Verdana","Arial","Helvetica","MS Sans Serif","Sans-Serif";
font-size: 10px;
}
.login-box {
vertical-align: text-bottom;
font-size: 10px;
}
input[type="text"].login-box {
padding-top: 0.1em;
padding-left: 0.2em;
padding-right: 0.2em;
}
|
|
From: Benjamin C. <bc...@us...> - 2001-10-04 13:56:40
|
Update of /cvsroot/phpbt/phpbt/admin
In directory usw-pr-cvs1:/tmp/cvs-serv14969/admin
Modified Files:
project.php
Log Message:
"Back in Black" for Javier :)
Index: project.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/project.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- project.php 2001/10/02 23:17:16 1.20
+++ project.php 2001/10/04 13:56:36 1.21
@@ -299,6 +299,7 @@
while ($row = $q->grab()) {
$t->set_var(array(
'bgcolor' => (++$i % 2 == 0) ? '#dddddd' : '#ffffff',
+ 'trclass' => $i % 2 ? '' : 'alt',
'projectid' => $row['project_id'],
'name' => $row['project_name'],
'description' => stripslashes($row['project_desc']),
|
|
From: Benjamin C. <bc...@us...> - 2001-10-04 13:56:40
|
Update of /cvsroot/phpbt/phpbt/admin/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv14969/admin/templates/default
Modified Files:
projectlist.html
Log Message:
"Back in Black" for Javier :)
Index: projectlist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/projectlist.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- projectlist.html 2001/08/01 13:55:56 1.1
+++ projectlist.html 2001/10/04 13:56:37 1.2
@@ -8,7 +8,7 @@
<th><a href="{activeurl}">Active</a></th>
</tr>
<!-- BEGIN row -->
- <tr bgcolor="{bgcolor}">
+ <tr class='{trclass}'>
<td><a href="{me}?op=edit&id={projectid}">{name}</a></td>
<td align="center">{createddate}</td>
<td align="center">{active}</td>
|
|
From: Ben C. <php...@be...> - 2001-10-04 13:30:38
|
On Thu, Oct 04, 2001 at 01:28:29AM +0200, Javier Sixto wrote: > Sorry to be so late for this response, but actually, i'm working so hard > ... :-P Heh, no worries -- nobody is getting paid to work on this full time. :) > About new features .... > i was think about a web-installer, which would do the same thing that > config .... just a idea :-) > Because, it is frequent to just have an ftp access to web server > ...isn't it ? I think to really do this we'd need to have most of the configuration information in the database. That's been on my mind for a while, so maybe it's time to plan it. > > Actually we are using phpbt on beta test of duelfield (on line game) ... > it works fine ... This is exciting to me, for when people _really_ start using it, good feeback comes... like below. :) > but as you can imagine there is a lot of features request :-) > -> People said that is diffiicult to find easly the bug list ... > request page is so hard to understand at the first time. > I propose to add a sympatic button like 'view latest bugs' ... > most active bugs ... any other ideas ? > This is a great idea. We could also copy the 'bugs assigned to me' and 'bugs reported by me' links up to the main part of the home page. Let's try to make a list of all the 'quick list' queries we would want on the home page. > ->About template managing, i have change background color to black > :-) and it was so difficult to make all words available on white > color.... in a lot of html arrays (td, tr ) its impossible to manage > color whitoout modifying php source :-( Yeah, I've been meaning to CSS everything, which would make this a lot easier. Did you try creating a td class in global.css for the text? > > ->Some users wish to select color senstivity in function of column, > for example choose a color priority instead of severity Hmm... I guess we could just add colors to priority like we did for severity and then have an option for it in the config. > > -> On Bug query page, there is no search field for login ? > Yeah, this never got updated when we added the login. I'll have to add that. > Well, i think that's all :-) > Great list! > I was reading phpbt/doc ... great work! Thanks... and let me know what I'm forgetting! > I'm finishing to prepare phpbt.dyndns.org a server for dev purpose > ...(actually this is hosted on my personal server, but i'm planning to > add an other old Pentium class machine to works alone for phpbt) > I have some pb installing phpPgAdmin ... (adding user, rights ..etc php > seems to refuse phpbt user ... ) But PostgreSql 7.1.3 works fine ! > > Well i will send to Benjamin login/pass ;-) Cool, thanks. |
|
From: Javier S. <js...@si...> - 2001-10-03 23:26:40
|
Ben Curtis wrote:
>One thing I've been thinking about for a little while that we need is a development road map. I'd like to get your input on what you would like to see in the next few versions. Specifically, what should we put into versions 0.4 and 0.5 if we were to release them in the months of October and November, repsectively? Also, I'd like to be ready for a 1.0 that we can call non-beta either in late December or early January. Thoughts?
>
Hello Ben ;-)
Sorry to be so late for this response, but actually, i'm working so hard
... :-P
About new features ....
i was think about a web-installer, which would do the same thing that
config .... just a idea :-)
Because, it is frequent to just have an ftp access to web server
...isn't it ?
Actually we are using phpbt on beta test of duelfield (on line game) ...
it works fine ...
but as you can imagine there is a lot of features request :-)
-> People said that is diffiicult to find easly the bug list ...
request page is so hard to understand at the first time.
I propose to add a sympatic button like 'view latest bugs' ...
most active bugs ... any other ideas ?
->About template managing, i have change background color to black
:-) and it was so difficult to make all words available on white
color.... in a lot of html arrays (td, tr ) its impossible to manage
color whitoout modifying php source :-(
->Some users wish to select color senstivity in function of column,
for example choose a color priority instead of severity
-> On Bug query page, there is no search field for login ?
Well, i think that's all :-)
I was reading phpbt/doc ... great work!
I'm finishing to prepare phpbt.dyndns.org a server for dev purpose
...(actually this is hosted on my personal server, but i'm planning to
add an other old Pentium class machine to works alone for phpbt)
I have some pb installing phpPgAdmin ... (adding user, rights ..etc php
seems to refuse phpbt user ... ) But PostgreSql 7.1.3 works fine !
Well i will send to Benjamin login/pass ;-)
|
|
From: Benjamin C. <bc...@us...> - 2001-10-03 13:38:10
|
Update of /cvsroot/phpbt/phpbt/docs/sgml
In directory usw-pr-cvs1:/tmp/cvs-serv15278/sgml
Modified Files:
phpbt.sgml primer.sgml
Log Message:
User primer done
Index: phpbt.sgml
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/sgml/phpbt.sgml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- phpbt.sgml 2001/10/03 04:04:01 1.5
+++ phpbt.sgml 2001/10/03 13:38:06 1.6
@@ -24,6 +24,17 @@
<abstract>
<para>&phpbt; is a web-based bug reporting and tracking system. It helps development teams to manage the testing and debugging segments of the development cycle.</para>
</abstract>
+ <!--<mediaobject>
+ <imageobject>
+ <imagedata fileref="images/logo.jpg" format="JPG" align="left">
+ </imageobject>
+ <imageobject>
+ <imagedata fileref="images/logo.eps" format="EPS" align="left">
+ </imageobject>
+ <textobject>
+ <phrase>&phpbt; logo</phrase>
+ </textobject>
+ </mediaobject>-->
</bookinfo>
<chapter id="userguide">
@@ -32,7 +43,7 @@
<para>Currently all interactions with &phpbt; are done via the web interface. Users can submit bugs, communicate with developers and testers about bugs, and search through the bug database.</para>
</abstract>
- &primer;
+ &primer;
</chapter>
Index: primer.sgml
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/sgml/primer.sgml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- primer.sgml 2001/10/03 04:04:01 1.1
+++ primer.sgml 2001/10/03 13:38:06 1.2
@@ -2,32 +2,51 @@
<sect1 id="primer">
<title>Getting Started</title>
- <sect2>
+ <sect2 id="createaccount">
<title>Creating an account</title>
<para>You can create a new account by following the link labeled <emphasis role="bold">Open a new account</emphasis>. To create a new account you will need to enter at least a valid email address (so that your password can be mailed to you). Providing your name is optional, but if you submit it then your name will appear with bugs you submit and comments you make. If the system has been configured to use a login separate from the email address, you will also be prompted for a login. If you have chosen an email address (or login) that is already in use, you will be prompted to choose a different one. After completing this form, your password will be mailed to you. Once you have received your password you can then login with your email (or login) and password to be able to submit bugs.</para>
+
</sect2>
<sect2 id="enterbug">
<title>Entering a bug</title>
<para>Once you have logged in to the system you can follow the <emphasis role="bold">Enter Bug</emphasis> link from the top navigation bar to create a new bug. If there is more than one project for which you can submit a bug, you will be prompted to choose one.</para>
+
<mediaobject>
<imageobject>
- <imagedata fileref="images/shots/user/enterbug-chooseproject.png" format="PNG" align="center">
+ <imagedata fileref="images/shots/user/enterbug-chooseproject.png" format="PNG" align="center">
</imageobject>
<imageobject>
- <imagedata fileref="images/shots/user/enterbug-chooseproject.jpg" format="JPG" align="center">
+ <imagedata fileref="images/shots/user/enterbug-chooseproject.jpg" format="JPG" align="center">
</imageobject>
<imageobject>
- <imagedata fileref="images/shots/user/enterbug-chooseproject.eps" format="EPS" align="center">
+ <imagedata fileref="images/shots/user/enterbug-chooseproject.eps" format="EPS" align="center">
</imageobject>
<textobject>
- <phrase>Screen shot of selecting a project for a bug report.</phrase>
+ <phrase>Screen shot of selecting a project for a bug report.</phrase>
</textobject>
</mediaobject>
- <para>..</para>
+ <para>Once you have chosen a project, or if there is only one project in the system, you will see the bug entry page. The <emphasis role="bold">Version</emphasis> and <emphasis role="bold">Component</emphasis> fields allow you to specify details about which part or version of the product that produces this bug. The <emphasis role="bold">Summary</emphasis> field should be a short but specific summary of the problem, while the <emphasis role="bold">Description</emphasis> field should include details about the behavior observed, how that behavior differs from expected behavior, and the steps to reproduce the problem. If the product being tested is web-based, you can use the <emphasis role="bold">URL</emphasis> field to provide a link directly to the problem. The <emphasis role="bold">Add another</emphasis> checkbox, if checked, will present another bug entry form when you submit a bug, instead of taking you to the bug list.</para>
+
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/shots/user/enterbug-detail.png" format="PNG" align="center">
+ </imageobject>
+ <imageobject>
+ <imagedata fileref="images/shots/user/enterbug-detail.jpg" format="JPG" align="center">
+ </imageobject>
+ <imageobject>
+ <imagedata fileref="images/shots/user/enterbug-detail.eps" format="EPS" align="center">
+ </imageobject>
+ <textobject>
+ <phrase>Screen shot of entering a bug report.</phrase>
+ </textobject>
+ </mediaobject>
+
+ <para>That's it! The bug has been entered, and it's ready to be reviewed and fixed by the developers.</para>
</sect2>
</sect1>
@@ -36,3 +55,9 @@
<!-- sgml-indent-data: 2 -->
<!-- sgml-parent-document: "phpbt.sgml" -->
<!-- End: -->
+
+
+
+
+
+
|
|
From: Benjamin C. <bc...@us...> - 2001-10-03 13:38:10
|
Update of /cvsroot/phpbt/phpbt/docs/html In directory usw-pr-cvs1:/tmp/cvs-serv15278/html Modified Files: adminguide.html configuration.html devguide.html devstandards.html userguide.html Log Message: User primer done Index: adminguide.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/adminguide.html,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- adminguide.html 2001/10/03 04:03:55 1.4 +++ adminguide.html 2001/10/03 13:38:06 1.5 @@ -99,7 +99,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN32" +NAME="AEN48" ></A ><P >One of the main design goals of phpBugTracker is to make installation and administration easy. In fact, the difficulty of installing bugzilla was a key motivator for phpBugTracker's existence.</P Index: configuration.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/configuration.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- configuration.html 2001/10/03 04:03:55 1.3 +++ configuration.html 2001/10/03 13:38:06 1.4 @@ -84,7 +84,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN84" +NAME="AEN100" ></A ><P >The options listed in this section can be configured by the <TT Index: devguide.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/devguide.html,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- devguide.html 2001/10/03 04:03:55 1.5 +++ devguide.html 2001/10/03 13:38:06 1.6 @@ -113,7 +113,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN189" +NAME="AEN205" ></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 @@ -136,7 +136,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN194" +NAME="AEN210" ></A ><P >phpBugTracker requires one external package, PHPlib, and can optionally use JpGraph. Of course a web server and a database are also necessary.</P @@ -161,7 +161,7 @@ ><H3 CLASS="SECT3" ><A -NAME="AEN200" +NAME="AEN216" >3.1.1.1. Database Abstraction</A ></H3 ><P @@ -220,7 +220,7 @@ ><H3 CLASS="SECT3" ><A -NAME="AEN212" +NAME="AEN228" >3.1.1.2. Templates</A ></H3 ><P Index: devstandards.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/devstandards.html,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- devstandards.html 2001/10/03 04:03:55 1.6 +++ devstandards.html 2001/10/03 13:38:06 1.7 @@ -77,7 +77,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN218" +NAME="AEN234" ></A ><P > This section details the coding and process standards to be Index: userguide.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/userguide.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- userguide.html 2001/10/03 04:03:55 1.3 +++ userguide.html 2001/10/03 13:38:06 1.4 @@ -99,7 +99,7 @@ ><H2 CLASS="SECT2" ><A -NAME="AEN12" +NAME="CREATEACCOUNT" >1.1.1. Creating an account</A ></H2 ><P @@ -137,7 +137,54 @@ ></P ></DIV ><P ->..</P +>Once you have chosen a project, or if there is only one project in the system, you will see the bug entry page. The <SPAN +CLASS="bold" +><B +CLASS="EMPHASIS" +>Version</B +></SPAN +> and <SPAN +CLASS="bold" +><B +CLASS="EMPHASIS" +>Component</B +></SPAN +> fields allow you to specify details about which part or version of the product that produces this bug. The <SPAN +CLASS="bold" +><B +CLASS="EMPHASIS" +>Summary</B +></SPAN +> field should be a short but specific summary of the problem, while the <SPAN +CLASS="bold" +><B +CLASS="EMPHASIS" +>Description</B +></SPAN +> field should include details about the behavior observed, how that behavior differs from expected behavior, and the steps to reproduce the problem. If the product being tested is web-based, you can use the <SPAN +CLASS="bold" +><B +CLASS="EMPHASIS" +>URL</B +></SPAN +> field to provide a link directly to the problem. The <SPAN +CLASS="bold" +><B +CLASS="EMPHASIS" +>Add another</B +></SPAN +> checkbox, if checked, will present another bug entry form when you submit a bug, instead of taking you to the bug list.</P +><DIV +CLASS="MEDIAOBJECT" +><P +><IMG +SRC="images/shots/user/enterbug-detail.png" +ALT="Screen shot of entering a bug report." +></IMG +></P +></DIV +><P +>That's it! The bug has been entered, and it's ready to be reviewed and fixed by the developers.</P ></DIV ></DIV ></DIV |
|
From: Benjamin C. <bc...@us...> - 2001-10-03 13:38:09
|
Update of /cvsroot/phpbt/phpbt/docs/html/images/shots/user In directory usw-pr-cvs1:/tmp/cvs-serv15278/html/images/shots/user Modified Files: enterbug-chooseproject.png enterbug-detail.png Log Message: User primer done Index: enterbug-chooseproject.png =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/images/shots/user/enterbug-chooseproject.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 Binary files /tmp/cvs4C8O0x and /tmp/cvs6Nd7IV differ Index: enterbug-detail.png =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/images/shots/user/enterbug-detail.png,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 Binary files /tmp/cvstOewVy and /tmp/cvsUgzkzX differ |
|
From: Benjamin C. <bc...@us...> - 2001-10-03 13:37:16
|
Update of /cvsroot/phpbt/phpbt/docs/html/images
In directory usw-pr-cvs1:/tmp/cvs-serv15061/html/images
Added Files:
logo.jpg
Log Message:
--- NEW FILE: logo.jpg ---
ÿØÿà
ÿÛ
{ÊsXå
*VâD^|Å=iÏÞÅ~´Eªò·/¸º¶û=F©ÍÊ·LK§TzN3öå?SlêtÎþ/ï÷µ×ê~ §<£é¥ï;ã¾
>ÇÝtßä<ʺ¨ÒòhP7É+d;@^Ð-yJ³ÒÝ
oÏ;ÎiÒµ'í°39áÛm~K6÷\/Zc¡Ûµ*âOAÇt«{»áz³bÝ~øBÒ}{ÎøbÛ¦/×ëÊUÚ«xY%Q{Û
ò8,y>jX,nã»AÃ+H=WEdJÈά-¶7pf#OYd¶oÀ½Õª¿TöÓ¾QY±`Öñ^kõLþ6ï`2lñö [#÷2¥þ&6Ï%CÆ{ή1+Ç~èÛ<séC=óÞupµÇ°ÐáÝ¡·x¯Lñ,g\Æay¶W#Õ)ΡÅ@~øXÎ˹¿{_¦GǶi@ïM×Ñ53ÀmDdª§dRNÀöfñÀ´í)Õg¯,=¦ÇóC¬x`jlbß¶Uä¦(\0[9IФ
rPdðéæÅµDrQ´s
| ÿ
¯¶ÝòÌL/]tikÕRÁtÔíÏa\LÐ&·áêù¿Ë),"ÉF\Ï@qã¼ÆÚä°s`ÈxÏyÕÆ5~83õêwù¿Ë¡É~QÉ[E©()ßR}U_jIµÃ\ü9?o¥{Hö¬B¢|ï8ö¬SÇ!S7{±m·LÎÊi³Õ07<Ie&§Á;¡äu iÉÇôññS/·ØdáÙó,ÒJOHQÿ
#¡.!kLôÐÞ°Ð8$c'yMhQ«Ú$êîÕÎÍÎLYÜá¿>à
u"ÿ
Ç&ãM@ÒÔzꫪrcJV¥ñR zàyIBÂÆÇ·},¥Ì-À¬¸w`GƽËûÒI ³Ëb¼sèRÝÏ}Ö}º÷`m×bîðQ75gÛÏùÅ@éI&[!©{óR·Æòäÿ
øÍÃÔ®y¢¦0Ú Ó+¿¬÷þ#ãz$Ô
eOðïSñÃѦSí]¤È99H(ÏRuÃþBmÙ"µ)8É£R×é´×éR¦¾é^ð÷©ðÂå.Ò
äúòxsHùQË3j$¤íw¦]ÒS¿|2í}Y¸T¢3gÑìQZJS6FsÒ~89jMi "`ðÂ?N /3Ü_zè|BÁJ~ôÀÂ
ÒN¬oÈrVا¥M`}¢Oñ
y>N§'Æìnm*.Ú!x-w@5Ú²zÖΤÓÜiv5EôËWÖíGWM{8iγùQRhGµÐ·ò¡°ô¯R(ÌnÎJIÓ³ùùOyÕÆ4K?úµÑ7ò£kòcDªlI&^R5;u T_pÅ7=1þ×ßàamâ<q
ò¡ÐÚÛûñ
åäÝ2%ýsºs3»Â[¸2xGòú³ÄÊzó<õ1#+ÉÉ'@
XêþÈ.è£ cûcäêN¡º:2vk_ø|éTT4Ð%8÷#ÍJY)A
A¶Ê§¢5æò
Úû{Õ
ßX*uäUºz¢´õ/âç¬ûuï,Å;IÌ^
få¬nü5ï,ÅKMx!H¬!¹<¶{´ÎcnòaNOyÕF/ Înà2xf6Ç&¤h±¤f§|â¡k¾¥Âÿ
Vͦ ¼ÿ
¬
r%S¥ÎS]LÓl̾å-'V
$©$ÜP8,#ÑÖ²£^\ÒZÃfÓ9ß9þ×ϳWÈû¬~çÄm¾ß2
¾å:¸Üâ«£w@*LÚY/$hjÈ'v;wA§uÒ/z+U{vaSkZÛ:ÚSKmÄ(¥hZ¤¨R@ ³ÍT(ô»~À'ÔÙþ`#¥ðYW©x
ÖxÂbê"ÔäÓõZå~r¥_©S'f'ÂܼëRí¶ÈF¢¼T¢VI'v!qñy좲õvÑqÎÞªÎM),H Ó\ÈBJ²¾)aí³êTÔ¹µ®GíÁuÌÒçîWæ%SÕ7&
\uÆ °8¾)F
fÁ\ζæç̨cQÉBà
V¥Fñâð]ÃlÞUv¥Á^zíµ$¥)ózj¦raï¶àZÆÖ°p¢ 3¸:}¯Y²ê6=ÑuYõ'aËR¹¹vóôYÄ'S,(
´eCFÁÞ
z³I©I)¶Xt)x ÏP¿bÒÙÚjªt¤ÕnúÖ=9ðÏB«T¤Êf ÝV1¹X';»a7iÒg®CfEzv¡=kÍ·+.Ò
ukSBSÚNF £jö\íѲÝÑDr¨QRT¿8Â0çÞ¬À*ck$¤¬ÔååoKÊÔ´I¼íU"aHVÉV¥[8¼ªÜÔj
=5ÝVFOV4ÌÍM!¦FGYD
âf¬±VjئV©»7rêR-ky¹å;8TG0âN)¦´àzÃ1eYõûm½\wµTºitÛ5ªjä,£ÏjOeIR
ÜLzܳ×
ç-yL[פ¥^µØ¥7)Gi4½
XrUùG¥AlÕí
*Nðh¨c
|
|
From: Benjamin C. <bc...@us...> - 2001-10-03 04:04:04
|
Update of /cvsroot/phpbt/phpbt/docs/sgml
In directory usw-pr-cvs1:/tmp/cvs-serv14353/sgml
Modified Files:
phpbt.sgml
Added Files:
primer.sgml
Log Message:
Getting started on the user's guide -- can NS4 show PNG?
--- NEW FILE: primer.sgml ---
<!-- -*- sgml -*- -->
<sect1 id="primer">
<title>Getting Started</title>
<sect2>
<title>Creating an account</title>
<para>You can create a new account by following the link labeled <emphasis role="bold">Open a new account</emphasis>. To create a new account you will need to enter at least a valid email address (so that your password can be mailed to you). Providing your name is optional, but if you submit it then your name will appear with bugs you submit and comments you make. If the system has been configured to use a login separate from the email address, you will also be prompted for a login. If you have chosen an email address (or login) that is already in use, you will be prompted to choose a different one. After completing this form, your password will be mailed to you. Once you have received your password you can then login with your email (or login) and password to be able to submit bugs.</para>
</sect2>
<sect2 id="enterbug">
<title>Entering a bug</title>
<para>Once you have logged in to the system you can follow the <emphasis role="bold">Enter Bug</emphasis> link from the top navigation bar to create a new bug. If there is more than one project for which you can submit a bug, you will be prompted to choose one.</para>
<mediaobject>
<imageobject>
<imagedata fileref="images/shots/user/enterbug-chooseproject.png" format="PNG" align="center">
</imageobject>
<imageobject>
<imagedata fileref="images/shots/user/enterbug-chooseproject.jpg" format="JPG" align="center">
</imageobject>
<imageobject>
<imagedata fileref="images/shots/user/enterbug-chooseproject.eps" format="EPS" align="center">
</imageobject>
<textobject>
<phrase>Screen shot of selecting a project for a bug report.</phrase>
</textobject>
</mediaobject>
<para>..</para>
</sect2>
</sect1>
<!-- Local Variables: -->
<!-- sgml-indent-step: 2 -->
<!-- sgml-indent-data: 2 -->
<!-- sgml-parent-document: "phpbt.sgml" -->
<!-- End: -->
Index: phpbt.sgml
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/sgml/phpbt.sgml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- phpbt.sgml 2001/10/01 01:12:38 1.4
+++ phpbt.sgml 2001/10/03 04:04:01 1.5
@@ -5,6 +5,9 @@
<!-- Shortcuts -->
<!ENTITY phpbt "phpBugTracker">
+<!-- User's Guide -->
+<!ENTITY primer SYSTEM "primer.sgml">
+
<!-- Administrator's Guide -->
<!ENTITY installation SYSTEM "installation.sgml">
<!ENTITY configuration SYSTEM "configuration.sgml">
@@ -28,6 +31,9 @@
<abstract>
<para>Currently all interactions with &phpbt; are done via the web interface. Users can submit bugs, communicate with developers and testers about bugs, and search through the bug database.</para>
</abstract>
+
+ &primer;
+
</chapter>
<chapter id="adminguide">
|
|
From: Benjamin C. <bc...@us...> - 2001-10-03 04:04:04
|
Update of /cvsroot/phpbt/phpbt/docs/html In directory usw-pr-cvs1:/tmp/cvs-serv14353/html Modified Files: adminguide.html configuration.html devguide.html devstandards.html index.html userguide.html Log Message: Getting started on the user's guide -- can NS4 show PNG? Index: adminguide.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/adminguide.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- adminguide.html 2001/09/29 18:35:54 1.3 +++ adminguide.html 2001/10/03 04:03:55 1.4 @@ -99,7 +99,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN12" +NAME="AEN32" ></A ><P >One of the main design goals of phpBugTracker is to make installation and administration easy. In fact, the difficulty of installing bugzilla was a key motivator for phpBugTracker's existence.</P Index: configuration.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/configuration.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- configuration.html 2001/10/01 01:12:38 1.2 +++ configuration.html 2001/10/03 04:03:55 1.3 @@ -84,7 +84,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN64" +NAME="AEN84" ></A ><P >The options listed in this section can be configured by the <TT Index: devguide.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/devguide.html,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- devguide.html 2001/10/01 01:12:38 1.4 +++ devguide.html 2001/10/03 04:03:55 1.5 @@ -113,7 +113,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN169" +NAME="AEN189" ></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 @@ -136,7 +136,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN174" +NAME="AEN194" ></A ><P >phpBugTracker requires one external package, PHPlib, and can optionally use JpGraph. Of course a web server and a database are also necessary.</P @@ -161,7 +161,7 @@ ><H3 CLASS="SECT3" ><A -NAME="AEN180" +NAME="AEN200" >3.1.1.1. Database Abstraction</A ></H3 ><P @@ -220,7 +220,7 @@ ><H3 CLASS="SECT3" ><A -NAME="AEN192" +NAME="AEN212" >3.1.1.2. Templates</A ></H3 ><P Index: devstandards.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/devstandards.html,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- devstandards.html 2001/10/02 04:06:34 1.5 +++ devstandards.html 2001/10/03 04:03:55 1.6 @@ -77,7 +77,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN198" +NAME="AEN218" ></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.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- index.html 2001/10/01 01:12:38 1.4 +++ index.html 2001/10/03 04:03:55 1.5 @@ -55,6 +55,15 @@ HREF="userguide.html" >User's Guide</A ></DT +><DD +><DL +><DT +>1.1. <A +HREF="userguide.html#PRIMER" +>Getting Started</A +></DT +></DL +></DD ><DT >2. <A HREF="adminguide.html" Index: userguide.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/userguide.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- userguide.html 2001/09/29 18:35:54 1.2 +++ userguide.html 2001/10/03 04:03:55 1.3 @@ -86,6 +86,60 @@ >Currently all interactions with phpBugTracker are done via the web interface. Users can submit bugs, communicate with developers and testers about bugs, and search through the bug database.</P ></DIV ></BLOCKQUOTE +><DIV +CLASS="SECT1" +><H1 +CLASS="SECT1" +><A +NAME="PRIMER" +>1.1. Getting Started</A +></H1 +><DIV +CLASS="SECT2" +><H2 +CLASS="SECT2" +><A +NAME="AEN12" +>1.1.1. Creating an account</A +></H2 +><P +>You can create a new account by following the link labeled <SPAN +CLASS="bold" +><B +CLASS="EMPHASIS" +>Open a new account</B +></SPAN +>. To create a new account you will need to enter at least a valid email address (so that your password can be mailed to you). Providing your name is optional, but if you submit it then your name will appear with bugs you submit and comments you make. If the system has been configured to use a login separate from the email address, you will also be prompted for a login. If you have chosen an email address (or login) that is already in use, you will be prompted to choose a different one. After completing this form, your password will be mailed to you. Once you have received your password you can then login with your email (or login) and password to be able to submit bugs.</P +></DIV +><DIV +CLASS="SECT2" +><H2 +CLASS="SECT2" +><A +NAME="ENTERBUG" +>1.1.2. Entering a bug</A +></H2 +><P +>Once you have logged in to the system you can follow the <SPAN +CLASS="bold" +><B +CLASS="EMPHASIS" +>Enter Bug</B +></SPAN +> link from the top navigation bar to create a new bug. If there is more than one project for which you can submit a bug, you will be prompted to choose one.</P +><DIV +CLASS="MEDIAOBJECT" +><P +><IMG +SRC="images/shots/user/enterbug-chooseproject.png" +ALT="Screen shot of selecting a project for a bug report." +></IMG +></P +></DIV +><P +>..</P +></DIV +></DIV ></DIV ><DIV CLASS="NAVFOOTER" |
|
From: Benjamin C. <bc...@us...> - 2001-10-03 04:04:04
|
Update of /cvsroot/phpbt/phpbt/docs/html/images/shots/user In directory usw-pr-cvs1:/tmp/cvs-serv14353/html/images/shots/user Modified Files: enterbug-chooseproject.jpg Log Message: Getting started on the user's guide -- can NS4 show PNG? Index: enterbug-chooseproject.jpg =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/images/shots/user/enterbug-chooseproject.jpg,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 Binary files /tmp/cvsqhQeNF and /tmp/cvsALpBWa differ |
|
From: Benjamin C. <bc...@us...> - 2001-10-03 03:30:20
|
Update of /cvsroot/phpbt/phpbt/docs/html
In directory usw-pr-cvs1:/tmp/cvs-serv29640/docs/html
Modified Files:
docs.css
Log Message:
Tweaking
Index: docs.css
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/html/docs.css,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- docs.css 2001/09/29 04:02:38 1.2
+++ docs.css 2001/10/03 03:30:17 1.3
@@ -1,10 +1,17 @@
-.ARTICLE {
+body {
font-family: "Verdana","Arial","Helvetica","MS Sans Serif","Sans-Serif";
+ font-size: 10pt;
}
-.TITLE {
- font-family: "Verdana","Arial","Helvetica","MS Sans Serif","Sans-Serif";
+TD {
+ font-size: 10pt;
+ }
+
+H1.TITLE {
+ font-size: 20pt;
+ font-family: "Tahoma", "Lucida", "Helvetica", "Arial", "Sans-Serif";
text-align: right;
background-color: #FFDDBB;
padding: .1em;
}
+
|
|
From: Benjamin C. <bc...@us...> - 2001-10-03 03:29:36
|
Update of /cvsroot/phpbt/phpbt In directory usw-pr-cvs1:/tmp/cvs-serv29269 Modified Files: CHANGELOG Log Message: Updated for 0.3.3 Index: CHANGELOG =================================================================== RCS file: /cvsroot/phpbt/phpbt/CHANGELOG,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- CHANGELOG 2001/09/29 14:50:26 1.17 +++ CHANGELOG 2001/10/03 03:29:33 1.18 @@ -1,6 +1,8 @@ --- 0.4.0 -- +-- 0.3.3 -- 2 Oct 2001 : Added the ability to enter cvs:filename.ext or cvs:path/filename.ext:v.vv into the bug comments and have that linked to a CVS web interface. +: Fixed bugs with project administration, account creation, and the initial + database installation. -- 0.3.2 -- 28 Sep 2001 : Added patch and patch instructions for page.inc (in PHPlib). |
|
From: Benjamin C. <bc...@us...> - 2001-10-03 03:25:44
|
Update of /cvsroot/phpbt/phpbt/docs/html/images/shots/user In directory usw-pr-cvs1:/tmp/cvs-serv28009 Removed Files: bugdetail.eps buglist.eps enterbug-chooseproject.eps enterbug-detail.eps Log Message: The .eps images were just too big to be tossing around. --- bugdetail.eps DELETED --- --- buglist.eps DELETED --- --- enterbug-chooseproject.eps DELETED --- --- enterbug-detail.eps DELETED --- |
|
From: Benjamin C. <bc...@us...> - 2001-10-02 23:26:26
|
Update of /cvsroot/phpbt/phpbt/schemas
In directory usw-pr-cvs1:/tmp/cvs-serv27194/schemas
Modified Files:
mysql.in pgsql.in
Log Message:
Bug #467200 - Gotta populate the db_sequence table
Index: mysql.in
===================================================================
RCS file: /cvsroot/phpbt/phpbt/schemas/mysql.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mysql.in 2001/09/22 16:55:33 1.2
+++ mysql.in 2001/10/02 23:26:22 1.3
@@ -241,6 +241,7 @@
(user_id, login, first_name, last_name, email, password)
values (1, 'ad...@ex...', 'System', 'Admin', 'ad...@ex...',
'somepassword');
+INSERT INTO db_sequence values ('TBL_AUTH_USER', 1);
# Start off with three user levels...
INSERT INTO TBL_AUTH_GROUP (group_id, group_name) VALUES (1, 'Admin');
@@ -291,6 +292,7 @@
INSERT INTO TBL_OS VALUES (29,'Solaris',29,'/Mozilla.*\\(.*;.*; SunOS 5.*\\)/');
INSERT INTO TBL_OS VALUES (30,'SunOS',30,'/Mozilla.*\\(.*;.*; SunOS.*\\)/');
INSERT INTO TBL_OS VALUES (31,'other',31,'');
+INSERT INTO db_sequence values ('TBL_OS', 31);
INSERT INTO TBL_RESOLUTION VALUES (1,'Fixed','Bug was eliminated',1);
INSERT INTO TBL_RESOLUTION VALUES (2,'Not a bug','It\'s not a bug -- it\'s a feature!',2);
@@ -298,6 +300,7 @@
INSERT INTO TBL_RESOLUTION VALUES (4,'Deferred','We\'ll get around to it later',4);
INSERT INTO TBL_RESOLUTION VALUES (5,'Works for me','Can\'t replicate the bug',5);
INSERT INTO TBL_RESOLUTION VALUES (6,'Duplicate','',6);
+INSERT INTO db_sequence values ('TBL_RESOLUTION', 6);
INSERT INTO TBL_SEVERITY VALUES (1,'Unassigned','Default bug creation',1,'#dadada');
INSERT INTO TBL_SEVERITY VALUES (2,'Idea','Ideas for further development',2,'#dad0d0');
@@ -306,6 +309,7 @@
INSERT INTO TBL_SEVERITY VALUES (5,'Content','Non-functional related bugs, such as text content',5,'#dababa');
INSERT INTO TBL_SEVERITY VALUES (6,'Significant','A bug affecting the intended performance of the product',6,'#dab0b0');
INSERT INTO TBL_SEVERITY VALUES (7,'Critical','A bug severe enough to prevent the release of the product',7,'#daaaaa');
+INSERT INTO db_sequence values ('TBL_SEVERITY', 7);
INSERT INTO TBL_STATUS VALUES (1,'Unconfirmed','Reported but not confirmed',1);
INSERT INTO TBL_STATUS VALUES (2,'New','A new bug',2);
@@ -314,6 +318,7 @@
INSERT INTO TBL_STATUS VALUES (5,'Resolved','Set by engineer with a resolution',5);
INSERT INTO TBL_STATUS VALUES (6,'Verified','The resolution is confirmed by the reporter',6);
INSERT INTO TBL_STATUS VALUES (7,'Closed','The bug is officially squashed (QA)',7);
+INSERT INTO db_sequence values ('TBL_STATUS', 7);
#
# -- Conversion from 0.2.x to 0.3.0 --
Index: pgsql.in
===================================================================
RCS file: /cvsroot/phpbt/phpbt/schemas/pgsql.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pgsql.in 2001/09/22 16:55:33 1.2
+++ pgsql.in 2001/10/02 23:26:22 1.3
@@ -247,6 +247,7 @@
(user_id, login, first_name, last_name, email, password)
values (1, 'ad...@ex...', 'System', 'Admin', 'ad...@ex...',
'somepassword');
+INSERT INTO db_sequence values ('TBL_AUTH_USER', 1);
-- Start off with three user levels...
INSERT INTO TBL_AUTH_GROUP (group_id, group_name) VALUES (1, 'Admin');
@@ -297,6 +298,7 @@
INSERT INTO TBL_OS VALUES (29,'Solaris',29,'/Mozilla.*\\(.*;.*; SunOS 5.*\\)/');
INSERT INTO TBL_OS VALUES (30,'SunOS',30,'/Mozilla.*\\(.*;.*; SunOS.*\\)/');
INSERT INTO TBL_OS VALUES (31,'other',31,'');
+INSERT INTO db_sequence values ('TBL_OS', 31);
INSERT INTO TBL_RESOLUTION VALUES (1,'Fixed','Bug was eliminated',1);
INSERT INTO TBL_RESOLUTION VALUES (2,'Not a bug','It\'s not a bug -- it\'s a feature!',2);
@@ -304,6 +306,7 @@
INSERT INTO TBL_RESOLUTION VALUES (4,'Deferred','We\'ll get around to it later',4);
INSERT INTO TBL_RESOLUTION VALUES (5,'Works for me','Can\'t replicate the bug',5);
INSERT INTO TBL_RESOLUTION VALUES (6,'Duplicate','',6);
+INSERT INTO db_sequence values ('TBL_RESOLUTION', 6);
INSERT INTO TBL_SEVERITY VALUES (1,'Unassigned','Default bug creation',1,'#dadada');
INSERT INTO TBL_SEVERITY VALUES (2,'Idea','Ideas for further development',2,'#dad0d0');
@@ -312,6 +315,7 @@
INSERT INTO TBL_SEVERITY VALUES (5,'Content','Non-functional related bugs, such as text content',5,'#dababa');
INSERT INTO TBL_SEVERITY VALUES (6,'Significant','A bug affecting the intended performance of the product',6,'#dab0b0');
INSERT INTO TBL_SEVERITY VALUES (7,'Critical','A bug severe enough to prevent the release of the product',7,'#daaaaa');
+INSERT INTO db_sequence values ('TBL_SEVERITY', 7);
INSERT INTO TBL_STATUS VALUES (1,'Unconfirmed','Reported but not confirmed',1);
INSERT INTO TBL_STATUS VALUES (2,'New','A new bug',2);
@@ -320,6 +324,7 @@
INSERT INTO TBL_STATUS VALUES (5,'Resolved','Set by engineer with a resolution',5);
INSERT INTO TBL_STATUS VALUES (6,'Verified','The resolution is confirmed by the reporter',6);
INSERT INTO TBL_STATUS VALUES (7,'Closed','The bug is officially squashed (QA)',7);
+INSERT INTO db_sequence values ('TBL_STATUS', 7);
--
-- -- Conversion from 0.2.x to 0.3.0 --
|
|
From: Benjamin C. <bc...@us...> - 2001-10-02 23:19:45
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv25702
Modified Files:
newaccount.php
Log Message:
Bug #467200 - Using the wrong table name in with nextid()
Index: newaccount.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/newaccount.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- newaccount.php 2001/09/03 17:03:55 1.16
+++ newaccount.php 2001/10/02 23:19:42 1.17
@@ -46,7 +46,7 @@
$mpassword = $password;
}
if (EMAIL_IS_LOGIN) $login = $email;
- $user_id = $q->nextid('user');
+ $user_id = $q->nextid(TBL_AUTH_USER);
$q->query("insert into ".TBL_AUTH_USER." (user_id, login, first_name, last_name, email, password, active, created_date, last_modified_date)"
." values ($user_id, '$login', '$firstname', '$lastname', '$email', '$mpassword', 1, $now, $now)");
$q->query("insert into ".TBL_USER_GROUP." (user_id, group_id)"
|
|
From: Benjamin C. <bc...@us...> - 2001-10-02 23:17:19
|
Update of /cvsroot/phpbt/phpbt/admin
In directory usw-pr-cvs1:/tmp/cvs-serv25106/admin
Modified Files:
project.php
Log Message:
Fixes bug #467196
Needed some quotes around the version field on database update
Index: project.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/project.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- project.php 2001/10/02 03:41:19 1.19
+++ project.php 2001/10/02 23:17:16 1.20
@@ -41,7 +41,7 @@
values (".$q->nextid(TBL_VERSION).", $projectid, '$vf_version', $vf_active, $u, $now)");
} else {
$q->query('update '.TBL_VERSION
- ." set project_id = $projectid, version_name = $vf_version,
+ ." set project_id = $projectid, version_name = '$vf_version',
active = $vf_active where version_id = '$versionid'");
}
header("Location: project.php?op=edit&id=$projectid");
|