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: Florian K. <Flo...@in...> - 2002-09-03 17:18:53
|
Hi, I'm trying to fix the Oracle-SQL-Statements in inc/db/oci8.php I guess, the opposing statements are 'include-template-owner' and 'include-template-reporter' (I can't even log on). First of all, I think there is a comma too much after the second 'sum'. If I fix that, it gives me the following: DB Error: no such field SELECT sum(decode( s.status_id, BUG_UNCONFIRMED, 1, BUG_PROMOTED, 1, BUG_ASSIGNED, 1, BUG_REOPENED, 1, 0 )), sum(decode( s.status_id, BUG_UNCONFIRMED, 0, BUG_PROMOTED, 0, BUG_ASSIGNED, 0, BUG_REOPENED, 0, = 1 )) from phpbt_bug b, phpbt_status s where b.status_id =3D s.status_id (+) = and b.assigned_to =3D 1 [nativecode=3DORA-00904: invalid column name ] If I pretty print that in SQL*Plus Worksheet, I get: SELECT sum(decode(s.status_id, BUG_UNCONFIRMED, 1, BUG_PROMOTED, 1, BUG_ASSIGNED, 1, BUG_REOPENED, 1, 0 )), sum(decode(s.status_id, BUG_UNCONFIRMED, 0, BUG_PROMOTED, 0, BUG_ASSIGNED, 0, BUG_REOPENED, 0, 1 )) from phpbt_bug b, phpbt_status s where b.status_id =3D s.status_id (+) = and b.assigned_to =3D 1; Where the error is: BUG_REOPENED, 0, * FEHLER in Zeile 12: ORA-00904: Ung=FCltiger Spaltenname (invalid column name) Any hints on how to fix it? Thanks, Florian |
|
From: Ben C. <php...@be...> - 2002-09-03 16:52:03
|
I suppose we could do this. Any objections? On Tue, Sep 03, 2002 at 05:39:06PM +0200, Florian Kolbe wrote: > (resending with correct topic - sorry) > > I recommend removing config.php from cvs, introducing a .cvsignore and > adding config.php to it. > > This way everyone can have his own config.php (if you want to > develop this file, > you can edit config-dist.php). And you don't have to worry > about comittingyour personal config.php (because of .cvsignore entry). > > What do you think of this? > > Florian > > > ------------------------------------------------------- > This sf.net email is sponsored by: OSDN - Tired of that same old > cell phone? Get a new here for FREE! > https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 > _______________________________________________ > phpbt-dev mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpbt-dev |
|
From: Florian K. <Flo...@in...> - 2002-09-03 15:38:46
|
(resending with correct topic - sorry) I recommend removing config.php from cvs, introducing a .cvsignore and adding config.php to it. This way everyone can have his own config.php (if you want to develop this file, you can edit config-dist.php). And you don't have to worry about comittingyour personal config.php (because of .cvsignore entry). What do you think of this? Florian |
|
From: Florian K. <Flo...@in...> - 2002-09-03 15:36:22
|
I recommend removing config.php from cvs, introducing a .cvsignore and
adding config.php
to it.
This way everyone can have his own config.php (if you want to develop this
file,
you can edit config-dist.php). And you don't have to worry about comitting
your personal config.php (because of .cvsignore entry).
What do you think of this?
Florian
> -----Original Message-----
> From: Benjamin Curtis [mailto:bc...@us...]
> Sent: Tuesday, August 27, 2002 2:15 AM
> To: php...@li...
> Subject: [phpBT-dev] CVS: phpbt query.php,1.84,1.85
>
>
> Update of /cvsroot/phpbt/phpbt
> In directory usw-pr-cvs1:/tmp/cvs-serv13875
>
> Modified Files:
> query.php
> Log Message:
> Formatting cleanup
>
> Index: query.php
> ===================================================================
> RCS file: /cvsroot/phpbt/phpbt/query.php,v
> retrieving revision 1.84
> retrieving revision 1.85
> diff -u -r1.84 -r1.85
> --- query.php 26 Aug 2002 14:32:15 -0000 1.84
> +++ query.php 27 Aug 2002 00:14:32 -0000 1.85
> @@ -149,33 +149,33 @@
> $pos--;
>
> switch ($coltype) {
> - case 'url' :
> - echo "<a href=\"$colvalue\" target=\"_new\">$colvalue</a>";
> - break;
> - case 'created_date' :
> - case 'last_modified_date' :
> - case 'close_date' :
> - echo '<div align="center">'.
> - $colvalue ? date(DATE_FORMAT,
> $colvalue) : ' '.
> - '</div>';
> - break;
> - case 'bug_id' :
> - case 'title' :
> - echo "<a
> href=\"bug.php?op=show&bugid=$bugid&pos=$pos\">$colvalue</a>";
> - break;
> - case 'reporter' :
> - case 'owner' :
> - case 'lastmodifier' :
> - echo '<div align="center">'.
> - (!empty($colvalue) ?
> maskemail($colvalue) : '').'</div>';
> - break;
> - case 'priority' :
> - echo '<div
> align="center">'.$select['priority'][$colvalue].'</div>';
> - break;
> - default :
> - echo '<div align="center">'.
> - (!empty($colvalue) ? $colvalue : '').'</div>';
> - break;
> + case 'url' :
> + echo "<a href=\"$colvalue\"
> target=\"_new\">$colvalue</a>";
> + break;
> + case 'created_date' :
> + case 'last_modified_date' :
> + case 'close_date' :
> + echo '<div align="center">'.
> + $colvalue ? date(DATE_FORMAT,
> $colvalue) : ' '.
> + '</div>';
> + break;
> + case 'bug_id' :
> + case 'title' :
> + echo "<a
> href=\"bug.php?op=show&bugid=$bugid&pos=$pos\">$colvalue</a>";
> + break;
> + case 'reporter' :
> + case 'owner' :
> + case 'lastmodifier' :
> + echo '<div align="center">'.
> + (!empty($colvalue) ?
> maskemail($colvalue) : '').'</div>';
> + break;
> + case 'priority' :
> + echo '<div
> align="center">'.$select['priority'][$colvalue].'</div>';
> + break;
> + default :
> + echo '<div align="center">'.
> + (!empty($colvalue) ? $colvalue
> : '').'</div>';
> + break;
> }
> }
>
> @@ -187,57 +187,57 @@
> $QUERY;
>
> $query_db_fields = array(
> - 'bug_id' => 'bug_id',
> - 'title' => 'title',
> - 'description' => 'description',
> - 'url' => 'url',
> - 'severity_name' => 'severity.severity_name',
> - 'priority' => 'priority',
> - 'status_name' => 'status.status_name',
> - 'resolution_name' => 'resolution_name',
> - 'reporter' => 'reporter.login as reporter',
> - 'owner' => 'owner.login as owner',
> - 'created_date' => 'b.created_date',
> - 'lastmodifier' => 'lastmodifier.login as lastmodifier',
> - 'last_modified_date' => 'b.last_modified_date',
> - 'project_name' => 'project.project_name',
> - 'version_name' => 'version.version_name',
> - 'to_be_closed_in_version_name' =>
> 'version2.version_name as v2',
> - 'closed_in_version_name' => 'version3.version_name as v3',
> - 'database_provider' => TBL_DATABASE.'.database_name',
> - 'database_version' => TBL_DATABASE.'.database_version',
> - 'site_name' => 'site.site_name',
> - 'component_name' => 'component.component_name',
> - 'os_name' => 'os.os_name',
> - 'browser_string' => 'browser_string',
> - 'close_date' => 'close_date'
> - );
> + 'bug_id' => 'bug_id',
> + 'title' => 'title',
> + 'description' => 'description',
> + 'url' => 'url',
> + 'severity_name' => 'severity.severity_name',
> + 'priority' => 'priority',
> + 'status_name' => 'status.status_name',
> + 'resolution_name' => 'resolution_name',
> + 'reporter' => 'reporter.login as reporter',
> + 'owner' => 'owner.login as owner',
> + 'created_date' => 'b.created_date',
> + 'lastmodifier' => 'lastmodifier.login as lastmodifier',
> + 'last_modified_date' => 'b.last_modified_date',
> + 'project_name' => 'project.project_name',
> + 'version_name' => 'version.version_name',
> + 'to_be_closed_in_version_name' =>
> 'version2.version_name as v2',
> + 'closed_in_version_name' =>
> 'version3.version_name as v3',
> + 'database_provider' => TBL_DATABASE.'.database_name',
> + 'database_version' => TBL_DATABASE.'.database_version',
> + 'site_name' => 'site.site_name',
> + 'component_name' => 'component.component_name',
> + 'os_name' => 'os.os_name',
> + 'browser_string' => 'browser_string',
> + 'close_date' => 'close_date'
> + );
>
> $db_headers = array(
> - 'bug_id' => 'bug_id',
> - 'title' => 'title',
> - 'description' => 'description',
> - 'url' => 'url',
> - 'severity_name' => 'severity.sort_order',
> - 'priority' => 'b.priority',
> - 'status_name' => 'status.sort_order',
> - 'owner' => 'owner',
> - 'reporter' => 'reporter.login',
> - 'lastmodifier' => 'last_modifier',
> - 'created_date' => 'b.created_date',
> - 'last_modified_date' => 'b.last_modified_date',
> - 'project_name' => 'project_name',
> - 'component_name' => 'component_name',
> - 'version_name' => 'version_name',
> - 'os_name' => 'os_name',
> - 'to_be_closed_in_version_name' => 'v2',
> - 'closed_in_version_name' => 'v3',
> - 'database_provider' => TBL_DATABASE.'.database_name',
> - 'database_version' => TBL_DATABASE.'.database_version',
> - 'site_name' => 'site.sort_order',
> - 'browser_string' => 'browser_string',
> - 'resolution_name' => 'resolution.sort_order',
> - 'close_date' => 'close_date'
> + 'bug_id' => 'bug_id',
> + 'title' => 'title',
> + 'description' => 'description',
> + 'url' => 'url',
> + 'severity_name' => 'severity.sort_order',
> + 'priority' => 'b.priority',
> + 'status_name' => 'status.sort_order',
> + 'owner' => 'owner',
> + 'reporter' => 'reporter.login',
> + 'lastmodifier' => 'last_modifier',
> + 'created_date' => 'b.created_date',
> + 'last_modified_date' => 'b.last_modified_date',
> + 'project_name' => 'project_name',
> + 'component_name' => 'component_name',
> + 'version_name' => 'version_name',
> + 'os_name' => 'os_name',
> + 'to_be_closed_in_version_name' => 'v2',
> + 'closed_in_version_name' => 'v3',
> + 'database_provider' => TBL_DATABASE.'.database_name',
> + 'database_version' => TBL_DATABASE.'.database_version',
> + 'site_name' => 'site.sort_order',
> + 'browser_string' => 'browser_string',
> + 'resolution_name' => 'resolution.sort_order',
> + 'close_date' => 'close_date'
> );
>
> extract($_gv);
>
>
>
> -------------------------------------------------------
> This sf.net email is sponsored by: OSDN - Tired of that same old
> cell phone? Get a new here for FREE!
> https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
> _______________________________________________
> phpbt-dev mailing list
> php...@li...
> https://lists.sourceforge.net/lists/listinfo/phpbt-dev
>
|
|
From: Benjamin C. <bc...@us...> - 2002-08-27 00:14:35
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv13875
Modified Files:
query.php
Log Message:
Formatting cleanup
Index: query.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/query.php,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- query.php 26 Aug 2002 14:32:15 -0000 1.84
+++ query.php 27 Aug 2002 00:14:32 -0000 1.85
@@ -149,33 +149,33 @@
$pos--;
switch ($coltype) {
- case 'url' :
- echo "<a href=\"$colvalue\" target=\"_new\">$colvalue</a>";
- break;
- case 'created_date' :
- case 'last_modified_date' :
- case 'close_date' :
- echo '<div align="center">'.
- $colvalue ? date(DATE_FORMAT, $colvalue) : ' '.
- '</div>';
- break;
- case 'bug_id' :
- case 'title' :
- echo "<a href=\"bug.php?op=show&bugid=$bugid&pos=$pos\">$colvalue</a>";
- break;
- case 'reporter' :
- case 'owner' :
- case 'lastmodifier' :
- echo '<div align="center">'.
- (!empty($colvalue) ? maskemail($colvalue) : '').'</div>';
- break;
- case 'priority' :
- echo '<div align="center">'.$select['priority'][$colvalue].'</div>';
- break;
- default :
- echo '<div align="center">'.
- (!empty($colvalue) ? $colvalue : '').'</div>';
- break;
+ case 'url' :
+ echo "<a href=\"$colvalue\" target=\"_new\">$colvalue</a>";
+ break;
+ case 'created_date' :
+ case 'last_modified_date' :
+ case 'close_date' :
+ echo '<div align="center">'.
+ $colvalue ? date(DATE_FORMAT, $colvalue) : ' '.
+ '</div>';
+ break;
+ case 'bug_id' :
+ case 'title' :
+ echo "<a href=\"bug.php?op=show&bugid=$bugid&pos=$pos\">$colvalue</a>";
+ break;
+ case 'reporter' :
+ case 'owner' :
+ case 'lastmodifier' :
+ echo '<div align="center">'.
+ (!empty($colvalue) ? maskemail($colvalue) : '').'</div>';
+ break;
+ case 'priority' :
+ echo '<div align="center">'.$select['priority'][$colvalue].'</div>';
+ break;
+ default :
+ echo '<div align="center">'.
+ (!empty($colvalue) ? $colvalue : '').'</div>';
+ break;
}
}
@@ -187,57 +187,57 @@
$QUERY;
$query_db_fields = array(
- 'bug_id' => 'bug_id',
- 'title' => 'title',
- 'description' => 'description',
- 'url' => 'url',
- 'severity_name' => 'severity.severity_name',
- 'priority' => 'priority',
- 'status_name' => 'status.status_name',
- 'resolution_name' => 'resolution_name',
- 'reporter' => 'reporter.login as reporter',
- 'owner' => 'owner.login as owner',
- 'created_date' => 'b.created_date',
- 'lastmodifier' => 'lastmodifier.login as lastmodifier',
- 'last_modified_date' => 'b.last_modified_date',
- 'project_name' => 'project.project_name',
- 'version_name' => 'version.version_name',
- 'to_be_closed_in_version_name' => 'version2.version_name as v2',
- 'closed_in_version_name' => 'version3.version_name as v3',
- 'database_provider' => TBL_DATABASE.'.database_name',
- 'database_version' => TBL_DATABASE.'.database_version',
- 'site_name' => 'site.site_name',
- 'component_name' => 'component.component_name',
- 'os_name' => 'os.os_name',
- 'browser_string' => 'browser_string',
- 'close_date' => 'close_date'
- );
+ 'bug_id' => 'bug_id',
+ 'title' => 'title',
+ 'description' => 'description',
+ 'url' => 'url',
+ 'severity_name' => 'severity.severity_name',
+ 'priority' => 'priority',
+ 'status_name' => 'status.status_name',
+ 'resolution_name' => 'resolution_name',
+ 'reporter' => 'reporter.login as reporter',
+ 'owner' => 'owner.login as owner',
+ 'created_date' => 'b.created_date',
+ 'lastmodifier' => 'lastmodifier.login as lastmodifier',
+ 'last_modified_date' => 'b.last_modified_date',
+ 'project_name' => 'project.project_name',
+ 'version_name' => 'version.version_name',
+ 'to_be_closed_in_version_name' => 'version2.version_name as v2',
+ 'closed_in_version_name' => 'version3.version_name as v3',
+ 'database_provider' => TBL_DATABASE.'.database_name',
+ 'database_version' => TBL_DATABASE.'.database_version',
+ 'site_name' => 'site.site_name',
+ 'component_name' => 'component.component_name',
+ 'os_name' => 'os.os_name',
+ 'browser_string' => 'browser_string',
+ 'close_date' => 'close_date'
+ );
$db_headers = array(
- 'bug_id' => 'bug_id',
- 'title' => 'title',
- 'description' => 'description',
- 'url' => 'url',
- 'severity_name' => 'severity.sort_order',
- 'priority' => 'b.priority',
- 'status_name' => 'status.sort_order',
- 'owner' => 'owner',
- 'reporter' => 'reporter.login',
- 'lastmodifier' => 'last_modifier',
- 'created_date' => 'b.created_date',
- 'last_modified_date' => 'b.last_modified_date',
- 'project_name' => 'project_name',
- 'component_name' => 'component_name',
- 'version_name' => 'version_name',
- 'os_name' => 'os_name',
- 'to_be_closed_in_version_name' => 'v2',
- 'closed_in_version_name' => 'v3',
- 'database_provider' => TBL_DATABASE.'.database_name',
- 'database_version' => TBL_DATABASE.'.database_version',
- 'site_name' => 'site.sort_order',
- 'browser_string' => 'browser_string',
- 'resolution_name' => 'resolution.sort_order',
- 'close_date' => 'close_date'
+ 'bug_id' => 'bug_id',
+ 'title' => 'title',
+ 'description' => 'description',
+ 'url' => 'url',
+ 'severity_name' => 'severity.sort_order',
+ 'priority' => 'b.priority',
+ 'status_name' => 'status.sort_order',
+ 'owner' => 'owner',
+ 'reporter' => 'reporter.login',
+ 'lastmodifier' => 'last_modifier',
+ 'created_date' => 'b.created_date',
+ 'last_modified_date' => 'b.last_modified_date',
+ 'project_name' => 'project_name',
+ 'component_name' => 'component_name',
+ 'version_name' => 'version_name',
+ 'os_name' => 'os_name',
+ 'to_be_closed_in_version_name' => 'v2',
+ 'closed_in_version_name' => 'v3',
+ 'database_provider' => TBL_DATABASE.'.database_name',
+ 'database_version' => TBL_DATABASE.'.database_version',
+ 'site_name' => 'site.sort_order',
+ 'browser_string' => 'browser_string',
+ 'resolution_name' => 'resolution.sort_order',
+ 'close_date' => 'close_date'
);
extract($_gv);
|
|
From: Benjamin C. <bc...@us...> - 2002-08-26 18:15:50
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv27803/templates/default/admin
Modified Files:
wrap.html
Log Message:
Fixed a problem with pointing to bug.php in the current dir
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/wrap.html,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- wrap.html 24 Aug 2002 19:28:12 -0000 1.16
+++ wrap.html 26 Aug 2002 18:15:46 -0000 1.17
@@ -10,7 +10,7 @@
<tr>
<td class="nav" valign="middle"><img name="title" src="{$template_path}/../images/title.gif" width="500" height="50" border="0" alt="" hspace="0" vspace="0"></td>
<td align="right" valign="middle" class="nav">
- <form action="bug.php">
+ <form action="../bug.php">
<input type="hidden" name="op" value="show">
{$STRING.WRAP.FindBug}
<input name="bugid" type="text" id="bugid" size="4">
|
|
From: Benjamin C. <bc...@us...> - 2002-08-26 18:11:15
|
Update of /cvsroot/phpbt/phpbt/admin
In directory usw-pr-cvs1:/tmp/cvs-serv26082/admin
Modified Files:
database.php os.php severity.php site.php status.php
Log Message:
Specifying no value for a sort order should default to a sort order of 0
Index: database.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/database.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- database.php 21 May 2002 08:57:15 -0000 1.1
+++ database.php 26 Aug 2002 18:11:12 -0000 1.2
@@ -55,6 +55,7 @@
$error = $STRING['giveversion'];
if ($error) { show_form($databaseid, $error); return; }
+ if (empty($sort_order)) $sort_order = 0;
if (!$databaseid) {
$db->query("insert into ".TBL_DATABASE.
" (database_id, database_name, database_version, sort_order)
Index: os.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/os.php,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- os.php 18 May 2002 03:00:00 -0000 1.27
+++ os.php 26 Aug 2002 18:11:13 -0000 1.28
@@ -53,6 +53,7 @@
$error = $STRING['givename'];
if ($error) { show_form($osid, $error); return; }
+ if (empty($sort_order)) $sort_order = 0;
if (!$osid) {
$db->query("insert into ".TBL_OS." (os_id, os_name, regex, sort_order) ".
"values (".$db->nextId(TBL_OS).", ".$db->quote(stripslashes($os_name)).
Index: severity.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/severity.php,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- severity.php 18 May 2002 03:00:00 -0000 1.24
+++ severity.php 26 Aug 2002 18:11:13 -0000 1.25
@@ -55,6 +55,7 @@
$error = $STRING['givedesc'];
if ($error) { show_form($severityid, $error); return; }
+ if (empty($sort_order)) $sort_order = 0;
if (!$severityid) {
$db->query("insert into ".TBL_SEVERITY.
" (severity_id, severity_name, severity_desc, sort_order, severity_color)
Index: site.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/site.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- site.php 13 Jun 2002 14:26:34 -0000 1.1
+++ site.php 26 Aug 2002 18:11:13 -0000 1.2
@@ -53,6 +53,7 @@
$error = $STRING['givename'];
if ($error) { show_form($siteid, $error); return; }
+ if (empty($sort_order)) $sort_order = 0;
if (!$siteid) {
$db->query('insert into '.TBL_SITE.' (site_id, site_name, sort_order) '.
'values ('.$db->nextId(TBL_SITE).', '.$db->quote(stripslashes($site_name)).
Index: status.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/status.php,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- status.php 18 May 2002 03:00:00 -0000 1.28
+++ status.php 26 Aug 2002 18:11:13 -0000 1.29
@@ -55,6 +55,7 @@
$error = $STRING['givedesc'];
if ($error) { show_form($statusid, $error); return; }
+ if (empty($sort_order)) $sort_order = 0;
if (!$statusid) {
$db->query("insert into ".TBL_STATUS.
" (status_id, status_name, status_desc, sort_order) values (".
|
|
From: Benjamin C. <bc...@us...> - 2002-08-26 18:06:04
|
Update of /cvsroot/phpbt/phpbt/admin
In directory usw-pr-cvs1:/tmp/cvs-serv24234/admin
Modified Files:
resolution.php
Log Message:
Fixes bug #595276 - Specifying no value for a sort order should default to a sort order of 0
Index: resolution.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/resolution.php,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- resolution.php 18 May 2002 03:00:00 -0000 1.29
+++ resolution.php 26 Aug 2002 18:06:01 -0000 1.30
@@ -55,6 +55,7 @@
$error = $STRING['givedesc'];
if ($error) { show_form($resolutionid, $error); return; }
+ if (empty($sort_order)) $sort_order = 0;
if (!$resolutionid) {
$db->query("insert into ".TBL_RESOLUTION.
" (resolution_id, resolution_name, resolution_desc, sort_order)"
|
|
From: Ben C. <php...@be...> - 2002-08-26 17:22:46
|
I have created a new category for Oracle problems, and set it up to auto-assign bugs to Jirka. On Monday 26 August 2002 09:24 am, Florian Kolbe wrote: > Ok, I'll start submitting individual Bugs now... > I'll prefix all the Topics with 'Oracle: '. > Ben, you could configure a category 'Oracle' in the sourceforge > tracker... > > Thanks, > Florian > > > -----Original Message----- > > From: Jirka Pech [mailto:fi...@us...] > > Sent: Monday, August 26, 2002 6:05 PM > > To: PHPBT-DEV > > Cc: Florian Kolbe > > Subject: Re: [phpBT-dev] oracle support....? > > > > > > It will be better for bug tracking. For example when we will > > repair something > > with having only one bug, it will still remain open, but if > > we will have one > > bug for each error, we can close each bug separately and we will have > > comments and patches separated. That's the logic of bug reporting. > > > > > Should I submit a bug for each individual ORA-SQL-Problem? > > > (e.g. Query, New Bug - with each SQL error). > > > > ------------------------------------------------------- > > This sf.net email is sponsored by: OSDN - Tired of that same old > > cell phone? Get a new here for FREE! > > https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 > > _______________________________________________ > > phpbt-dev mailing list > > php...@li... > > https://lists.sourceforge.net/lists/listinfo/phpbt-dev > > ------------------------------------------------------- > This sf.net email is sponsored by: OSDN - Tired of that same old > cell phone? Get a new here for FREE! > https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 > _______________________________________________ > phpbt-dev mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpbt-dev |
|
From: Ben C. <php...@be...> - 2002-08-26 16:25:02
|
Well, whatever you like. :) On Monday 26 August 2002 09:04 am, Jirka Pech wrote: > It will be better for bug tracking. For example when we will repair > something with having only one bug, it will still remain open, but if we > will have one bug for each error, we can close each bug separately and we > will have comments and patches separated. That's the logic of bug > reporting. > > > Should I submit a bug for each individual ORA-SQL-Problem? > > (e.g. Query, New Bug - with each SQL error). > > ------------------------------------------------------- > This sf.net email is sponsored by: OSDN - Tired of that same old > cell phone? Get a new here for FREE! > https://www.inphonic.com/r.asp?rurceforge1&refcode1Ó3390 > _______________________________________________ > phpbt-dev mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpbt-dev |
|
From: Florian K. <Flo...@in...> - 2002-08-26 16:24:21
|
Ok, I'll start submitting individual Bugs now... I'll prefix all the Topics with 'Oracle: '. Ben, you could configure a category 'Oracle' in the sourceforge tracker... Thanks, Florian > -----Original Message----- > From: Jirka Pech [mailto:fi...@us...] > Sent: Monday, August 26, 2002 6:05 PM > To: PHPBT-DEV > Cc: Florian Kolbe > Subject: Re: [phpBT-dev] oracle support....? > > > It will be better for bug tracking. For example when we will > repair something > with having only one bug, it will still remain open, but if > we will have one > bug for each error, we can close each bug separately and we will have > comments and patches separated. That's the logic of bug reporting. > > > Should I submit a bug for each individual ORA-SQL-Problem? > > (e.g. Query, New Bug - with each SQL error). > > > > ------------------------------------------------------- > This sf.net email is sponsored by: OSDN - Tired of that same old > cell phone? Get a new here for FREE! > https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 > _______________________________________________ > phpbt-dev mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpbt-dev > |
|
From: Jirka P. <fi...@us...> - 2002-08-26 16:04:53
|
It will be better for bug tracking. For example when we will repair somet= hing=20 with having only one bug, it will still remain open, but if we will have = one=20 bug for each error, we can close each bug separately and we will have=20 comments and patches separated. That's the logic of bug reporting. > Should I submit a bug for each individual ORA-SQL-Problem? > (e.g. Query, New Bug - with each SQL error). |
|
From: Jirka P. <fi...@us...> - 2002-08-26 15:49:20
|
I'm doing some support for Oracle / PHPBT, but my support always comes un= der=20 LGPL, so it's free and comes with no warranty. :-) > PEAR::DB just provides a wrapper to the php db function calls... the > queries still need to be tweaked for every database type. I don't know > where the Oracle support is at the moment, as I have no access to test = on > Oracle. |
|
From: Ben C. <php...@be...> - 2002-08-26 15:35:52
|
Nah, I'd vote to keep all the Oracle problems in one bug. On Monday 26 August 2002 08:09 am, Florian Kolbe wrote: > Should I submit a bug for each individual ORA-SQL-Problem? > (e.g. Query, New Bug - with each SQL error). > > Florian > > > -----Original Message----- > > From: Florian Kolbe [mailto:Flo...@in...] > > Sent: Monday, August 26, 2002 5:06 PM > > To: 'php...@li...' > > Subject: RE: [phpBT-dev] oracle support....? > > > > > > Thanks for the info, I am willing to test with oracle... > > ... and apparently Jirka Pech is willing to help fixing it? > > > > Florian > > > > > -----Original Message----- > > > From: Ben Curtis [mailto:php...@be...] > > > Sent: Monday, August 26, 2002 4:38 PM > > > To: php...@li... > > > Subject: Re: [phpBT-dev] oracle support....? > > > > > > > > > PEAR::DB just provides a wrapper to the php db function > > > calls... the queries > > > still need to be tweaked for every database type. I don't > > > know where the > > > Oracle support is at the moment, as I have no access to test > > > on Oracle. > > > > > > On Monday 26 August 2002 07:25 am, Florian Kolbe wrote: > > > > Hmm, I just posted a followup to one of the oracle bugs... > > > > I thought the PEAR:DB would eliminate RDBMS-dependance??? > > > > > > http://sourceforge.net/tracker/index.php?func=detail&aid=54626 > > > 4&group_id=14 > > > > > > >9 39&atid=114939 > > > > > > > > Is anything working on this issue?? > > > > > > > > I might go into this but I need to know where to start. > > > > Thanks for any info. > > > > > > > > Cu, > > > > Florian > > > > > > ------------------------------------------------------- > > > This sf.net email is sponsored by: OSDN - Tired of that same old > > > cell phone? Get a new here for FREE! > > > https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 > > > _______________________________________________ > > > phpbt-dev mailing list > > > php...@li... > > > https://lists.sourceforge.net/lists/listinfo/phpbt-dev > > > > ------------------------------------------------------- > > This sf.net email is sponsored by: OSDN - Tired of that same old > > cell phone? Get a new here for FREE! > > https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 > > _______________________________________________ > > phpbt-dev mailing list > > php...@li... > > https://lists.sourceforge.net/lists/listinfo/phpbt-dev > > ------------------------------------------------------- > This sf.net email is sponsored by: OSDN - Tired of that same old > cell phone? Get a new here for FREE! > https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 > _______________________________________________ > phpbt-dev mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpbt-dev |
|
From: Florian K. <Flo...@in...> - 2002-08-26 15:09:15
|
Should I submit a bug for each individual ORA-SQL-Problem? (e.g. Query, New Bug - with each SQL error). Florian > -----Original Message----- > From: Florian Kolbe [mailto:Flo...@in...] > Sent: Monday, August 26, 2002 5:06 PM > To: 'php...@li...' > Subject: RE: [phpBT-dev] oracle support....? > > > Thanks for the info, I am willing to test with oracle... > ... and apparently Jirka Pech is willing to help fixing it? > > Florian > > > -----Original Message----- > > From: Ben Curtis [mailto:php...@be...] > > Sent: Monday, August 26, 2002 4:38 PM > > To: php...@li... > > Subject: Re: [phpBT-dev] oracle support....? > > > > > > PEAR::DB just provides a wrapper to the php db function > > calls... the queries > > still need to be tweaked for every database type. I don't > > know where the > > Oracle support is at the moment, as I have no access to test > > on Oracle. > > > > On Monday 26 August 2002 07:25 am, Florian Kolbe wrote: > > > Hmm, I just posted a followup to one of the oracle bugs... > > > I thought the PEAR:DB would eliminate RDBMS-dependance??? > > > > > > > > http://sourceforge.net/tracker/index.php?func=detail&aid=54626 > > 4&group_id=14 > > >9 39&atid=114939 > > > > > > Is anything working on this issue?? > > > > > > I might go into this but I need to know where to start. > > > Thanks for any info. > > > > > > Cu, > > > Florian > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by: OSDN - Tired of that same old > > cell phone? Get a new here for FREE! > > https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 > > _______________________________________________ > > phpbt-dev mailing list > > php...@li... > > https://lists.sourceforge.net/lists/listinfo/phpbt-dev > > > > > ------------------------------------------------------- > This sf.net email is sponsored by: OSDN - Tired of that same old > cell phone? Get a new here for FREE! > https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 > _______________________________________________ > phpbt-dev mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpbt-dev > |
|
From: Florian K. <Flo...@in...> - 2002-08-26 15:05:56
|
Thanks for the info, I am willing to test with oracle... ... and apparently Jirka Pech is willing to help fixing it? Florian > -----Original Message----- > From: Ben Curtis [mailto:php...@be...] > Sent: Monday, August 26, 2002 4:38 PM > To: php...@li... > Subject: Re: [phpBT-dev] oracle support....? > > > PEAR::DB just provides a wrapper to the php db function > calls... the queries > still need to be tweaked for every database type. I don't > know where the > Oracle support is at the moment, as I have no access to test > on Oracle. > > On Monday 26 August 2002 07:25 am, Florian Kolbe wrote: > > Hmm, I just posted a followup to one of the oracle bugs... > > I thought the PEAR:DB would eliminate RDBMS-dependance??? > > > > > http://sourceforge.net/tracker/index.php?func=detail&aid=54626 > 4&group_id=14 > >9 39&atid=114939 > > > > Is anything working on this issue?? > > > > I might go into this but I need to know where to start. > > Thanks for any info. > > > > Cu, > > Florian > > > > ------------------------------------------------------- > This sf.net email is sponsored by: OSDN - Tired of that same old > cell phone? Get a new here for FREE! > https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 > _______________________________________________ > phpbt-dev mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpbt-dev > |
|
From: Ben C. <php...@be...> - 2002-08-26 14:38:27
|
PEAR::DB just provides a wrapper to the php db function calls... the queries still need to be tweaked for every database type. I don't know where the Oracle support is at the moment, as I have no access to test on Oracle. On Monday 26 August 2002 07:25 am, Florian Kolbe wrote: > Hmm, I just posted a followup to one of the oracle bugs... > I thought the PEAR:DB would eliminate RDBMS-dependance??? > > http://sourceforge.net/tracker/index.php?func=detail&aid=546264&group_id=14 >9 39&atid=114939 > > Is anything working on this issue?? > > I might go into this but I need to know where to start. > Thanks for any info. > > Cu, > Florian |
|
From: Jirka P. <fi...@us...> - 2002-08-26 14:32:19
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv5229/phpbt
Modified Files:
query.php
Log Message:
Mhmmm .. start bug fix #546264.
Index: query.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/query.php,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- query.php 18 Jul 2002 13:02:14 -0000 1.83
+++ query.php 26 Aug 2002 14:32:15 -0000 1.84
@@ -278,7 +278,7 @@
$nr = $db->getOne($QUERY['query-list-bugs-count'].
(!empty($HTTP_SESSION_VARS['queryinfo']['query'])
- ? "where {$HTTP_SESSION_VARS['queryinfo']['query']}": ''));
+ ? "and {$HTTP_SESSION_VARS['queryinfo']['query']}": ''));
$HTTP_SESSION_VARS['queryinfo']['numrows'] = $nr;
list($selrange, $llimit) = multipages($nr, $page, "order=$order&sort=$sort");
|
|
From: Florian K. <Flo...@in...> - 2002-08-26 14:24:54
|
Hmm, I just posted a followup to one of the oracle bugs... I thought the PEAR:DB would eliminate RDBMS-dependance??? http://sourceforge.net/tracker/index.php?func=detail&aid=546264&group_id=149 39&atid=114939 Is anything working on this issue?? I might go into this but I need to know where to start. Thanks for any info. Cu, Florian -- mailto:Flo...@in... -------------------------------------------- in-integrierte informationssysteme GmbH Am Seerhein 8 D-78467 Konstanz http://www.in-gmbh.de/ -------------------------------------------- Telefon +49 (0) 7531 - 81 45-0 Telefax +49 (0) 7531 - 81 45-81 |
|
From: Benjamin C. <bc...@us...> - 2002-08-24 19:28:15
|
Update of /cvsroot/phpbt/phpbt/templates/default/images
In directory usw-pr-cvs1:/tmp/cvs-serv14122/templates/default/images
Added Files:
title.gif
Log Message:
A slightly new look
--- NEW FILE: title.gif ---
GIF89aô2
È@·S0\È!!rEÀѰ¢Åè³AÂ"}ýB2S(ÂÉ>Ðh*Â
5Y
P¡
+xDÝKêX\O-èø¶ð V<õ°áÇqç#à÷n^¾Õý»µ«ãÇm
`=Dè´ÐÃ
!x~üù ~
°6Ökè1dg }Ø`rÀLÁ vx
¢¡(b&Êâ à¹%ÁCäÖh=íÿúP .4`ÀT A~.`À# `Lò
£$0{,
Z
K2É!l,@¾8è /ìÀg!¢©&%ºy(¾L`@E2® ê,° 4"ÝÐêap¨©¨ ê
¬º¬@yA0
kv(à«@Û¶ÚjN¯Öh lðR@Á¶: *P¨W1¨À·¨êE
¨¤îrR3ìA|èÀ ³^%²0{U
t{Â#/É(«©±V°ÁÄ
a¥[è¤QËVIðÖdåM@O«·~¬°Ë^BÍ2pÁ/|U:V¢áPBRpÆôÅP@"¤ÐV
HÀ
4/þÿ<°5V\|N¾}X¬ð©7dþÅ*H§öð~ap @2Ö-hP^hr
zÀ
ÅBL
âA¼äv>FCQ/U]ð0$@Nºä
â§*F¤»x¡xRv%Þ
ÔÌÉÄt~òã9E2°
Hòýôã
r>
*I9ª'ê
P«\
oXo)W|´
sA) ,@+²> P
( ,uUdf¿d|
P§[
yî©!}C
#0g m*oÚ¢Àg¼±
ëJ@@
ð!M®ôêíZ
÷*5
«
Ȱ¿+0«
±"cW °£¦P²
q²Ê
<ë³S´Ì
|
|
From: Benjamin C. <bc...@us...> - 2002-08-24 19:28:15
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv14122/templates/default/admin
Modified Files:
wrap.html
Log Message:
A slightly new look
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/wrap.html,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- wrap.html 17 Jun 2002 09:21:53 -0000 1.15
+++ wrap.html 24 Aug 2002 19:28:12 -0000 1.16
@@ -6,96 +6,96 @@
<META http-equiv="Content-Type" content="text/html; charset={$STRING.lang_charset}">
</head>
<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
- <table width="100%" cellspacing="0" cellpadding="0" height="100%">
- <tr>
- <td width="150" height="30" class="nav">
- phpBugTracker
- </td>
- <td height="30" class="nav" align="right">
- <form action="../bug.php">
- <input type="hidden" name="op" value="show">
- Find bug <input type="text" name="bugid" size="4" class="navinput">
-
- </form>
- </td>
- </tr>
- <tr>
- <td width="150" class="sidenav">
- <!-- Nav Links -->
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='configure.php'">
- <a href="configure.php" class="sidenavlink">{$TITLE.configuration}</a>
- </div>
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='project.php'">
- <a href="project.php" class="sidenavlink">{$TITLE.project}</a>
- </div>
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='user.php'">
- <a href="user.php" class="sidenavlink">{$TITLE.user}</a>
- </div>
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='group.php'">
- <a href="group.php" class="sidenavlink">{$TITLE.group}</a>
- </div>
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='status.php'">
- <a href="status.php" class="sidenavlink">{$TITLE.status}</a>
- </div>
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='resolution.php'">
- <a href="resolution.php" class="sidenavlink">{$TITLE.resolution}</a>
- </div>
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='severity.php'">
- <a href="severity.php" class="sidenavlink">{$TITLE.severity}</a>
- </div>
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='os.php'">
- <a href="os.php" class="sidenavlink">{$TITLE.os}</a>
- </div>
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='database.php'">
- <a href="database.php" class="sidenavlink">{$TITLE.database}</a>
- </div>
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='site.php'">
- <a href="site.php" class="sidenavlink">{$TITLE.site}</a>
- </div>
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='../docs/html/userguide.html'">
- <a href="../docs/html/userguide.html" class="sidenavlink">{$STRING.WRAP.Documentation}</a>
- </div>
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='../index.php'">
- <a href="../index.php" class="sidenavlink">{$TITLE.usertools}</a>
- </div>
- </td>
- <td class="maincontent">
- {include file=$content_template}
- </td>
- </tr>
- <tr>
- <td width="150" height="30" class="sidenav">
-  
- </td>
- <td height="30" class="bottomnav">
- <form method="post" action="{$smarty.server.REQUEST_URI}">
-
- {if not $smarty.session.uid}
- {if EMAIL_IS_LOGIN}
- {assign var="loginlabel" value="Email"}
- {else}
- {assign var="loginlabel" value="Login"}
- {/if}
- {$loginerror}
- {$loginlabel}: <input type="text" name="username" class="bottomnavinput" value="{$smarty.cookies.phpbt_user}">
- Password: <input type="password" name="password" class="bottomnavinput">
- <input type="hidden" name="dologin" value="1">
- <input type="submit" value="Login" class="bottomnavinput">
- <input type="submit" name="sendpass" value="Email Password" class="bottomnavinput" title="Forgot your password? Have it sent to you">
- {if RECALL_LOGIN}
- <input type="checkbox" name="savecookie" value="1" {if !empty($smarty.cookies.phpbt_user)}checked{/if} class="bottomnavinput" title="Remember {$loginlabel} for next time"> Remember me
- {/if}
- {else}
- [ Bugs assigned to me: <a href="../query.php?op=mybugs&assignedto=1&open=1" title="Open">{$owner_open}</a> / <a href="../query.php?op=mybugs&assignedto=1&open=0" title="Closed">{$owner_closed}</a>
- | Bugs reported by me: <a href="../query.php?op=mybugs&reportedby=1&open=1" title="Open">{$reporter_open}</a> / <a href="../query.php?op=mybugs&reportedby=1&open=0" title="Closed">{$reporter_closed}</a>
- | <a href="../user.php">Personal Page</a>
- | <a href="../logout.php">Logout {$smarty.session.uname}</a>
- ]
- {/if}
-
- </form>
- </td>
- </tr>
- </table>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
+ <tr>
+ <td class="nav" valign="middle"><img name="title" src="{$template_path}/../images/title.gif" width="500" height="50" border="0" alt="" hspace="0" vspace="0"></td>
+ <td align="right" valign="middle" class="nav">
+ <form action="bug.php">
+ <input type="hidden" name="op" value="show">
+ {$STRING.WRAP.FindBug}
+ <input name="bugid" type="text" id="bugid" size="4">
+
+ </form>
+ </td>
+ </tr>
+ <tr>
+ <td bgcolor="#9999FF" height="4" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ </tr>
+ <tr>
+ <td bgcolor="#9999FF" colspan="2">
+ <table border="0" cellspacing="0" cellpadding="4">
+ <tr>
+ <td><a href="configure.php"><font class="navlink">{$TITLE.configuration}</font></a></td>
+ <td>|</td>
+ <td><a href="project.php"><font class="navlink">{$TITLE.project}</font></a></td>
+ <td>|</td>
+ <td><a href="user.php"><font class="navlink">{$TITLE.user}</font></a></td>
+ <td>|</td>
+ <td><a href="group.php"><font class="navlink">{$TITLE.group}</font></a></td>
+ <td>|</td>
+ <td><a href="status.php"><font class="navlink">{$TITLE.status}</font></a></td>
+ <td>|</td>
+ <td><a href="resolution.php"><font class="navlink">{$TITLE.resolution}</font></a></td>
+ </tr><tr>
+ <td><a href="severity.php"><font class="navlink">{$TITLE.severity}</font></a></td>
+ <td>|</td>
+ <td><a href="os.php"><font class="navlink">{$TITLE.os}</font></a></td>
+ <td>|</td>
+ <td><a href="database.php"><font class="navlink">{$TITLE.database}</font></a></td>
+ <td>|</td>
+ <td><a href="site.php"><font class="navlink">{$TITLE.site}</font></a></td>
+ <td>|</td>
+ <td><a href="../docs/html/userguide.html"><font class="navlink">{$STRING.WRAP.Documentation}</font></a></td>
+ <td>|</td>
+ <td><a href="../index.php"><font class="navlink">{$TITLE.usertools}</font></a></td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ <tr>
+ <td bgcolor="#9999FF" height="4" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ </tr>
+ <tr>
+ <td bgcolor="#000000" height="1" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ </tr>
+ <tr>
+ <td colspan="2" height="20" class="bottomnav">
+ <form method="post" action="{$smarty.server.REQUEST_URI}">
+
+{if not $smarty.session.uid}
+ {if EMAIL_IS_LOGIN}
+ {assign var="loginlabel" value="Email"}
+ {else}
+ {assign var="loginlabel" value="Login"}
+ {/if}
+ {$loginerror}
+ {$loginlabel}: <input type="text" name="username" class="bottomnavinput" value="{$smarty.cookies.phpbt_user}">
+ Password: <input type="password" name="password" class="bottomnavinput">
+ <input type="hidden" name="dologin" value="1">
+ <input type="submit" value="Login" class="bottomnavinput">
+ <input type="submit" name="sendpass" value="Email Password" class="bottomnavinput" title="Forgot your password? Have it sent to you">
+ {if RECALL_LOGIN}
+ <input type="checkbox" name="savecookie" value="1" {if !empty($smarty.cookies.phpbt_user)}checked{/if} class="bottomnavinput" title="Remember {$loginlabel} for next time"> Remember me
+ {/if}
+{else}
+ Bugs assigned to me: <a href="../query.php?op=mybugs&assignedto=1&open=1" title="Open">{$owner_open}</a> / <a href="../query.php?op=mybugs&assignedto=1&open=0" title="Closed">{$owner_closed}</a>
+ | Bugs reported by me: <a href="../query.php?op=mybugs&reportedby=1&open=1" title="Open">{$reporter_open}</a> / <a href="../query.php?op=mybugs&reportedby=1&open=0" title="Closed">{$reporter_closed}</a>
+ | <a href="../user.php">Personal Page</a>
+ | <a href="../logout.php">Logout {$smarty.session.uname}</a>
+{/if}
+
+ </form>
+ </td>
+ </tr>
+ <tr>
+ <td bgcolor="#000000" height="1" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ </tr>
+ <tr>
+ <td bgcolor="#ffffff" height="20" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ </tr>
+</table>
+
+{include file=$content_template}
+
</body>
</html>
|
|
From: Benjamin C. <bc...@us...> - 2002-08-24 19:28:15
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv14122/templates/default
Modified Files:
wrap.html
Log Message:
A slightly new look
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/wrap.html,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- wrap.html 17 Jun 2002 09:21:53 -0000 1.19
+++ wrap.html 24 Aug 2002 19:28:12 -0000 1.20
@@ -6,46 +6,54 @@
<META http-equiv="Content-Type" content="text/html; charset={$STRING.lang_charset}">
</head>
<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
- <table width="100%" cellspacing="0" cellpadding="0" height="100%">
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
+ <tr>
+ <td class="nav" valign="middle"><img name="title" src="{$template_path}/images/title.gif" width="500" height="50" border="0" alt="" hspace="0" vspace="0"></td>
+ <td align="right" valign="middle" class="nav">
+ <form action="bug.php">
+ <input type="hidden" name="op" value="show">
+ {$STRING.WRAP.FindBug}
+ <input name="bugid" type="text" id="bugid" size="4">
+
+ </form>
+ </td>
+ </tr>
+ <tr>
+ <td bgcolor="#9999FF" height="4" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ </tr>
+ <tr>
+ <td bgcolor="#9999FF" colspan="2">
+ <table border="0" cellspacing="0" cellpadding="4">
+ <tr>
+ <td><a href="index.php"><font class="navlink">{$STRING.WRAP.Home}</font></a></td>
+ <td>|</td>
+ <td><a href="bug.php?op=add"><font class="navlink">{$STRING.WRAP.AddNewBug}</font></a></td>
+ <td>|</td>
+ <td><a href="query.php?op=query"><font class="navlink">{$STRING.WRAP.QueryBugs}</font></a></td>
+ <td>|</td>
+ <td><a href="report.php"><font class="navlink">{$STRING.WRAP.ViewReports}</font></a></td>
+ {if not NEW_ACCOUNTS_DISABLED and not $smarty.session.uid}
+ <td>|</td>
+ <td><a href="newaccount.php"><font class="navlink">{$STRING.WRAP.CreateNewAccount}</font></a></td>
+ {/if}
+ <td>|</td>
+ <td><a href="docs/html/userguide.html"><font class="navlink">{$STRING.WRAP.Documentation}</font></a></td>
+ {if isset($perm) and $perm->have_perm('Administrator')}
+ <td>|</td>
+ <td><a href="admin/project.php"><font class="navlink">{$STRING.WRAP.AdminTools}</font></a></td>
+ {/if}
+ </tr>
+ </table>
+ </td>
+ </tr>
+ <tr>
+ <td bgcolor="#9999FF" height="4" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ </tr>
+ <tr>
+ <td bgcolor="#000000" height="1" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ </tr>
<tr>
- <td width="150" height="30" class="nav"> phpBugTracker</td>
- <td height="30" class="nav" align="right"><form action="bug.php">
- <input type="hidden" name="op" value="show">
- {$STRING.WRAP.FindBug} <input type="text" name="bugid" size="4" class="navinput">
-
- </form></td>
- </tr><tr>
- <td width="150" class="sidenav">
- <!-- Nav Links -->
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='index.php'">
- <a href="index.php" class="sidenavlink">{$STRING.WRAP.Home}</a>
- </div>
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='bug.php?op=add'">
- <a href="bug.php?op=add" class="sidenavlink">{$STRING.WRAP.AddNewBug}</a>
- </div>
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='query.php?op=query'">
- <a href="query.php?op=query" class="sidenavlink">{$STRING.WRAP.QueryBugs}</a>
- </div>
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='report.php'">
- <a href="report.php" class="sidenavlink">{$STRING.WRAP.ViewReports}</a>
- </div>
-{if not NEW_ACCOUNTS_DISABLED and not $smarty.session.uid}
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='newaccount.php'">
- <a href="newaccount.php" class="sidenavlink">{$STRING.WRAP.CreateNewAccount}</a>
- </div>
-{/if}
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='docs/html/userguide.html'">
- <a href="docs/html/userguide.html" class="sidenavlink">{$STRING.WRAP.Documentation}</a>
- </div>
-{if isset($perm) and $perm->have_perm('Administrator')}
- <div class="navbox" onMouseOver="this.className='navboxselected'" onMouseOut="this.className='navbox'" onClick="document.location.href='admin/project.php'">
- <a href="admin/project.php" class="sidenavlink">{$STRING.WRAP.AdminTools}</a>
- </div>
-{/if}
- </td><td class="maincontent">{include file=$content_template}</td>
- </tr><tr>
- <td width="150" height="30" class="sidenav"> </td>
- <td height="30" class="bottomnav">
+ <td colspan="2" height="20" class="bottomnav">
<form method="post" action="{$smarty.server.REQUEST_URI}">
{if not $smarty.session.uid}
@@ -64,15 +72,24 @@
<input type="checkbox" name="savecookie" value="1" {if !empty($smarty.cookies.phpbt_user)}checked{/if} class="bottomnavinput" title="Remember {$loginlabel} for next time"> Remember me
{/if}
{else}
- [ Bugs assigned to me: <a href="query.php?op=mybugs&assignedto=1&open=1" title="Open">{$owner_open}</a> / <a href="query.php?op=mybugs&assignedto=1&open=0" title="Closed">{$owner_closed}</a>
+ Bugs assigned to me: <a href="query.php?op=mybugs&assignedto=1&open=1" title="Open">{$owner_open}</a> / <a href="query.php?op=mybugs&assignedto=1&open=0" title="Closed">{$owner_closed}</a>
| Bugs reported by me: <a href="query.php?op=mybugs&reportedby=1&open=1" title="Open">{$reporter_open}</a> / <a href="query.php?op=mybugs&reportedby=1&open=0" title="Closed">{$reporter_closed}</a>
| <a href="user.php">Personal Page</a>
- | <a href="logout.php">Logout {$smarty.session.uname}</a> ]
+ | <a href="logout.php">Logout {$smarty.session.uname}</a>
{/if}
</form>
</td>
</tr>
- </table>
+ <tr>
+ <td bgcolor="#000000" height="1" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ </tr>
+ <tr>
+ <td bgcolor="#ffffff" height="20" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ </tr>
+</table>
+
+{include file=$content_template}
+
</body>
</html>
|
|
From: Benjamin C. <bc...@us...> - 2002-08-24 19:27:54
|
Update of /cvsroot/phpbt/phpbt/templates/default/images In directory usw-pr-cvs1:/tmp/cvs-serv14007/templates/default/images Log Message: Directory /cvsroot/phpbt/phpbt/templates/default/images added to the repository |
|
From: Ben C. <php...@be...> - 2002-08-21 15:04:15
|
You'd probably be better off sending this to the phpbt-users list, but here's your answer. It looks like you haven't added any users to the Developers group, which is the group that is listed in the Assigned To dropdown box. On Wed, Aug 21, 2002 at 02:11:49AM -0700, Allan Stokes wrote: > > Hello, > > I just managed to install 0.8.2 under FreeBSD 4.2-RELEASE. I'm using > postgresql-7.2, which works fine after I recompiled the kernel with more > SEMM bufs. > > Everything seems to be working great. I created a project, eight > components, two new groups, five users, changed the OS values to represent > our target platforms (ARM / x86), I created bugs with two different users > (both from the admin group), and I've changed all the bug features except > for "assigned to". I've login in and out and looked at various reports. > > Everything seems fine except for one thing. No matter what I do the > assigned_to dropdown only shows "none". > > Any ideas what might be hanging me up? > > Allan > > > > ------------------------------------------------------- > This sf.net email is sponsored by: OSDN - Tired of that same old > cell phone? Get a new here for FREE! > https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 > _______________________________________________ > phpbt-dev mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpbt-dev |
|
From: Allan S. <al...@st...> - 2002-08-21 09:11:08
|
Hello, I just managed to install 0.8.2 under FreeBSD 4.2-RELEASE. I'm using postgresql-7.2, which works fine after I recompiled the kernel with more SEMM bufs. Everything seems to be working great. I created a project, eight components, two new groups, five users, changed the OS values to represent our target platforms (ARM / x86), I created bugs with two different users (both from the admin group), and I've changed all the bug features except for "assigned to". I've login in and out and looked at various reports. Everything seems fine except for one thing. No matter what I do the assigned_to dropdown only shows "none". Any ideas what might be hanging me up? Allan |