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-11 14:24:08
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv514/templates/default
Modified Files:
wrap.html
Log Message:
Moved admin templates to a subdir of the templates dir. Changed wraps to use css.php instead of global.css
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/wrap.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- wrap.html 2001/08/28 04:13:59 1.7
+++ wrap.html 2001/10/11 14:24:03 1.8
@@ -2,7 +2,7 @@
<head>
<META HTTP-EQUIV="Expires" CONTENT="-1">
<title>phpBugTracker - {TITLE}</title>
- <link rel="StyleSheet" href="global.css" type="text/css">
+ <link rel="StyleSheet" href="css.php" type="text/css">
</head>
<body bgcolor="#ffffff" link="#006699" vlink="#006699" alink="#006699">
<table border="0" cellpadding="0" cellspacing="0">
|
|
From: Benjamin C. <bc...@us...> - 2001-10-11 14:24:06
|
Update of /cvsroot/phpbt/phpbt/admin/templates/default In directory usw-pr-cvs1:/tmp/cvs-serv514/admin/templates/default Removed Files: badperm.html login.html oslist.html project-add.html project-edit.html projectlist.html resolutionlist.html severitylist.html statuslist.html userlist.html wrap.html Log Message: Moved admin templates to a subdir of the templates dir. Changed wraps to use css.php instead of global.css --- badperm.html DELETED --- --- login.html DELETED --- --- oslist.html DELETED --- --- project-add.html DELETED --- --- project-edit.html DELETED --- --- projectlist.html DELETED --- --- resolutionlist.html DELETED --- --- severitylist.html DELETED --- --- statuslist.html DELETED --- --- userlist.html DELETED --- --- wrap.html DELETED --- |
|
From: Benjamin C. <bc...@us...> - 2001-10-11 14:24:05
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv514
Modified Files:
include.php
Removed Files:
global-black.css global.css
Log Message:
Moved admin templates to a subdir of the templates dir. Changed wraps to use css.php instead of global.css
Index: include.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/include.php,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- include.php 2001/10/06 03:35:37 1.58
+++ include.php 2001/10/11 14:24:03 1.59
@@ -245,14 +245,20 @@
}
}
-$t = new templateclass('templates/'.THEME,'keep');
+if (defined('INCLUDE_PATH')) {
+ $t = new templateclass(INCLUDE_PATH.'templates/'.THEME.'admin', 'keep');
+} else {
+ $t = new templateclass('templates/'.THEME, 'keep');
+}
+
$t->set_var(array(
'TITLE' => '',
'me' => $me,
'me2' => $me2,
'error' => '',
'cssfile' => $cssfile,
- 'loginerror' => ''));
+ 'loginerror' => '',
+ 'template_path' => 'templates/'.THEME));
// End classes -- Begin helper functions
--- global-black.css DELETED ---
--- global.css DELETED ---
|
|
From: Benjamin C. <bc...@us...> - 2001-10-11 14:04:14
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin In directory usw-pr-cvs1:/tmp/cvs-serv26332/templates/default/admin Log Message: Directory /cvsroot/phpbt/phpbt/templates/default/admin added to the repository |
|
From: Benjamin C. <bc...@us...> - 2001-10-10 04:40:50
|
Update of /cvsroot/phpbt/phpbt In directory usw-pr-cvs1:/tmp/cvs-serv32755 Modified Files: css.php Log Message: Oops Index: css.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/css.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- css.php 2001/10/10 03:59:43 1.1 +++ css.php 2001/10/10 04:40:47 1.2 @@ -28,7 +28,7 @@ 'body' => '', 'body-bg' => '', 'td' => '', - 'tr.alt-bg' => '#ddddd', + 'tr.alt-bg' => '#dddddd', 'td.head-bg' => '#eeeeee', 'td.head-selected-bg' => '#bbbbbb', 'th-bg' => '#eeeeee', @@ -45,7 +45,7 @@ 'td.head-bg' => '#4a4a4a', 'td.head-selected-bg' => '#6a6a6a', 'th-bg' => '#4a4a4a', - 'th' => '#fffff' + 'th' => '#ffffff' ); $color = $colors['default']; |
|
From: Benjamin C. <bc...@us...> - 2001-10-10 03:59:47
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv21625
Added Files:
css.php
Log Message:
This makes color schemes a little more flexible. To be used instead of global.css in wrap.html
--- NEW FILE: css.php ---
<?php
// css.php - Kick out the CSS
// ------------------------------------------------------------------------
// Copyright (c) 2001 The phpBugTracker Group
// ------------------------------------------------------------------------
// This file is part of phpBugTracker
//
// phpBugTracker is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// phpBugTracker is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with phpBugTracker; if not, write to the Free Software Foundation,
// Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
// ------------------------------------------------------------------------
// $Id: css.php,v 1.1 2001/10/10 03:59:43 bcurtis Exp $
$colors['default'] = array(
'link' => '',
'vlink' => '',
'body' => '',
'body-bg' => '',
'td' => '',
'tr.alt-bg' => '#ddddd',
'td.head-bg' => '#eeeeee',
'td.head-selected-bg' => '#bbbbbb',
'th-bg' => '#eeeeee',
'th' => ''
);
$colors['black'] = array(
'link' => '#cecece',
'vlink' => '#cecece',
'body' => '#ffffff',
'body-bg' => '#000000',
'td' => '#ffffff',
'tr.alt-bg' => '#4e4e4e',
'td.head-bg' => '#4a4a4a',
'td.head-selected-bg' => '#6a6a6a',
'th-bg' => '#4a4a4a',
'th' => '#fffff'
);
$color = $colors['default'];
?>
body {
margin: 4px;
font-size: 12px;
color: <?php echo $color['body'] ?>;
background-color: <?php echo $color['body-bg'] ?>;
}
a:link { text-decoration: none; color: <?php echo $color['link'] ?>; }
a:visited { text-decoration: none; color: <?php echo $color['vlink'] ?>; }
a:active { text-decoration: none }
a:hover { text-decoration: underline; }
td {
font-family: "Arial","Helvetica","MS Sans Serif","Sans-Serif";
font-size: 12px;
color: <?php echo $color['td'] ?>;
}
tr.alt {
background-color: <?php echo $color['tr.alt-bg'] ?>;
}
td.head {
font-weight: bold;
text-align: center;
background-color: <?php echo $color['td.head-bg'] ?>;
}
td.head-selected {
font-weight: bold;
text-align: center;
background-color: <?php echo $color['td.head-selected-bg'] ?>;
}
td.center {
text-align: center;
}
th {
font-family: "Arial","Helvetica","MS Sans Serif","Sans-Serif";
font-size: 12px;
color: <?php echo $color['th'] ?>;
background-color: <?php echo $color['th-bg'] ?>;
}
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: Javier S. <ja...@us...> - 2001-10-09 08:30:41
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv15366
Modified Files:
bugemail.txt
Log Message:
adding warning message, a lot af users ansmwer to message instead of use phpbt
Index: bugemail.txt
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugemail.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bugemail.txt 2001/08/30 13:49:08 1.2
+++ bugemail.txt 2001/10/09 08:30:37 1.3
@@ -1,4 +1,8 @@
============================================================================
+THIS MESSAGE WAS GENERATED BY THE BUGTRACKER SOFTWARE PLEASE DO NOT REPLY
+
+INSTEAD FOLLOW BUG'S URL BELOW IN ORDER TO DETAIL BUG:
+============================================================================
Bug #: {bugid} ({bugurl})
{reporter_stat} Reported By: {reporter}
----------------------------------------------------------------------------
@@ -15,7 +19,7 @@
{assignedto_stat} Assigned To: {assignedto}
============================================================================
<!-- BEGIN commentblock -->
- COMMENTS
+ COMMENTS
----- Posted by {oldpostedby} at {oldpostedon} -----
{oldcomments}
|
|
From: Benjamin C. <bc...@us...> - 2001-10-09 04:03:38
|
Update of /cvsroot/phpbt/phpbt/docs/sgml
In directory usw-pr-cvs1:/tmp/cvs-serv26978/sgml
Modified Files:
dependencies.sgml
Log Message:
Finishing up (I hope) the dependencies section
Index: dependencies.sgml
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/sgml/dependencies.sgml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- dependencies.sgml 2001/10/08 13:57:11 1.6
+++ dependencies.sgml 2001/10/09 04:03:35 1.7
@@ -3,7 +3,7 @@
<title>Dependencies</title>
<abstract>
- <para>&phpbt; requires one external package, PHPlib, and can optionally use JpGraph. Of course a web server and a database are also necessary.</para>
+ <para>&phpbt; 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.</para>
</abstract>
<sect2 id="dep-phplib">
@@ -67,9 +67,29 @@
</formalpara>
<formalpara>
<title>Perm</title>
- <para></para>
+ <para>There are two types of checks that are made in &phpbt;: permission and group membership. These checks can be made two different ways -- one that exits and displays an access denied message (useful for protecting an entire page) or one that returns whether the user passed the check (useful for determining whether to display a piece of information).</para>
</formalpara>
+ <example>
+ <title>Permission and Group Checking</title>
+ <programlisting>
+ // Non-failing checks
+ if ($perm->have_perm('EditBug')) {
+ echo 'You can edit a bug!';
+ }
+ if ($perm->in_group('User')) {
+ echo 'You are logged in and belong to the User group';
+ }
+
+ // Failing checks -- the script exits at this point if the check fails
+ $perm->check('Admin');
+ $perm->check_group('Developer');
+ </programlisting>
+ </example>
</sect3>
+ </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>
</sect2>
</sect1>
|
|
From: Benjamin C. <bc...@us...> - 2001-10-09 04:03:37
|
Update of /cvsroot/phpbt/phpbt/docs/html
In directory usw-pr-cvs1:/tmp/cvs-serv26978/html
Modified Files:
devguide.html devstandards.html index.html
Log Message:
Finishing up (I hope) the dependencies section
Index: devguide.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/html/devguide.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- devguide.html 2001/10/08 13:57:11 1.9
+++ devguide.html 2001/10/09 04:03:35 1.10
@@ -87,6 +87,20 @@
HREF="devguide.html#DEPENDENCIES"
>Dependencies</A
></DT
+><DD
+><DL
+><DT
+>3.1.1. <A
+HREF="devguide.html#DEP-PHPLIB"
+>PHPlib</A
+></DT
+><DT
+>3.1.2. <A
+HREF="devguide.html#DEP-JPGRAPH"
+>JpGraph</A
+></DT
+></DL
+></DD
><DT
>3.2. <A
HREF="devstandards.html"
@@ -139,7 +153,7 @@
NAME="AEN218"
></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
+>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
></DIV
></BLOCKQUOTE
><DIV
@@ -342,9 +356,60 @@
><P
><B
>Perm. </B
+>There are two types of checks that are made in phpBugTracker: permission and group membership. These checks can be made two different ways -- one that exits and displays an access denied message (useful for protecting an entire page) or one that returns whether the user passed the check (useful for determining whether to display a piece of information).</P
+></DIV
+><DIV
+CLASS="EXAMPLE"
+><A
+NAME="AEN269"
+></A
+><P
+><B
+>Example 3-3. Permission and Group Checking</B
></P
+><TABLE
+BORDER="0"
+BGCOLOR="#EEEEEE"
+WIDTH="100%"
+><TR
+><TD
+><PRE
+CLASS="PROGRAMLISTING"
+> // Non-failing checks
+ if ($perm->have_perm('EditBug')) {
+ echo 'You can edit a bug!';
+ }
+ if ($perm->in_group('User')) {
+ echo 'You are logged in and belong to the User group';
+ }
+
+ // Failing checks -- the script exits at this point if the check fails
+ $perm->check('Admin');
+ $perm->check_group('Developer');
+ </PRE
+></TD
+></TR
+></TABLE
+></DIV
></DIV
></DIV
+><DIV
+CLASS="SECT2"
+><H2
+CLASS="SECT2"
+><A
+NAME="DEP-JPGRAPH"
+>3.1.2. JpGraph</A
+></H2
+><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
+> for an example and are encouraged to visit JpGraph's web site at <A
+HREF="http://www.aditus.nu/jpgraph/"
+TARGET="_top"
+>http://www.aditus.nu/jpgraph</A
+>.</P
></DIV
></DIV
></DIV
Index: devstandards.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/html/devstandards.html,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- devstandards.html 2001/10/08 13:57:11 1.10
+++ devstandards.html 2001/10/09 04:03:35 1.11
@@ -77,7 +77,7 @@
><DIV
CLASS="ABSTRACT"
><A
-NAME="AEN271"
+NAME="AEN279"
></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.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- index.html 2001/10/08 04:53:46 1.7
+++ index.html 2001/10/09 04:03:35 1.8
@@ -122,6 +122,11 @@
HREF="devguide.html#AEN241"
>Using the template class</A
></DT
+><DT
+>3-3. <A
+HREF="devguide.html#AEN269"
+>Permission and Group Checking</A
+></DT
></DL
></DIV
></DIV
|
|
From: Ben C. <php...@be...> - 2001-10-09 03:32:24
|
Yeah, you need to have your own images, and possibly css and javascript for some template customizations. You could add template_url to the list of template tokens set in include.php, and I think that would work just fine. I agree with the suggestion you made of putting those directories into the templates/THEME directory. We should write up some docs on creating new themes, I guess.
I've also been thinking about putting color schemes in a table in the database, then generating the css file with a php script. That way one set of css could be used for easily changing the color schemes used in a certain theme.
On Mon, Oct 08, 2001 at 09:53:07PM +0200, Javier Sixto wrote:
> Hello Ben,
>
> I was thinking about templates, and they have a problem (i thnik so :-)
> ) ... they don't manage dynamic css or images files.
> I have solve this problem on my own web-site, adding to templates
> directory some subdires :
> images , css and javascript ...
> each directory contain templates special files ....
>
> then i use a var like {template_url} at the begin of each file call in
> the template. for phpbt $template_url=INSTALLURL.'/'.THEME
> for example :
>
> actual : <link rel="StyleSheet" href="global.css" type="text/css">
>
> my feature :-) : <link rel="StyleSheet"
> href="{template_url}/css/global.css" type="text/css">
>
> templates tree :
>
> temp_name->css
> ->images
> ->javascript
>
>
> So template dir will contain all types non-PHP files.
>
> Ok -> Admin part can't work whith {template_url} ...
>
> What do you think about ?
>
>
|
|
From: Javier S. <js...@si...> - 2001-10-08 19:51:15
|
Hello Ben,
I was thinking about templates, and they have a problem (i thnik so :-)
) ... they don't manage dynamic css or images files.
I have solve this problem on my own web-site, adding to templates
directory some subdires :
images , css and javascript ...
each directory contain templates special files ....
then i use a var like {template_url} at the begin of each file call in
the template. for phpbt $template_url=INSTALLURL.'/'.THEME
for example :
actual : <link rel="StyleSheet" href="global.css" type="text/css">
my feature :-) : <link rel="StyleSheet"
href="{template_url}/css/global.css" type="text/css">
templates tree :
temp_name->css
->images
->javascript
So template dir will contain all types non-PHP files.
Ok -> Admin part can't work whith {template_url} ...
What do you think about ?
|
|
From: Benjamin C. <bc...@us...> - 2001-10-08 13:57:17
|
Update of /cvsroot/phpbt/phpbt/docs/sgml
In directory usw-pr-cvs1:/tmp/cvs-serv18087/sgml
Modified Files:
dependencies.sgml primer.sgml
Log Message:
A little closer
Index: dependencies.sgml
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/sgml/dependencies.sgml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- dependencies.sgml 2001/10/08 04:53:46 1.5
+++ dependencies.sgml 2001/10/08 13:57:11 1.6
@@ -57,16 +57,18 @@
<sect3>
<title>Session and Authentication</title>
<para>The session start and authentication code is included in <filename>include.php</filename>. The session is started by a call to <function>page_open()</function>, with the arguments specifying which session elements should be created. &phpbt; uses the <classname>Auth</classname> and <classname>Perm</classname> classes from PHPlib in addition to the base <classname>Session</classname> class. </para>
- <sect4>
+ <formalpara>
<title>Session</title>
- <para>Session variables, or variables that should be retained from page to page, are set via the <varname>$sess</varname> variable, which is an instantiation of the <classname>usess</classname> class. </para>
- </sect4>
- <sect4>
+ <para>Session variables, or variables that should be retained from page to page, are set via the <varname>$sess</varname> variable, which is an instantiation of the <classname>usess</classname> class. You can register a session variable with <function>$sess->register('<replaceable>varname</replaceable>')</function>. When registering, make sure you don't include the $ with <replaceable>varname</replaceable>. This variable will now be available in the global scope until the session is destroyed by the user closing the browser.</para>
+ </formalpara>
+ <formalpara>
<title>Auth</title>
- </sect4>
- <sect4>
+ <para>The login handler is located near the end of <filename>include.php</filename>. Via the <classname>uath</classname> class, the global variable <varname>$u</varname> is set to the user id of the user if logged in, or to 'nobody' if not logged in. This variable should be used as the CreatedBy or LastModifiedBy value for database inserts and updates.</para>
+ </formalpara>
+ <formalpara>
<title>Perm</title>
- </sect4>
+ <para></para>
+ </formalpara>
</sect3>
</sect2>
</sect1>
Index: primer.sgml
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/sgml/primer.sgml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- primer.sgml 2001/10/08 04:53:46 1.4
+++ primer.sgml 2001/10/08 13:57:11 1.5
@@ -18,10 +18,10 @@
<screeninfo>Project selection</screeninfo>
<mediaobject>
<imageobject>
- <imagedata fileref="images/shots/user/enterbug-chooseproject.png" format="PNG" align="middle">
+ <imagedata fileref="images/shots/user/enterbug-chooseproject.png" format="PNG">
</imageobject>
<imageobject>
- <imagedata fileref="images/shots/user/enterbug-chooseproject.jpg" format="JPG" align="center">
+ <imagedata fileref="images/shots/user/enterbug-chooseproject.jpg" format="JPG">
</imageobject>
<imageobject>
<imagedata fileref="images/shots/user/enterbug-chooseproject.eps" format="EPS" align="center">
@@ -41,10 +41,10 @@
<screeninfo>Adding a bug</screeninfo>
<mediaobject>
<imageobject>
- <imagedata fileref="images/shots/user/enterbug-detail.png" format="PNG" align="center">
+ <imagedata fileref="images/shots/user/enterbug-detail.png" format="PNG">
</imageobject>
<imageobject>
- <imagedata fileref="images/shots/user/enterbug-detail.jpg" format="JPG" align="center">
+ <imagedata fileref="images/shots/user/enterbug-detail.jpg" format="JPG">
</imageobject>
<imageobject>
<imagedata fileref="images/shots/user/enterbug-detail.eps" format="EPS" align="center">
|
|
From: Benjamin C. <bc...@us...> - 2001-10-08 13:57:16
|
Update of /cvsroot/phpbt/phpbt/docs/html
In directory usw-pr-cvs1:/tmp/cvs-serv18087/html
Modified Files:
devguide.html devstandards.html userguide.html
Log Message:
A little closer
Index: devguide.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/html/devguide.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- devguide.html 2001/10/08 04:53:46 1.8
+++ devguide.html 2001/10/08 13:57:11 1.9
@@ -296,39 +296,53 @@
>Session</TT
> class. </P
><DIV
-CLASS="SECT4"
-><H4
-CLASS="SECT4"
-><A
-NAME="AEN252"
->3.1.1.3.1. Session</A
-></H4
+CLASS="FORMALPARA"
><P
+><B
+>Session. </B
>Session variables, or variables that should be retained from page to page, are set via the <TT
CLASS="VARNAME"
>$sess</TT
> variable, which is an instantiation of the <TT
CLASS="CLASSNAME"
>usess</TT
-> class. </P
+> class. You can register a session variable with <TT
+CLASS="FUNCTION"
+>$sess->register('<TT
+CLASS="REPLACEABLE"
+><I
+>varname</I
+></TT
+>')</TT
+>. When registering, make sure you don't include the $ with <TT
+CLASS="REPLACEABLE"
+><I
+>varname</I
+></TT
+>. This variable will now be available in the global scope until the session is destroyed by the user closing the browser.</P
></DIV
><DIV
-CLASS="SECT4"
-><H4
-CLASS="SECT4"
-><A
-NAME="AEN257"
->3.1.1.3.2. Auth</A
-></H4
+CLASS="FORMALPARA"
+><P
+><B
+>Auth. </B
+>The login handler is located near the end of <TT
+CLASS="FILENAME"
+>include.php</TT
+>. Via the <TT
+CLASS="CLASSNAME"
+>uath</TT
+> class, the global variable <TT
+CLASS="VARNAME"
+>$u</TT
+> is set to the user id of the user if logged in, or to 'nobody' if not logged in. This variable should be used as the CreatedBy or LastModifiedBy value for database inserts and updates.</P
></DIV
><DIV
-CLASS="SECT4"
-><H4
-CLASS="SECT4"
-><A
-NAME="AEN259"
->3.1.1.3.3. Perm</A
-></H4
+CLASS="FORMALPARA"
+><P
+><B
+>Perm. </B
+></P
></DIV
></DIV
></DIV
Index: devstandards.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/html/devstandards.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- devstandards.html 2001/10/08 04:53:46 1.9
+++ devstandards.html 2001/10/08 13:57:11 1.10
@@ -77,7 +77,7 @@
><DIV
CLASS="ABSTRACT"
><A
-NAME="AEN263"
+NAME="AEN271"
></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.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- userguide.html 2001/10/08 04:53:46 1.6
+++ userguide.html 2001/10/08 13:57:11 1.7
@@ -131,8 +131,7 @@
CLASS="MEDIAOBJECT"
><P
><IMG
-SRC="images/shots/user/enterbug-chooseproject.png"
-ALIGN="MIDDLE"><DIV
+SRC="images/shots/user/enterbug-chooseproject.png"><DIV
CLASS="CAPTION"
><P
>Selecting a project for a bug report.</P
@@ -181,8 +180,7 @@
CLASS="MEDIAOBJECT"
><P
><IMG
-SRC="images/shots/user/enterbug-detail.png"
-ALIGN="CENTER"><DIV
+SRC="images/shots/user/enterbug-detail.png"><DIV
CLASS="CAPTION"
><P
>Entering a bug report.</P
|
|
From: Benjamin C. <bc...@us...> - 2001-10-08 04:53:49
|
Update of /cvsroot/phpbt/phpbt/docs/html
In directory usw-pr-cvs1:/tmp/cvs-serv29139/html
Modified Files:
devguide.html devstandards.html docs.css index.html
userguide.html
Log Message:
Tweak, tweak, tweak
Index: devguide.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/html/devguide.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- devguide.html 2001/10/08 01:59:15 1.7
+++ devguide.html 2001/10/08 04:53:46 1.8
@@ -189,6 +189,15 @@
CLASS="FUNCTION"
>query()</TT
>. Here are some examples:</P
+><DIV
+CLASS="EXAMPLE"
+><A
+NAME="AEN235"
+></A
+><P
+><B
+>Example 3-1. Using the database class</B
+></P
><TABLE
BORDER="0"
BGCOLOR="#EEEEEE"
@@ -215,16 +224,26 @@
></TR
></TABLE
></DIV
+></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
-NAME="AEN236"
+NAME="AEN238"
>3.1.1.2. Templates</A
></H3
><P
>Instead of outputting HTML from the scripts, templates are used to separate the code from the HTML. The templates contain tokens that are replaced by the scripts with values. The general process for using templates is as follows:</P
+><DIV
+CLASS="EXAMPLE"
+><A
+NAME="AEN241"
+></A
+><P
+><B
+>Example 3-2. Using the template class</B
+></P
><TABLE
BORDER="0"
BGCOLOR="#EEEEEE"
@@ -244,11 +263,73 @@
));
// Parse the template and print it out (inside a wrap template)
- $t->pparse('main', array('content', 'wrap', 'main');
+ $t->pparse('main', array('content', 'wrap', 'main'));
</PRE
></TD
></TR
></TABLE
+></DIV
+></DIV
+><DIV
+CLASS="SECT3"
+><H3
+CLASS="SECT3"
+><A
+NAME="AEN244"
+>3.1.1.3. Session and Authentication</A
+></H3
+><P
+>The session start and authentication code is included in <TT
+CLASS="FILENAME"
+>include.php</TT
+>. The session is started by a call to <TT
+CLASS="FUNCTION"
+>page_open()</TT
+>, with the arguments specifying which session elements should be created. phpBugTracker uses the <TT
+CLASS="CLASSNAME"
+>Auth</TT
+> and <TT
+CLASS="CLASSNAME"
+>Perm</TT
+> classes from PHPlib in addition to the base <TT
+CLASS="CLASSNAME"
+>Session</TT
+> class. </P
+><DIV
+CLASS="SECT4"
+><H4
+CLASS="SECT4"
+><A
+NAME="AEN252"
+>3.1.1.3.1. Session</A
+></H4
+><P
+>Session variables, or variables that should be retained from page to page, are set via the <TT
+CLASS="VARNAME"
+>$sess</TT
+> variable, which is an instantiation of the <TT
+CLASS="CLASSNAME"
+>usess</TT
+> class. </P
+></DIV
+><DIV
+CLASS="SECT4"
+><H4
+CLASS="SECT4"
+><A
+NAME="AEN257"
+>3.1.1.3.2. Auth</A
+></H4
+></DIV
+><DIV
+CLASS="SECT4"
+><H4
+CLASS="SECT4"
+><A
+NAME="AEN259"
+>3.1.1.3.3. Perm</A
+></H4
+></DIV
></DIV
></DIV
></DIV
Index: devstandards.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/html/devstandards.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- devstandards.html 2001/10/08 01:59:15 1.8
+++ devstandards.html 2001/10/08 04:53:46 1.9
@@ -77,7 +77,7 @@
><DIV
CLASS="ABSTRACT"
><A
-NAME="AEN242"
+NAME="AEN263"
></A
><P
> This section details the coding and process standards to be
Index: docs.css
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/html/docs.css,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- docs.css 2001/10/08 03:24:04 1.4
+++ docs.css 2001/10/08 04:53:46 1.5
@@ -15,3 +15,10 @@
padding: .1em;
}
+.MEDIAOBJECT {
+ text-align: center;
+ }
+
+.CAPTION {
+ text-align: center;
+ }
Index: index.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/html/index.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- index.html 2001/10/08 01:59:15 1.6
+++ index.html 2001/10/08 04:53:46 1.7
@@ -104,6 +104,26 @@
></DD
></DL
></DIV
+><DIV
+CLASS="LOT"
+><DL
+CLASS="LOT"
+><DT
+><B
+>List of Examples</B
+></DT
+><DT
+>3-1. <A
+HREF="devguide.html#AEN235"
+>Using the database class</A
+></DT
+><DT
+>3-2. <A
+HREF="devguide.html#AEN241"
+>Using the template class</A
+></DT
+></DL
+></DIV
></DIV
><DIV
CLASS="NAVFOOTER"
Index: userguide.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/html/userguide.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- userguide.html 2001/10/08 01:59:15 1.5
+++ userguide.html 2001/10/08 04:53:46 1.6
@@ -132,7 +132,7 @@
><P
><IMG
SRC="images/shots/user/enterbug-chooseproject.png"
-ALIGN="CENTER"><DIV
+ALIGN="MIDDLE"><DIV
CLASS="CAPTION"
><P
>Selecting a project for a bug report.</P
|
|
From: Benjamin C. <bc...@us...> - 2001-10-08 04:53:49
|
Update of /cvsroot/phpbt/phpbt/docs/sgml
In directory usw-pr-cvs1:/tmp/cvs-serv29139/sgml
Modified Files:
dependencies.sgml primer.sgml
Log Message:
Tweak, tweak, tweak
Index: dependencies.sgml
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/sgml/dependencies.sgml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- dependencies.sgml 2001/10/08 03:59:51 1.4
+++ dependencies.sgml 2001/10/08 04:53:46 1.5
@@ -14,6 +14,8 @@
<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>
<para>The global variable <varname>$q</varname> is available as an instance of the class <classname>dbclass</classname>. This class adds two functions to the <classname>DB_Sql</classname> class, <function>grab()</function> and <function>grab_field()</function>. If they are called with an argument, the argument is passed as a query to the database and the results are returned from that query. If no argument is passed, they return results from the previous call to <function>query()</function>. Here are some examples:</para>
+ <example>
+ <title>Using the database class</title>
<programlisting>
// Grab one field from one record in the database
$user_email = $q->grab_field("select email from ".TBL_AUTH_USER." where user_id = 1");
@@ -29,10 +31,13 @@
echo $row['email'].'<br>';
}
</programlisting>
+ </example>
</sect3>
<sect3>
<title>Templates</title>
<para>Instead of outputting HTML from the scripts, templates are used to separate the code from the HTML. The templates contain tokens that are replaced by the scripts with values. The general process for using templates is as follows:</para>
+ <example>
+ <title>Using the template class</title>
<programlisting>
// Set up the file to be used
$t->set_file('content', 'bugdisplay.html');
@@ -47,6 +52,7 @@
// Parse the template and print it out (inside a wrap template)
$t->pparse('main', array('content', 'wrap', 'main'));
</programlisting>
+ </example>
</sect3>
<sect3>
<title>Session and Authentication</title>
Index: primer.sgml
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/sgml/primer.sgml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- primer.sgml 2001/10/08 01:59:15 1.3
+++ primer.sgml 2001/10/08 04:53:46 1.4
@@ -18,7 +18,7 @@
<screeninfo>Project selection</screeninfo>
<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="middle">
</imageobject>
<imageobject>
<imagedata fileref="images/shots/user/enterbug-chooseproject.jpg" format="JPG" align="center">
@@ -56,6 +56,7 @@
<para>Entering a bug report.</para>
</caption>
</mediaobject>
+ </screenshot>
<para>That's it! The bug has been entered, and it's ready to be reviewed and fixed by the developers.</para>
</sect2>
|
|
From: Benjamin C. <bc...@us...> - 2001-10-08 03:59:55
|
Update of /cvsroot/phpbt/phpbt/docs/sgml
In directory usw-pr-cvs1:/tmp/cvs-serv21038
Modified Files:
dependencies.sgml
Log Message:
Trying to finish off the phplib instructions
Index: dependencies.sgml
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/sgml/dependencies.sgml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- dependencies.sgml 2001/10/08 03:50:41 1.3
+++ dependencies.sgml 2001/10/08 03:59:51 1.4
@@ -48,7 +48,20 @@
$t->pparse('main', array('content', 'wrap', 'main'));
</programlisting>
</sect3>
-
+ <sect3>
+ <title>Session and Authentication</title>
+ <para>The session start and authentication code is included in <filename>include.php</filename>. The session is started by a call to <function>page_open()</function>, with the arguments specifying which session elements should be created. &phpbt; uses the <classname>Auth</classname> and <classname>Perm</classname> classes from PHPlib in addition to the base <classname>Session</classname> class. </para>
+ <sect4>
+ <title>Session</title>
+ <para>Session variables, or variables that should be retained from page to page, are set via the <varname>$sess</varname> variable, which is an instantiation of the <classname>usess</classname> class. </para>
+ </sect4>
+ <sect4>
+ <title>Auth</title>
+ </sect4>
+ <sect4>
+ <title>Perm</title>
+ </sect4>
+ </sect3>
</sect2>
</sect1>
|
|
From: Benjamin C. <bc...@us...> - 2001-10-08 03:50:45
|
Update of /cvsroot/phpbt/phpbt/docs/sgml
In directory usw-pr-cvs1:/tmp/cvs-serv19355
Modified Files:
dependencies.sgml
Log Message:
Match those parens
Index: dependencies.sgml
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/sgml/dependencies.sgml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- dependencies.sgml 2001/10/01 01:12:38 1.2
+++ dependencies.sgml 2001/10/08 03:50:41 1.3
@@ -45,7 +45,7 @@
));
// Parse the template and print it out (inside a wrap template)
- $t->pparse('main', array('content', 'wrap', 'main');
+ $t->pparse('main', array('content', 'wrap', 'main'));
</programlisting>
</sect3>
|
|
From: Benjamin C. <bc...@us...> - 2001-10-08 03:24:07
|
Update of /cvsroot/phpbt/phpbt/docs/html In directory usw-pr-cvs1:/tmp/cvs-serv15607 Modified Files: docs.css Log Message: NS 4 doesn't fill the background color, so it looks stupid Index: docs.css =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/docs.css,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- docs.css 2001/10/03 03:30:17 1.3 +++ docs.css 2001/10/08 03:24:04 1.4 @@ -11,7 +11,7 @@ font-size: 20pt; font-family: "Tahoma", "Lucida", "Helvetica", "Arial", "Sans-Serif"; text-align: right; - background-color: #FFDDBB; + //background-color: #FFDDBB; padding: .1em; } |
|
From: Benjamin C. <bc...@us...> - 2001-10-08 01:59:18
|
Update of /cvsroot/phpbt/phpbt/docs/sgml
In directory usw-pr-cvs1:/tmp/cvs-serv648/sgml
Modified Files:
primer.sgml
Log Message:
Learn DocBook in 1,267 easy steps! Added screenshot elements around the screen shots
Index: primer.sgml
===================================================================
RCS file: /cvsroot/phpbt/phpbt/docs/sgml/primer.sgml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- primer.sgml 2001/10/03 13:38:06 1.2
+++ primer.sgml 2001/10/08 01:59:15 1.3
@@ -13,7 +13,9 @@
<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>
-
+
+ <screenshot>
+ <screeninfo>Project selection</screeninfo>
<mediaobject>
<imageobject>
<imagedata fileref="images/shots/user/enterbug-chooseproject.png" format="PNG" align="center">
@@ -27,10 +29,16 @@
<textobject>
<phrase>Screen shot of selecting a project for a bug report.</phrase>
</textobject>
+ <caption>
+ <para>Selecting a project for a bug report.</para>
+ </caption>
</mediaobject>
+ </screenshot>
<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>
+ <screenshot>
+ <screeninfo>Adding a bug</screeninfo>
<mediaobject>
<imageobject>
<imagedata fileref="images/shots/user/enterbug-detail.png" format="PNG" align="center">
@@ -44,6 +52,9 @@
<textobject>
<phrase>Screen shot of entering a bug report.</phrase>
</textobject>
+ <caption>
+ <para>Entering a bug report.</para>
+ </caption>
</mediaobject>
<para>That's it! The bug has been entered, and it's ready to be reviewed and fixed by the developers.</para>
|
|
From: Benjamin C. <bc...@us...> - 2001-10-08 01:59:18
|
Update of /cvsroot/phpbt/phpbt/docs/html In directory usw-pr-cvs1:/tmp/cvs-serv648/html Modified Files: adminguide.html configuration.html devguide.html devstandards.html index.html userguide.html Log Message: Learn DocBook in 1,267 easy steps! Added screenshot elements around the screen shots Index: adminguide.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/adminguide.html,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- adminguide.html 2001/10/03 13:38:06 1.5 +++ adminguide.html 2001/10/08 01:59:15 1.6 @@ -4,7 +4,7 @@ >Administrator's Guide</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.72 +CONTENT="Modular DocBook HTML Stylesheet Version 1.73 "><LINK REL="HOME" TITLE="phpBugTracker" @@ -99,7 +99,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN48" +NAME="AEN56" ></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 @@ -173,6 +173,7 @@ >. </P ><P ><SPAN +CLASS="emphasis" ><I CLASS="EMPHASIS" >-- or --</I Index: configuration.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/configuration.html,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- configuration.html 2001/10/03 13:38:06 1.4 +++ configuration.html 2001/10/08 01:59:15 1.5 @@ -4,7 +4,7 @@ >Configuration Options</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.72 +CONTENT="Modular DocBook HTML Stylesheet Version 1.73 "><LINK REL="HOME" TITLE="phpBugTracker" @@ -84,7 +84,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN100" +NAME="AEN108" ></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.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- devguide.html 2001/10/03 13:38:06 1.6 +++ devguide.html 2001/10/08 01:59:15 1.7 @@ -4,7 +4,7 @@ >Developer's Guide</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.72 +CONTENT="Modular DocBook HTML Stylesheet Version 1.73 "><LINK REL="HOME" TITLE="phpBugTracker" @@ -113,7 +113,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN205" +NAME="AEN213" ></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="AEN210" +NAME="AEN218" ></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="AEN216" +NAME="AEN224" >3.1.1.1. Database Abstraction</A ></H3 ><P @@ -220,7 +220,7 @@ ><H3 CLASS="SECT3" ><A -NAME="AEN228" +NAME="AEN236" >3.1.1.2. Templates</A ></H3 ><P Index: devstandards.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/devstandards.html,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- devstandards.html 2001/10/03 13:38:06 1.7 +++ devstandards.html 2001/10/08 01:59:15 1.8 @@ -4,7 +4,7 @@ >Development Standards</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.72 +CONTENT="Modular DocBook HTML Stylesheet Version 1.73 "><LINK REL="HOME" TITLE="phpBugTracker" @@ -77,7 +77,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN234" +NAME="AEN242" ></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.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- index.html 2001/10/03 04:03:55 1.5 +++ index.html 2001/10/08 01:59:15 1.6 @@ -4,7 +4,7 @@ >phpBugTracker</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.72 +CONTENT="Modular DocBook HTML Stylesheet Version 1.73 "><LINK REL="NEXT" TITLE="User's Guide" Index: userguide.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/userguide.html,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- userguide.html 2001/10/03 13:38:06 1.4 +++ userguide.html 2001/10/08 01:59:15 1.5 @@ -4,7 +4,7 @@ >User's Guide</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.72 +CONTENT="Modular DocBook HTML Stylesheet Version 1.73 "><LINK REL="HOME" TITLE="phpBugTracker" @@ -132,8 +132,11 @@ ><P ><IMG SRC="images/shots/user/enterbug-chooseproject.png" -ALT="Screen shot of selecting a project for a bug report." -></IMG +ALIGN="CENTER"><DIV +CLASS="CAPTION" +><P +>Selecting a project for a bug report.</P +></DIV ></P ></DIV ><P @@ -179,8 +182,11 @@ ><P ><IMG SRC="images/shots/user/enterbug-detail.png" -ALT="Screen shot of entering a bug report." -></IMG +ALIGN="CENTER"><DIV +CLASS="CAPTION" +><P +>Entering a bug report.</P +></DIV ></P ></DIV ><P |
|
From: Benjamin C. <bc...@us...> - 2001-10-07 23:42:14
|
Update of /cvsroot/phpbt/phpbt/schemas In directory usw-pr-cvs1:/tmp/cvs-serv11641/schemas Modified Files: mysql.in pgsql.in Log Message: Mac OS X, not Mac TBL_OS X Index: mysql.in =================================================================== RCS file: /cvsroot/phpbt/phpbt/schemas/mysql.in,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- mysql.in 2001/10/02 23:26:22 1.3 +++ mysql.in 2001/10/07 23:42:11 1.4 @@ -275,7 +275,7 @@ INSERT INTO TBL_OS VALUES (12,'Mac System 8.5',12,'/Mozilla.*\\(.*;.*; 68K.*\\)/'); INSERT INTO TBL_OS VALUES (13,'Mac System 8.6',13,'/Mozilla.*\\(.*;.*; PPC.*\\)/'); INSERT INTO TBL_OS VALUES (14,'Mac System 9.0',14,''); -INSERT INTO TBL_OS VALUES (15,'Mac TBL_OS X',15,''); +INSERT INTO TBL_OS VALUES (15,'Mac OS X',15,''); INSERT INTO TBL_OS VALUES (16,'Linux',16,'/Mozilla.*\\(.*;.*; Linux.*\\)/'); INSERT INTO TBL_OS VALUES (17,'BSDI',17,'/Mozilla.*\\(.*;.*; BSD\\/OS.*\\)/'); INSERT INTO TBL_OS VALUES (18,'FreeBSD',18,'/Mozilla.*\\(.*;.*; FreeBSD.*\\)/'); Index: pgsql.in =================================================================== RCS file: /cvsroot/phpbt/phpbt/schemas/pgsql.in,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- pgsql.in 2001/10/02 23:26:22 1.3 +++ pgsql.in 2001/10/07 23:42:11 1.4 @@ -281,7 +281,7 @@ INSERT INTO TBL_OS VALUES (12,'Mac System 8.5',12,'/Mozilla.*\\(.*;.*; 68K.*\\)/'); INSERT INTO TBL_OS VALUES (13,'Mac System 8.6',13,'/Mozilla.*\\(.*;.*; PPC.*\\)/'); INSERT INTO TBL_OS VALUES (14,'Mac System 9.0',14,''); -INSERT INTO TBL_OS VALUES (15,'Mac TBL_OS X',15,''); +INSERT INTO TBL_OS VALUES (15,'Mac OS X',15,''); INSERT INTO TBL_OS VALUES (16,'Linux',16,'/Mozilla.*\\(.*;.*; Linux.*\\)/'); INSERT INTO TBL_OS VALUES (17,'BSDI',17,'/Mozilla.*\\(.*;.*; BSD\\/OS.*\\)/'); INSERT INTO TBL_OS VALUES (18,'FreeBSD',18,'/Mozilla.*\\(.*;.*; FreeBSD.*\\)/'); |
|
From: Benjamin C. <bc...@us...> - 2001-10-06 03:56:36
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv5878
Modified Files:
query.php
Log Message:
Sure enough, caused a bug with the last css (not cvs) changes
Index: query.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/query.php,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- query.php 2001/10/06 03:53:33 1.30
+++ query.php 2001/10/06 03:56:33 1.31
@@ -292,7 +292,7 @@
));
$t->parse('cols', 'col', true);
}
- $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->set_var('tr-extra', "class='$trclass' bgcolor='$bgcolor' 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:53:36
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv4854/templates/default
Modified Files:
buglist.html
Log Message:
That should wrap up the cvs -- of course, I'm sure I missed something or introduced a bug :)
Index: buglist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/buglist.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- buglist.html 2001/08/20 22:30:39 1.4
+++ buglist.html 2001/10/06 03:53:33 1.5
@@ -1,7 +1,3 @@
-<style>
-.header-col { font-weight: bold; text-align: center; }
-.center-col { text-align: center; }
-</style>
<h2>Bug List</h2>
<table cellpadding="2">
<!-- BEGIN row -->
|
|
From: Benjamin C. <bc...@us...> - 2001-10-06 03:53:36
|
Update of /cvsroot/phpbt/phpbt/admin/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv4854/admin/templates/default
Modified Files:
severitylist.html
Log Message:
That should wrap up the cvs -- of course, I'm sure I missed something or introduced a bug :)
Index: severitylist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/severitylist.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- severitylist.html 2001/10/06 03:35:37 1.2
+++ severitylist.html 2001/10/06 03:53:33 1.3
@@ -11,7 +11,7 @@
<th><a href="{sortorderurl}">Sort Order</a></th>
</tr>
<!-- BEGIN row -->
- <tr trclass="{trclass}" bgcolor="{bgcolor}">
+ <tr class="{trclass}" bgcolor="{bgcolor}">
<td><a href="{me}?op=edit&id={severityid}">{name}</a></td>
<td> {description}</td>
<td align="center">{sortorder}</td>
|
|
From: Benjamin C. <bc...@us...> - 2001-10-06 03:53:36
|
Update of /cvsroot/phpbt/phpbt/admin
In directory usw-pr-cvs1:/tmp/cvs-serv4854/admin
Modified Files:
severity.php
Log Message:
That should wrap up the cvs -- of course, I'm sure I missed something or introduced a bug :)
Index: severity.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/severity.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- severity.php 2001/10/06 03:35:37 1.10
+++ severity.php 2001/10/06 03:53:33 1.11
@@ -107,9 +107,8 @@
while ($row = $q->grab()) {
$t->set_var(array(
'bgcolor' => USE_SEVERITY_COLOR ? $row['severity_color'] :
- ((++$i % 2 == 0) ? '#dddddd' : '#ffffff'),
- 'trclass' => USE_SEVERITY_COLOR ? '' :
- $i % 2 ? '' : 'alt',
+ ((++$i % 2 == 0) ? '#dddddd' : ''),
+ 'trclass' => USE_SEVERITY_COLOR ? '' : ($i % 2 ? '' : 'alt'),
'severityid' => $row['severity_id'],
'name' => $row['severity_name'],
'description' => $row['severity_desc'],
|