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...> - 2002-12-17 13:27:24
|
Update of /cvsroot/phpbt/phpbt/inc/db In directory sc8-pr-cvs1:/tmp/cvs-serv13459/inc/db Modified Files: pgsql.php Log Message: Same as before. Index: pgsql.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/db/pgsql.php,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- pgsql.php 17 Dec 2002 13:26:07 -0000 1.21 +++ pgsql.php 17 Dec 2002 13:27:21 -0000 1.22 @@ -100,7 +100,7 @@ 'functions-bug-cc' => 'select b.user_id, login '. 'from '.TBL_BUG_CC.' b left join '. TBL_AUTH_USER.' using(user_id) '. 'where bug_id = %s', - 'functions-project-js' => 'select p.project_id, project_name '. + 'functions-project-js' => 'select p.project_id, p.project_name '. 'from '.TBL_PROJECT. ' p '. 'left join '.TBL_PROJECT_GROUP.' pg using(project_id) '. 'where active = 1 and (pg.project_id is null or pg.group_id in (%s)) '. |
|
From: Benjamin C. <bc...@us...> - 2002-12-17 13:26:10
|
Update of /cvsroot/phpbt/phpbt/inc/db In directory sc8-pr-cvs1:/tmp/cvs-serv13087/inc/db Modified Files: pgsql.php Log Message: Fixes bug #650899 - Query cleanup Index: pgsql.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/db/pgsql.php,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- pgsql.php 30 Sep 2002 18:02:06 -0000 1.20 +++ pgsql.php 17 Dec 2002 13:26:07 -0000 1.21 @@ -146,7 +146,7 @@ 'and b.component_id = component.component_id '. 'and b.project_id = project.project_id %s '. 'order by %s %s, bug_id asc', - 'report-resbyeng-1' => 'select email as "Assigned To", '. + 'report-resbyeng-1' => 'select u.email as "Assigned To", '. 'sum(case when resolution_id = 0 then 1 else 0 end) as "Open"', 'report-resbyeng-2' => "select resolution_name, ", 'report-resbyeng-3' => "', sum(case when resolution_id = '", @@ -157,13 +157,13 @@ 'left join '.TBL_AUTH_USER.' u on assigned_to = user_id %s '. 'group by assigned_to, u.email', 'join-where' => 'where', - 'admin-list-components' => 'select c.component_id, component_name, '. - 'c.created_date, active, count(bug_id) as bug_count '. + 'admin-list-components' => 'select c.component_id, c.component_name, '. + 'c.created_date, c.active, count(bug_id) as bug_count '. 'from '.TBL_COMPONENT.' c left join '.TBL_BUG.' b using(component_id) '. 'where c.project_id = %s '. 'group by c.component_id, c.component_name, c.created_date, c.active', - 'admin-list-versions' => 'select v.version_id, version_name, '. - 'v.created_date, active, count(bug_id) as bug_count '. + 'admin-list-versions' => 'select v.version_id, v.version_name, '. + 'v.created_date, v.active, count(bug_id) as bug_count '. 'from '.TBL_VERSION.' v left join '.TBL_BUG.' b using(version_id) '. 'where v.project_id = %s '. 'group by v.version_id, v.version_name, v.created_date, v.active', |
|
From: Benjamin C. <bc...@us...> - 2002-12-17 13:25:13
|
Update of /cvsroot/phpbt/phpbt/inc/db
In directory sc8-pr-cvs1:/tmp/cvs-serv12656/inc/db
Modified Files:
Tag: phpbt-0_9_0
pgsql.php
Log Message:
Fixes for bug #650899 - Cleanup queries
Index: pgsql.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/db/pgsql.php,v
retrieving revision 1.20
retrieving revision 1.20.2.1
diff -u -r1.20 -r1.20.2.1
--- pgsql.php 30 Sep 2002 18:02:06 -0000 1.20
+++ pgsql.php 17 Dec 2002 13:25:10 -0000 1.20.2.1
@@ -146,7 +146,7 @@
'and b.component_id = component.component_id '.
'and b.project_id = project.project_id %s '.
'order by %s %s, bug_id asc',
- 'report-resbyeng-1' => 'select email as "Assigned To", '.
+ 'report-resbyeng-1' => 'select u.email as "Assigned To", '.
'sum(case when resolution_id = 0 then 1 else 0 end) as "Open"',
'report-resbyeng-2' => "select resolution_name, ",
'report-resbyeng-3' => "', sum(case when resolution_id = '",
@@ -157,13 +157,13 @@
'left join '.TBL_AUTH_USER.' u on assigned_to = user_id %s '.
'group by assigned_to, u.email',
'join-where' => 'where',
- 'admin-list-components' => 'select c.component_id, component_name, '.
- 'c.created_date, active, count(bug_id) as bug_count '.
+ 'admin-list-components' => 'select c.component_id, c.component_name, '.
+ 'c.created_date, c.active, count(bug_id) as bug_count '.
'from '.TBL_COMPONENT.' c left join '.TBL_BUG.' b using(component_id) '.
'where c.project_id = %s '.
'group by c.component_id, c.component_name, c.created_date, c.active',
- 'admin-list-versions' => 'select v.version_id, version_name, '.
- 'v.created_date, active, count(bug_id) as bug_count '.
+ 'admin-list-versions' => 'select v.version_id, v.version_name, '.
+ 'v.created_date, v.active, count(bug_id) as bug_count '.
'from '.TBL_VERSION.' v left join '.TBL_BUG.' b using(version_id) '.
'where v.project_id = %s '.
'group by v.version_id, v.version_name, v.created_date, v.active',
|
|
From: Benjamin C. <bc...@pr...> - 2002-11-18 14:32:45
|
Update of /cvsroot/phpbt/phpbt/admin
In directory sc8-pr-cvs1:/tmp/cvs-serv6958/admin
Modified Files:
configure.php
Log Message:
Reorder the checks on the jpgraph handling.
Index: configure.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/configure.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- configure.php 18 Nov 2002 14:30:41 -0000 1.11
+++ configure.php 18 Nov 2002 14:32:28 -0000 1.12
@@ -31,7 +31,7 @@
if (isset($_pv['submit'])) {
foreach ($_pv as $k => $v) {
// Check the jpgraph path to make sure it has a trailing /
- if (strlen($v) and $k == 'JPGRAPH_PATH' and substr($v, -1) != '/') $v .= '/';
+ if ($k == 'JPGRAPH_PATH' and strlen($v) and substr($v, -1) != '/') $v .= '/';
$db->query('update '.TBL_CONFIGURATION." set varvalue = '$v' where varname = '$k'");
|
|
From: Benjamin C. <bc...@pr...> - 2002-11-18 14:30:49
|
Update of /cvsroot/phpbt/phpbt/admin
In directory sc8-pr-cvs1:/tmp/cvs-serv5942/admin
Modified Files:
configure.php
Log Message:
Only append a / to the jpgraph path if one was specified.
Index: configure.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/configure.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- configure.php 21 Oct 2002 20:02:08 -0000 1.10
+++ configure.php 18 Nov 2002 14:30:41 -0000 1.11
@@ -31,7 +31,7 @@
if (isset($_pv['submit'])) {
foreach ($_pv as $k => $v) {
// Check the jpgraph path to make sure it has a trailing /
- if ($k == 'JPGRAPH_PATH' and substr($v, -1) != '/') $v .= '/';
+ if (strlen($v) and $k == 'JPGRAPH_PATH' and substr($v, -1) != '/') $v .= '/';
$db->query('update '.TBL_CONFIGURATION." set varvalue = '$v' where varname = '$k'");
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv21823/templates/default/admin
Modified Files:
database-edit.html group-edit.html os-edit.html
resolution-edit.html severity-edit.html site-edit.html
status-edit.html
Log Message:
Added client-side validation.
Index: database-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/database-edit.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- database-edit.html 30 Sep 2002 18:02:06 -0000 1.3
+++ database-edit.html 5 Nov 2002 20:58:18 -0000 1.4
@@ -1,6 +1,20 @@
+<script language="JavaScript">
+ var nameString = '{$STRING.givename}';
+
+ {literal}
+ function checkForm(frm) {
+ if (frm.database_name.value == '') {
+ alert(nameString);
+ frm.database_name.focus();
+ return false;
+ }
+ return true;
+ }
+ {/literal}
+</script>
<b>{$page_title} </b>
<hr size="1">
-<form action="{$smarty.server.PHP_SELF}" method="post">
+<form action="{$smarty.server.PHP_SELF}" method="post" onSubmit="return checkForm(this)">
<input type="hidden" name="database_id" value="{$database_id}">
<input type="hidden" name="use_js" value="{$smarty.request.use_js}">
<table border='0'>
Index: group-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/group-edit.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- group-edit.html 16 Sep 2002 19:04:30 -0000 1.4
+++ group-edit.html 5 Nov 2002 20:58:19 -0000 1.5
@@ -1,6 +1,20 @@
+<script language="JavaScript">
+ var nameString = '{$STRING.givename}';
+
+ {literal}
+ function checkForm(frm) {
+ if (frm.group_name.value == '') {
+ alert(nameString);
+ frm.group_name.focus();
+ return false;
+ }
+ return true;
+ }
+ {/literal}
+</script>
<b>{$page_title} </b>
<hr size="1">
-<form action="{$smarty.server.PHP_SELF}" method="post">
+<form action="{$smarty.server.PHP_SELF}" method="post" onSubmit="return checkForm(this)">
<input type="hidden" name="group_id" value="{$group_id}">
<input type="hidden" name="use_js" value="{$smarty.request.use_js}">
<table border='0'>
Index: os-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/os-edit.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- os-edit.html 18 May 2002 03:00:50 -0000 1.4
+++ os-edit.html 5 Nov 2002 20:58:19 -0000 1.5
@@ -1,6 +1,20 @@
+<script language="JavaScript">
+ var nameString = '{$STRING.givename}';
+
+ {literal}
+ function checkForm(frm) {
+ if (frm.os_name.value == '') {
+ alert(nameString);
+ frm.os_name.focus();
+ return false;
+ }
+ return true;
+ }
+ {/literal}
+</script>
<b>{$page_title} </b>
<hr size="1">
-<form action="{$smarty.server.PHP_SELF}" method="post">
+<form action="{$smarty.server.PHP_SELF}" method="post" onSubmit="return checkForm(this)">
<input type="hidden" name="os_id" value="{$os_id}">
<input type="hidden" name="use_js" value="{$smarty.request.use_js}">
<table border='0'>
Index: resolution-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/resolution-edit.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- resolution-edit.html 16 Sep 2002 19:04:32 -0000 1.4
+++ resolution-edit.html 5 Nov 2002 20:58:19 -0000 1.5
@@ -1,6 +1,26 @@
+<script language="JavaScript">
+ var nameString = '{$STRING.givename}';
+ var descString = '{$STRING.givedesc}';
+
+ {literal}
+ function checkForm(frm) {
+ if (frm.resolution_name.value == '') {
+ alert(nameString);
+ frm.resolution_name.focus();
+ return false;
+ }
+ if (frm.resolution_desc.value == '') {
+ alert(descString);
+ frm.resolution_desc.focus();
+ return false;
+ }
+ return true;
+ }
+ {/literal}
+</script>
<b>{$page_title} </b>
<hr size="1">
-<form action="{$smarty.server.PHP_SELF}" method="post">
+<form action="{$smarty.server.PHP_SELF}" method="post" onSubmit="return checkForm(this)">
<input type="hidden" name="resolution_id" value="{$resolution_id}">
<input type="hidden" name="use_js" value="{$smarty.request.use_js}">
<table border='0'>
Index: severity-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/severity-edit.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- severity-edit.html 16 Sep 2002 19:04:33 -0000 1.4
+++ severity-edit.html 5 Nov 2002 20:58:19 -0000 1.5
@@ -1,6 +1,26 @@
+<script language="JavaScript">
+ var nameString = '{$STRING.givename}';
+ var descString = '{$STRING.givedesc}';
+
+ {literal}
+ function checkForm(frm) {
+ if (frm.severity_name.value == '') {
+ alert(nameString);
+ frm.severity_name.focus();
+ return false;
+ }
+ if (frm.severity_desc.value == '') {
+ alert(descString);
+ frm.severity_desc.focus();
+ return false;
+ }
+ return true;
+ }
+ {/literal}
+</script>
<b>{$page_title} </b>
<hr size="1">
-<form action="{$smarty.server.PHP_SELF}" method="post">
+<form action="{$smarty.server.PHP_SELF}" method="post" onSubmit="return checkForm(this)">
<input type="hidden" name="severity_id" value="{$severity_id}">
<input type="hidden" name="use_js" value="{$smarty.request.use_js}">
<table border='0'>
Index: site-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/site-edit.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- site-edit.html 13 Jun 2002 14:26:40 -0000 1.1
+++ site-edit.html 5 Nov 2002 20:58:19 -0000 1.2
@@ -1,6 +1,20 @@
+<script language="JavaScript">
+ var nameString = '{$STRING.givename}';
+
+ {literal}
+ function checkForm(frm) {
+ if (frm.site_name.value == '') {
+ alert(nameString);
+ frm.site_name.focus();
+ return false;
+ }
+ return true;
+ }
+ {/literal}
+</script>
<b>{$page_title} </b>
<hr size="1">
-<form action="{$smarty.server.PHP_SELF}" method="post">
+<form action="{$smarty.server.PHP_SELF}" method="post" onSubmit="return checkForm(this)">
<input type="hidden" name="site_id" value="{$site_id}">
<input type="hidden" name="use_js" value="{$smarty.request.use_js}">
<table border='0'>
Index: status-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/status-edit.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- status-edit.html 16 Sep 2002 19:04:34 -0000 1.4
+++ status-edit.html 5 Nov 2002 20:58:19 -0000 1.5
@@ -1,6 +1,26 @@
+<script language="JavaScript">
+ var nameString = '{$STRING.givename}';
+ var descString = '{$STRING.givedesc}';
+
+ {literal}
+ function checkForm(frm) {
+ if (frm.status_name.value == '') {
+ alert(nameString);
+ frm.status_name.focus();
+ return false;
+ }
+ if (frm.status_desc.value == '') {
+ alert(descString);
+ frm.status_desc.focus();
+ return false;
+ }
+ return true;
+ }
+ {/literal}
+</script>
<b>{$page_title} </b>
<hr size="1">
-<form action="{$smarty.server.PHP_SELF}" method="post">
+<form action="{$smarty.server.PHP_SELF}" method="post" onSubmit="return checkForm(this)">
<input type="hidden" name="status_id" value="{$status_id}">
<input type="hidden" name="use_js" value="{$smarty.request.use_js}">
<table border='0'>
|
|
From: Benjamin C. <bc...@us...> - 2002-11-05 20:43:53
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv16143/templates/default
Modified Files:
queryform-simple.html queryform.html
Log Message:
Allow users to override saved queries by saving a new query with the same name as an old one.
Index: queryform-simple.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/queryform-simple.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- queryform-simple.html 17 Jun 2002 09:21:52 -0000 1.9
+++ queryform-simple.html 5 Nov 2002 20:43:50 -0000 1.10
@@ -1,5 +1,5 @@
<script type="text/JavaScript">
-<!--
+<!--
versions = new Array();
components = new Array();
closedversions = new Array();
@@ -8,6 +8,9 @@
closedversions['All'] = new Array(new Array('','All'));
{project_js}
+// Saved queries
+savedQueries = new Array({section name=query loop=$queries}"{$queries[query].saved_query_name}"{if not $smarty.section.query.last},{/if}{/section});
+
{literal}
function updateMenus(f) {
sel = f.projects[f.projects.selectedIndex].text;
@@ -22,10 +25,27 @@
f.components.options[x].text = components[sel][x][1];
}
}
+
+function checkSavedQueries(frm) {
+ if (frm.savedqueryname.value != '') {
+ for (i = 0; i < savedQueries.length; i++) {
+ if (frm.savedqueryname.value == savedQueries[i]) {
+ if (confirm('Are you sure you want to override the saved query named "' + frm.savedqueryname.value + '"?')) {
+ frm.savedqueryoverride.value = 1;
+ return true;
+ } else {
+ return false;
+ }
+ }
+ }
+ }
+ return true;
+}
+
{/literal}
//-->
</script>
- <form method="get" action="query.php" name="query">
+ <form method="get" action="query.php" name="query" onSubmit="return checkSavedQueries(this)">
<table>
<tr valign="baseline">
<td valign="top"><b>{$STRING.QUERY.Project}:</b></td>
@@ -87,9 +107,10 @@
{$STRING.QUERY.SaveThisQueryAs}: <input maxlength="40" type="text" name="savedqueryname">
<br><br>
{/if}
- <input type="hidden" name="op" value="doquery">
+ <input type="hidden" name="op" value="doquery">
+ <input type="hidden" name="savedqueryoverride" value="0">
<input type="reset" value="{$STRING.QUERY.ResetBackToDefaultQuery}">
- <input type="submit" value="{$STRING.QUERY.SubmitQuery}">
+ <input type="submit" value="{$STRING.QUERY.SubmitQuery}">
{if count($queries)}
<br><br>
<b>{$STRING.QUERY.SavedQueries}</b>
Index: queryform.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/queryform.html,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- queryform.html 17 Jun 2002 09:21:53 -0000 1.17
+++ queryform.html 5 Nov 2002 20:43:50 -0000 1.18
@@ -1,5 +1,5 @@
<script type="text/JavaScript">
-<!--
+<!--
versions = new Array();
closedversions = new Array();
components = new Array();
@@ -8,6 +8,9 @@
components['All'] = new Array(new Array('','All'));
{project_js}
+// Saved queries
+savedQueries = new Array({section name=query loop=$queries}"{$queries[query].saved_query_name}"{if not $smarty.section.query.last},{/if}{/section});
+
{literal}
function updateMenus(f) {
sel = f.projects[f.projects.selectedIndex].text;
@@ -22,10 +25,27 @@
f.components.options[x].text = components[sel][x][1];
}
}
+
+function checkSavedQueries(frm) {
+ if (frm.savedqueryname.value != '') {
+ for (i = 0; i < savedQueries.length; i++) {
+ if (frm.savedqueryname.value == savedQueries[i]) {
+ if (confirm('Are you sure you want to override the saved query named "' + frm.savedqueryname.value + '"?')) {
+ frm.savedqueryoverride.value = 1;
+ return true;
+ } else {
+ return false;
+ }
+ }
+ }
+ }
+ return true;
+}
+
{/literal}
//-->
</script>
-<form method="get" action="query.php" name="query">
+<form method="get" action="query.php" name="query" onSubmit="return checkSavedQueries(this)">
<table>
<tr>
<th align="left">{$STRING.QUERY.Status}:</th>
@@ -126,6 +146,7 @@
</table>
<hr align="left" width="100%">
<input type="hidden" name="op" value="doquery">
+ <input type="hidden" name="savedqueryoverride" value="0">
<b>{$STRING.QUERY.SortBy}:</b>
<select name="order">
<option value="bug_id">{$STRING.QUERY.SortBy_BugNumber}</option>
@@ -145,7 +166,7 @@
<br><br>
{/if}
<input type="reset" value="{$STRING.QUERY.ResetBackToDefaultQuery}">
- <input type="submit" value="{$STRING.QUERY.SubmitQuery}">
+ <input type="submit" value="{$STRING.QUERY.SubmitQuery}">
{if count($queries)}
<br><br><b>{$STRING.QUERY.SavedQueries}</b><br>
{section name=query loop=$queries}
|
|
From: Benjamin C. <bc...@us...> - 2002-11-05 20:43:53
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv16143
Modified Files:
query.php
Log Message:
Allow users to override saved queries by saving a new query with the same name as an old one.
Index: query.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/query.php,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- query.php 23 Sep 2002 20:48:21 -0000 1.90
+++ query.php 5 Nov 2002 20:43:46 -0000 1.91
@@ -257,13 +257,20 @@
if (!empty($savedqueryname)) {
$savedquerystring = ereg_replace('&savedqueryname=.*(&?)', '\1', $HTTP_SERVER_VARS['QUERY_STRING']);
$savedquerystring .= '&op=doquery';
- $nextid = $db->getOne("select max(saved_query_id)+1 from ".TBL_SAVED_QUERY." where user_id = $u");
- $nextid = $nextid ? $nextid : 1;
- $db->query("insert into ".TBL_SAVED_QUERY.
- " (saved_query_id, user_id, saved_query_name, saved_query_string)
- values (".join(', ', array($nextid, $u,
- $db->quote(stripslashes($savedqueryname)),
- $db->quote(stripslashes($savedquerystring)))).")");
+ if ($savedqueryoverride) { // Updating an existing query
+ $db->query("update ".TBL_SAVED_QUERY." set saved_query_string = ".
+ $db->quote(stripslashes($savedquerystring)).
+ " where user_id = $u and saved_query_name = ".
+ $db->quote(stripslashes($savedqueryname)));
+ } else { // Adding a new saved query
+ $nextid = $db->getOne("select max(saved_query_id)+1 from ".TBL_SAVED_QUERY." where user_id = $u");
+ $nextid = $nextid ? $nextid : 1;
+ $db->query("insert into ".TBL_SAVED_QUERY.
+ " (saved_query_id, user_id, saved_query_name, saved_query_string)
+ values (".join(', ', array($nextid, $u,
+ $db->quote(stripslashes($savedqueryname)),
+ $db->quote(stripslashes($savedquerystring)))).")");
+ }
}
if (!isset($order)) {
if (isset($HTTP_SESSION_VARS['queryinfo']['order'])) {
|
|
From: Benjamin C. <bc...@us...> - 2002-11-05 20:04:36
|
Update of /cvsroot/phpbt/phpbt/languages
In directory usw-pr-cvs1:/tmp/cvs-serv1648/languages
Added Files:
ja.php
Log Message:
Japanese translation by Makoto Kikutani
--- NEW FILE: ja.php ---
<?php
// ja.php - Japanese strings and titles
// ------------------------------------------------------------------------
// Copyright (c) 2001, 2002 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: ja.php,v 1.1 2002/11/05 20:04:30 bcurtis Exp $
$STRING = array(
'lang_charset' => 'euc-jp',
'nouser' => '¤½¤ó¤Ê¥æ¡¼¥¶¤Ï¤¤¤Þ¤»¤ó',
'dupeofself' => '¤½¤Î¥Ð¥°¼«¿È¤ÎÊ£À½¤Ï¤Ç¤¤Þ¤»¤ó',
'nobug' => '¤½¤ó¤Ê¥Ð¥°¤Ï¤¢¤ê¤Þ¤»¤ó',
'givesummary' => '¥µ¥Þ¥ê¤òÆþ¤ì¤Æ¤¯¤À¤µ¤¤',
'givedesc' => 'µ½Ò¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤',
'noprojects' => '¥×¥í¥¸¥§¥¯¥È¤¬¤¢¤ê¤Þ¤»¤ó',
'totalbugs' => 'Áí¥Ð¥°¿ô',
'giveemail' => '͸ú¤Êemail¥¢¥É¥ì¥¹¤òÆþ¤ì¤Æ¤¯¤À¤µ¤¤',
'givelogin' => '¥í¥°¥¤¥ó̾¤òÆþ¤ì¤Æ¤¯¤À¤µ¤¤',
'loginused' => '¤½¤Î¥í¥°¥¤¥ó̾¤Ï»È¤ï¤ì¤Æ¤¤¤Þ¤¹',
'newacctsubject' => 'phpBugTracker ¥í¥°¥¤¥ó',
'newacctmessage' => "¤¢¤Ê¤¿¤Î phpBugTracker¥Ñ¥¹¥ï¡¼¥É¤Ï %s",
'nobugs' => '¥Ð¥°¤¬¤¢¤ê¤Þ¤»¤ó',
'givename' => '̾Á°¤òÆþ¤ì¤Æ¤¯¤À¤µ¤¤',
'edit' => 'ÊÔ½¸',
'addnew' => '¿·µ¬',
'nooses' => 'OS̾¤¬¤¢¤ê¤Þ¤»¤ó',
'giveinitversion' => '¥×¥í¥¸¥§¥¯¥È¤Î½é´ü¥Ð¡¼¥¸¥ç¥ó¤òÆþ¤ì¤Æ¤¯¤À¤µ¤¤',
'giveversion' => '¥Ð¡¼¥¸¥ç¥ó¤òÆþ¤ì¤Æ¤¯¤À¤µ¤¤',
'noversions' => '¥Ð¡¼¥¸¥ç¥ó¤¬¤¢¤ê¤Þ¤»¤ó',
'nocomponents' => '¥³¥ó¥Ý¡¼¥Í¥ó¥È¤¬¤¢¤ê¤Þ¤»¤ó',
'nostatuses' => '¥¹¥Æ¡¼¥¿¥¹¤¬¤¢¤ê¤Þ¤»¤ó',
'noseverities' => '½ÅÍ×ÅÙ¤¬¤¢¤ê¤Þ¤»¤ó',
'givepassword' => '¥Ñ¥¹¥ï¡¼¥É¤òÆþ¤ì¤Æ¤¯¤À¤µ¤¤',
'nousers' => '¥æ¡¼¥¶¤¬¤¤¤Þ¤»¤ó',
'bugbadperm' => '¤³¤Î¥Ð¥°¤ÏÊѹ¹¤Ç¤¤Þ¤»¤ó',
'bugbadnum' => '¤½¤ó¤Ê¥Ð¥°¤Ï¤¢¤ê¤Þ¤»¤ó',
'datecollision' => '¤³¤Î¥Ð¥°¤ò¸«¤Æ¤¤¤ë´Ö¤Ë狼¤¬Êѹ¹¤·¤Þ¤·¤¿¡£¤³¤Î¥Ð¥°¤Î¾ðÊó¤òºÇ¿·¤Î¤â¤Î¤Ë¥ê¥í¡¼¥É¤·¤Þ¤·¤¿',
'passwordmatch' => '¥Ñ¥¹¥ï¡¼¥É¤¬¹ç¤¤¤Þ¤»¤ó¡£¤â¤¦°ìÅÙÆþÎϤ·¤Æ¤¯¤À¤µ¤¤',
'nobughistory' => '¤³¤Î¥Ð¥°¤Ë¤ÏÍúÎò¤¬¤¢¤ê¤Þ¤»¤ó',
'logintomodify' => '¤³¤Î¥Ð¥°¤òÊѹ¹¤¹¤ë¤Ë¤Ï¥í¥°¥¤¥ó¤·¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó',
'dupe_attachment' => '¤³¤Î¥Ð¥°¤Ë¤Ï¤¹¤Ç¤ËźÉÕ¤¬¤¢¤ê¤Þ¤¹',
'give_attachment' => '¥¢¥Ã¥×¥í¡¼¥É¤¹¤ë¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤',
'no_attachment_save_path' => '¥Õ¥¡¥¤¥ë¤ò¥»¡¼¥Ö¤¹¤ë¾ì½ê¤¬¤ß¤Ä¤«¤ê¤Þ¤»¤ó!',
'attachment_path_not_writeable' => '¤½¤Î¥Ñ¥¹¤Ë¥Õ¥¡¥¤¥ë¤ò¥»¡¼¥Ö¤¹¤ë¤³¤È¤¬¤Ç¤¤Þ¤»¤ó',
'attachment_move_error' => '¥¢¥Ã¥×¥í¡¼¥É¤¹¤ë¥Õ¥¡¥¤¥ë¤ò°Üư¤¹¤ëºÝ¤Ë¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤·¤¿',
'bad_attachment' => '¤½¤ó¤ÊźÉդϤ¢¤ê¤Þ¤»¤ó',
'attachment_too_large' => '¤½¤Î¥Õ¥¡¥¤¥ë¤Ï '.number_format(ATTACHMENT_MAX_SIZE).' ¥Ð¥¤¥È¤ÎÀ©¸Â¤òͤ¨¤Æ¤¤¤Þ¤¹',
'bad_permission' => '¤½¤Îµ¡Ç½¤ò¼Â¹Ô¤¹¤ë¸¢¸Â¤¬¤¢¤ê¤Þ¤»¤ó',
'project_only_all_groups' => '¡ÖÁ´¥°¥ë¡¼¥×¤¬Áª¤Ð¤ì¤Æ¤¤¤ë¤Î¤Ç¡¢ÆÃÄê¤Î¥°¥ë¡¼¥×¤ÏÁª¤Ù¤Þ¤»¤ó',
'previous_bug' => 'Á°',
'next_bug' => '¼¡',
'already_voted' => '¤¹¤Ç¤Ë¤³¤Î¥Ð¥°¤ËÅêɼ¤·¤Æ¤¤¤Þ¤¹',
'too_many_votes' => '¥æ¡¼¥¶¤´¤È¤ÎÅêɼ¿ô¤ÎºÇÂçÃͤËíý¤·¤Æ¤¤¤Þ¤¹',
'no_votes' => '¤³¤Î¥Ð¥°¤ËÅêɼ¤Ï¤¢¤ê¤Þ¤»¤ó',
'user_filter' => array(
0 => 'Á´¥æ¡¼¥¶',
1 => '¥¢¥¯¥Æ¥£¥Ö¤Ê¥æ¡¼¥¶',
2 => 'Èó¥¢¥¯¥Æ¥£¥Ö¤Ê¥æ¡¼¥¶'),
'dupe_dependency' => '¤½¤Î¥Ð¥°¤Î°Í¸´Ø·¸¤Ï¤¹¤Ç¤Ë²Ã¤¨¤é¤ì¤Æ¤¤¤Þ¤¹',
'image_path_not_writeable' => '"jpgimages"¥Ç¥£¥ì¥¯¥È¥ê¡¼¤¬Web¥×¥í¥»¥¹¤«¤é½ñ¤±¤Ê¤¤¤Î¤Ç¥¤¥á¡¼¥¸¤òÉÁ²è¤Ç¤¤Þ¤»¤ó',
'password_changed' => '¥Ñ¥¹¥ï¡¼¥É¤ÏÊѹ¹¤µ¤ì¤Þ¤·¤¿',
'prefs_changed' => '¹¥¤ß¤ÏÊѹ¹¤µ¤ì¤Þ¤·¤¿',
'databaselist' => '¥Ç¡¼¥¿¥Ù¡¼¥¹¥ê¥¹¥È',
'database' => '¥Ç¡¼¥¿¥Ù¡¼¥¹',
'databases' => '¥Ç¡¼¥¿¥Ù¡¼¥¹',
'name' => '̾Á°',
'description' => 'µ½Ò',
'sortorder' => '¥½¡¼¥È½ç',
'suredeletedb' => 'ËÜÅö¤Ë¤³¤Î¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºï½ü¤·¤Þ¤¹¤«?',
'suredeletesite' => 'ËÜÅö¤Ë¤³¤Î¥µ¥¤¥È¤òºï½ü¤·¤Þ¤¹¤«?',
'delete' => 'ºï½ü',
'version' => '¥Ð¡¼¥¸¥ç¥ó',
'addnewsite' => '¿·¥µ¥¤¥È¤ò²Ã¤¨¤ë',
'sitelist' => '¥µ¥¤¥È¥ê¥¹¥È',
'sites' => '¥µ¥¤¥È',
'QUERY' => array(
'opt_All' => 'Á´Éô',
'Project' => '¥×¥í¥¸¥§¥¯¥È',
'Version' => '¥Ð¡¼¥¸¥ç¥ó',
'Component' => '¥³¥ó¥Ý¡¼¥Í¥ó¥È',
'Status' => '¥¹¥Æ¡¼¥¿¥¹',
'Resolution' => '²ò·èË¡',
'OpSys' => 'OS',
'Priority' => 'Í¥ÀèÅÙ',
'Severity' => '½ÅÍ×ÅÙ',
'Database' => '¥Ç¡¼¥¿¥Ù¡¼¥¹',
'ReportedOnSite' => '¤³¤Î¥µ¥¤¥È¤ÇÊó¹ð¤µ¤ì¤¿',
'Summary' => '¥µ¥Þ¥ê',
'DescriptionEntry' => 'µ½Ò¤ÎÆþÎÏ',
'SortBy' => '¥½¡¼¥È½ç',
'SortBy_BugNumber' => '¥Ð¥°ÈÖ¹æ',
'SortBy_Severity' => '½ÅÍ×ÅÙ',
'SortBy_Reporter' => 'Êó¹ð¼Ô',
'SortBy_Priority' => 'Í¥ÀèÅÙ',
'SortBy_Status' => '¥¹¥Æ¡¼¥¿¥¹',
'SortAsc' => '¾º½ç',
'SortDesc' => '¹ß½ç',
'SaveThisQueryAs' => '¤³¤Î¥¯¥¨¥ê¤ò¥»¡¼¥Ö',
'ResetBackToDefaultQuery' => '¥Ç¥Õ¥©¥ë¥È¤Î¥¯¥¨¥ê¤Ë¥ê¥»¥Ã¥È',
'SubmitQuery' => '¥¯¥¨¥ê¤òÅêÆþ',
'SavedQueries' => '¥»¡¼¥Ö¤µ¤ì¤¿¥¯¥¨¥ê',
'GoToThe' => '¹Ô¤Àè',
'AdvancedQueryPage' => '¤è¤ê¾Ü¤·¤¤¥¯¥¨¥ê',
'SimpleQueryPage' => 'ñ½ã¤Ê¥¯¥¨¥ê¤Î¥Ú¡¼¥¸',
'SureDeleteSavedQuery' => 'ËÜÅö¤Ë¤³¤Î¥»¡¼¥Ö¤µ¤ì¤¿¥¯¥¨¥ê¤ò¾Ã¤·¤Þ¤¹¤«?',
'MatchingAs' => '¥Þ¥Ã¥Á',
'MatchingAs_Regexp' => 'Àµµ¬É½¸½',
'MatchingAs_NotRegexp' => 'ÈóÀµµ¬É½¸½',
'MatchingAs_Substring' => 'Éôʬʸ»úÎó',
'MatchingAs_Exact' => '¸·Ì©¤Ë',
'eMail_Reporter' => 'Êó¹ð¼Ô',
'eMail_AssignedTo' => '³äÅö¤Æ¼Ô'
),
'WRAP' => array(
'FindBug' => '¥Ð¥°¸¡º÷',
'Home' => '¥Û¡¼¥à',
'AddNewBug' => '¿·¤¿¤Ê¥Ð¥°¤ò²Ã¤¨¤ë',
'QueryBugs' => '¥Ð¥°¤Î¥¯¥¨¥ê',
'ViewReports' => 'Êó¹ð¤òɽ¼¨',
'Documentation' => '¥É¥¥å¥á¥ó¥È¤òÆÉ¤à',
'AdminTools' => '´ÉÍý¥Ä¡¼¥ë',
'CreateNewAccount' => '¿·¥¢¥«¥¦¥ó¥È¤ÎºîÀ®',
'Email' => 'E¥á¥¤¥ë',
'Login' => '¥í¥°¥¤¥ó',
'DoLogin' => '¥í¥°¥¤¥ó',
'BugsAssigned' => '¼«Ê¬¤Ë³äÅö¤Æ¤é¤ì¤¿¥Ð¥°',
'BugsReported' => '¼«Ê¬¤¬Êó¹ð¤·¤¿¥Ð¥°',
'PersonalPage' => '¸Ä¿Í¥Ú¡¼¥¸',
'Logout' => '¥í¥°¥¢¥¦¥È',
'EmailPassword' => 'E¥á¥¤¥ë¤Î¥Ñ¥¹¥ï¡¼¥É',
'RememberMe' => '³Ð¤¨½ñ¤',
),
'BUGFORM' => array(
'Project' => '¥×¥í¥¸¥§¥¯¥È',
'Version' => '¥Ð¡¼¥¸¥ç¥ó',
'Summary' => '¥µ¥Þ¥ê',
'Description' => 'µ½Ò',
'Severity' => '½ÅÍ×ÅÙ',
'Priority' => 'Í¥ÀèÅÙ',
'Site' => '¥µ¥¤¥È',
'Database' => '¥Ç¡¼¥¿¥Ù¡¼¥¹',
'Component' => '¥³¥ó¥Ý¡¼¥Í¥ó¥È',
'OS' => 'OS',
'AddAnother' => '¾¤ò²Ã¤¨¤ë',
'Submit' => 'ÅêÆþ'
),
'BUGDISPLAY' => array(
'Reporter' => 'Êó¹ð¼Ô',
'ReturnTo' => 'Ìá¤êÀè',
'BugList' => '¥Ð¥°¥ê¥¹¥È',
'Project' => '¥×¥í¥¸¥§¥¯¥È',
'Created' => 'À¸À®»þ',
'Version' => '¥Ð¡¼¥¸¥ç¥ó',
'ClosedInVersion' => '¤½¤Î¥Ð¡¼¥¸¥ç¥ó¤Ë¤Æ¥¯¥í¡¼¥º',
'ToBeClosedInVersion' => '¤½¤Î¥Ð¡¼¥¸¥ç¥ó¤Ë¤Æ¥¯¥í¡¼¥º¤µ¤ì¤ë',
'AssignedTo' => '³äÅö¤Æ¼Ô',
'AssignedToNobody' => '¤¤¤Ê¤¤',
'BugDependency' => '°Í¸´Ø·¸',
'AddDependency' => '°Í¸´Ø·¸¤ò²Ã¤¨¤ë',
'RemoveDependency' => '°Í¸´Ø·¸¤òºï½ü',
'Summary' => '¥µ¥Þ¥ê',
'Status' => '¥¹¥Æ¡¼¥¿¥¹',
'Description' => 'µ½Ò',
'Severity' => '½ÅÍ×ÅÙ',
'Priority' => 'Í¥ÀèÅÙ',
'Component' => '¥³¥ó¥Ý¡¼¥Í¥ó¥È',
'Resolution' => '²ò·èË¡',
'ResolutionNone' => '¤Ê¤·',
'AddCC' => 'CCÄɲÃ',
'RemoveSelectedCC' => 'ÁªÂò¤µ¤ì¤¿CC¤òºï½ü',
'AdditionalComments' => 'ÄɲäΥ³¥á¥ó¥È',
'Attachments' => 'źÉÕ',
'CreateAttachment' => 'źÉդκîÀ®',
'SureDeleteAttachment' => 'ËÜÅö¤Ë¤³¤ÎźÉÕ¤òºï½ü¤·¤Þ¤¹¤«?',
'Name' => '̾Á°',
'Size' => '¥µ¥¤¥º',
'Type' => '¥¿¥¤¥×',
'Created' => 'À¸À®»þ',
'VoteForThisBug' => '¤³¤Î¥Ð¥°¤ËÅêɼ',
'ViewVotes' => 'Åêɼ·ë²Ì¤ò¸«¤ë',
'ForThisBug' => '¤³¤Î¥Ð¥°¤Î¤¿¤á¤Ë',
'ViewBugActivity' => '¥Ð¥°¤Î³èư¾õ¶·¤ò¸«¤ë',
'PrintableView' => '¥×¥ê¥ó¥ÈÈÇ',
'NoAttachments' => 'źÉդʤ·',
'Comments' => '¥³¥á¥ó¥È',
'PostedBy' => '¥Ý¥¹¥È¤·¤¿¿Í',
'Date' => 'ÆüÉÕ',
'DateOn' => 'On',
'Submit' => 'ÅêÆþ',
'Site' => '¤½¤Î¥µ¥¤¥È¤ËÊó¹ð',
'Database' => '¥Ç¡¼¥¿¥Ù¡¼¥¹',
'OS' => 'OS',
'ChooseOne' => '°ì¤ÄÁªÂò'
),
'USER_PREF' => array(
'ReceiveNotifications' => '¥Ð¥°¤¬Êѹ¹¤µ¤ì¤¿¤³¤È¤ò¥á¥¤¥ë¤Ç¼õ¤±¤È¤ë',
'ShowSavedQueries' => '¥»¡¼¥Ö¤µ¤ì¤¿¥¯¥¨¥ê¤ò¥Û¡¼¥à¥Ú¡¼¥¸¤Ëɽ¼¨',
'ChangePassword' => '¥Ñ¥¹¥ï¡¼¥É¤ÎÊѹ¹',
'EnterNewPassword' => '¿·¥Ñ¥¹¥ï¡¼¥É¤ò²¼¤Ë2ÅÙÆþÎϤ·¤Æ¤¯¤À¤µ¤¤',
'Password' => '¥Ñ¥¹¥ï¡¼¥É',
'Verify' => '¸¡¾Ú',
'ChangePreferences' => '¹¥¤ß¤òÊѹ¹',
'BugListColumns' => '¥Ð¥°¥ê¥¹¥È¤Î¥«¥é¥à',
'ChooseFields' => '¥Ð¥°¥ê¥¹¥È¤Çɽ¼¨¤¹¤ë¥Õ¥£¡¼¥ë¥É¤òÁªÂò',
'SureDeleteVote' => 'ËÜÅö¤Ë¤³¤ÎÅêɼ¤ò¾Ã¤·¤Þ¤¹¤«?',
'Votes' => 'Åêɼ',
'Bug' => '¥Ð¥°',
'When' => '¤¤¤Ä',
'ColumnPreferencesSaved' => '¥Ð¥°¥ê¥¹¥È¤Î¥«¥é¥à¤Î¹¥¤ß¤Ï¥»¡¼¥Ö¤µ¤ì¤Þ¤·¤¿'
),
'INDEX' => array(
'FiveRecentlySubmitted' => '¤â¤Ã¤È¤âºÇ¶áÅêÆþ¤µ¤ì¤¿5¤Ä¤Î¥Ð¥°',
'FiveRecentlyClosed' => '¤â¤Ã¤È¤âºÇ¶á¥¯¥í¡¼¥º¤µ¤ì¤¿5¤Ä¤Î¥Ð¥°',
'QuickStats' => '¥¯¥¤¥Ã¥¯¥¹¥¿¡¼¥È',
'Status' => '¥¹¥Æ¡¼¥¿¥¹',
'NumberOfBugs' => '¥Ð¥°¤Î¿ô',
'SavedQueries' => '¥»¡¼¥Ö¤µ¤ì¤¿¥¯¥¨¥ê'
)
);
// Page titles
$TITLE = array(
'enterbug' => '¥Ð¥°ÆþÎÏ',
'editbug' => '¥Ð¥°ÊÔ½¸',
'newaccount' => '¿·¥¢¥«¥¦¥ó¥ÈºîÀ®',
'bugquery' => '¥Ð¥°¸¡º÷',
'buglist' => '¥Ð¥°¥ê¥¹¥È',
'addcomponent' => '¥³¥ó¥Ý¡¼¥Í¥ó¥ÈÄɲÃ',
'editcomponent' => '¥³¥ó¥Ý¡¼¥Í¥ó¥ÈÊÔ½¸',
'addproject' => '¥×¥í¥¸¥§¥¯¥ÈÄɲÃ',
'editproject' => '¥×¥í¥¸¥§¥¯¥ÈÊÔ½¸',
'addversion' => '¥Ð¡¼¥¸¥ç¥óÄɲÃ',
'editversion' => '¥Ð¡¼¥¸¥ç¥óÊÔ½¸',
'project' => '¥×¥í¥¸¥§¥¯¥È',
'os' => '¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¥·¥¹¥Æ¥à',
'resolution' => '²òË¡',
'status' => '¾õÂÖ',
'severity' => '½ÅÍ×ÅÙ',
'user' => '¥æ¡¼¥¶',
'home' => '¥Û¡¼¥à¥Ú¡¼¥¸',
'reporting' => 'Êó¹ð',
'group' => '¥°¥ë¡¼¥×',
'bugvotes' => '¥Ð¥°¤ÎÅêɼ',
'bughistory' => '¥Ð¥°¤ÎÍúÎò',
'viewbug' => '¥Ð¥°¤ò¸«¤ë',
'addattachment' => 'źÉÕ¤ò²Ã¤¨¤ë',
'accountcreated' => '¥¢¥«¥¦¥ó¥È¤ÏºîÀ®¤µ¤ì¤Þ¤·¤¿',
'changessaved' => 'Êѹ¹¤Ï¥»¡¼¥Ö¤µ¤ì¤Þ¤·¤¿',
'preferences' => '¥æ¡¼¥¶¤Î¹¥¤ß',
'usertools' => '¥æ¡¼¥¶¡¦¥Ä¡¼¥ë',
'edituser' => '¥æ¡¼¥¶¤ÎÊÔ½¸',
'adduser' => '¥æ¡¼¥¶¤ÎÄɲÃ',
'editstatus' => '¥¹¥Æ¡¼¥¿¥¹¤ÎÊÔ½¸',
'addstatus' => '¥¹¥Æ¡¼¥¿¥¹¤ÎÄɲÃ',
'editseverity' => '½ÅÍ×ÅÙ¤ÎÊÔ½¸',
'addseverity' => '½ÅÍ×ÅÙ¤ÎÄɲÃ',
'editresolution' => '²ò·èË¡¤ÎÊÔ½¸',
'addresolution' => '²ò·èË¡¤ÎÄɲÃ',
'editos' => '¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¥·¥¹¥Æ¥à¤òÊÔ½¸',
'addos' => '¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¥·¥¹¥Æ¥à¤òÄɲÃ',
'editgroup' => '¥°¥ë¡¼¥×¤òÊÔ½¸',
'addgroup' => '¥°¥ë¡¼¥×¤òÄɲÃ',
'configuration' => 'ÀßÄê',
'adddatabase' => '¥Ç¡¼¥¿¥Ù¡¼¥¹¤òÄɲÃ',
'editdatabase' => '¥Ç¡¼¥¿¥Ù¡¼¥¹¤òÊÔ½¸',
'database' => '¥Ç¡¼¥¿¥Ù¡¼¥¹',
'site' => '¥µ¥¤¥È'
);
?>
|
|
From: Benjamin C. <bc...@us...> - 2002-11-05 18:07:06
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv15006
Modified Files:
upgrade.php
Log Message:
Fixed postgres sequence problem.
Index: upgrade.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/upgrade.php,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- upgrade.php 19 Oct 2002 19:02:10 -0000 1.27
+++ upgrade.php 5 Nov 2002 18:07:03 -0000 1.28
@@ -55,12 +55,12 @@
$db->query("INSERT INTO ".TBL_SITE." VALUES (2,'Testing',3)");
$db->query("INSERT INTO ".TBL_SITE." VALUES (3,'Staging',4)");
$db->query("INSERT INTO ".TBL_SITE." VALUES (4,'Production',5)");
- $db->query("CREATE SEQUENCE ".TBL_SITE."_seq START 4");
+ $db->query("CREATE SEQUENCE ".TBL_SITE."_seq START 5");
$db->query("create table ".TBL_DATABASE." ( database_id INT2 NOT NULL DEFAULT '0', database_name varchar(40) NOT NULL DEFAULT '', sort_order INT2 NOT NULL DEFAULT '0', PRIMARY KEY (database_id) )");
$db->query("INSERT INTO ".TBL_DATABASE." VALUES (1,'Oracle 8.1.7',1)");
$db->query("INSERT INTO ".TBL_DATABASE." VALUES (2,'MySQL 3.23.49',2)");
$db->query("INSERT INTO ".TBL_DATABASE." VALUES (3,'PostgreSQL 7.1.3',3)");
- $db->query("CREATE SEQUENCE ".TBL_DATABASE."_seq START 3");
+ $db->query("CREATE SEQUENCE ".TBL_DATABASE."_seq START 4");
break;
case 'mysql' :
$db->query("alter table ".TBL_USER_PREF." add saved_queries tinyint(1) not null default '1' after email_notices");
|
|
From: Benjamin C. <bc...@us...> - 2002-11-05 18:07:06
|
Update of /cvsroot/phpbt/phpbt/schemas In directory usw-pr-cvs1:/tmp/cvs-serv15006/schemas Modified Files: pgsql.in Log Message: Fixed postgres sequence problem. Index: pgsql.in =================================================================== RCS file: /cvsroot/phpbt/phpbt/schemas/pgsql.in,v retrieving revision 1.36 retrieving revision 1.37 diff -u -r1.36 -r1.37 --- pgsql.in 23 Sep 2002 20:09:09 -0000 1.36 +++ pgsql.in 5 Nov 2002 18:07:02 -0000 1.37 @@ -275,13 +275,13 @@ (user_id, login, first_name, last_name, email, password) values (1, 'OPTION_ADMIN_EMAIL', 'System', 'Admin', 'OPTION_ADMIN_EMAIL', 'OPTION_ADMIN_PASS'); -CREATE SEQUENCE TBL_AUTH_USER_seq START 1; +CREATE SEQUENCE TBL_AUTH_USER_seq START 2; -- Start off with three user levels... INSERT INTO TBL_AUTH_GROUP (group_id, group_name, locked) VALUES (1, 'Admin', 1); INSERT INTO TBL_AUTH_GROUP (group_id, group_name, locked) VALUES (2, 'User', 1); INSERT INTO TBL_AUTH_GROUP (group_id, group_name, locked) VALUES (3, 'Developer', 1); -CREATE SEQUENCE TBL_AUTH_GROUP_seq START 3; +CREATE SEQUENCE TBL_AUTH_GROUP_seq START 4; -- ... and only two permissions INSERT INTO TBL_AUTH_PERM (perm_id, perm_name) VALUES (1, 'Admin'); @@ -360,7 +360,7 @@ INSERT INTO TBL_OS VALUES (29,'Solaris',29,'/Mozilla.*\\(.*;.*; SunOS 5.*\\)/'); INSERT INTO TBL_OS VALUES (30,'SunOS',30,'/Mozilla.*\\(.*;.*; SunOS.*\\)/'); INSERT INTO TBL_OS VALUES (31,'other',31,''); -CREATE SEQUENCE TBL_OS_seq START 31; +CREATE SEQUENCE TBL_OS_seq START 32; INSERT INTO TBL_RESOLUTION VALUES (1,'Fixed','Bug was eliminated',1); INSERT INTO TBL_RESOLUTION VALUES (2,'Not a bug','It''s not a bug -- it''s a feature!',2); @@ -368,7 +368,7 @@ INSERT INTO TBL_RESOLUTION VALUES (4,'Deferred','We''ll get around to it later',4); INSERT INTO TBL_RESOLUTION VALUES (5,'Works for me','Can''t replicate the bug',5); INSERT INTO TBL_RESOLUTION VALUES (6,'Duplicate','',6); -CREATE SEQUENCE TBL_RESOLUTION_seq START 6; +CREATE SEQUENCE TBL_RESOLUTION_seq START 7; INSERT INTO TBL_SEVERITY VALUES (1,'Unassigned','Default bug creation',1,'#dadada'); INSERT INTO TBL_SEVERITY VALUES (2,'Idea','Ideas for further development',2,'#dad0d0'); @@ -377,7 +377,7 @@ INSERT INTO TBL_SEVERITY VALUES (5,'Content','Non-functional related bugs, such as text content',5,'#dababa'); INSERT INTO TBL_SEVERITY VALUES (6,'Significant','A bug affecting the intended performance of the product',6,'#dab0b0'); INSERT INTO TBL_SEVERITY VALUES (7,'Critical','A bug severe enough to prevent the release of the product',7,'#daaaaa'); -CREATE SEQUENCE TBL_SEVERITY_seq START 7; +CREATE SEQUENCE TBL_SEVERITY_seq START 8; INSERT INTO TBL_STATUS VALUES (1,'Unconfirmed','Reported but not confirmed',1); INSERT INTO TBL_STATUS VALUES (2,'New','A new bug',2); @@ -386,19 +386,19 @@ INSERT INTO TBL_STATUS VALUES (5,'Resolved','Set by engineer with a resolution',5); INSERT INTO TBL_STATUS VALUES (6,'Verified','The resolution is confirmed by the reporter',6); INSERT INTO TBL_STATUS VALUES (7,'Closed','The bug is officially squashed (QA)',7); -CREATE SEQUENCE TBL_STATUS_seq START 7; +CREATE SEQUENCE TBL_STATUS_seq START 8; INSERT INTO TBL_DATABASE VALUES (1,'Oracle 8.1.7',1); INSERT INTO TBL_DATABASE VALUES (2,'MySQL 3.23.49',2); INSERT INTO TBL_DATABASE VALUES (3,'PostgreSQL 7.1.3',3); -CREATE SEQUENCE TBL_DATABASE_seq START 3; +CREATE SEQUENCE TBL_DATABASE_seq START 4; INSERT INTO TBL_SITE VALUES (0,'All',1); INSERT INTO TBL_SITE VALUES (1,'Production - location 1',2); INSERT INTO TBL_SITE VALUES (2,'Production - location 2',3); INSERT INTO TBL_SITE VALUES (3,'Test site - location 1',4); INSERT INTO TBL_SITE VALUES (4,'Test site - location 2',5); -CREATE SEQUENCE TBL_SITE_seq START 4; +CREATE SEQUENCE TBL_SITE_seq START 5; -- -- Indexes for table TBL_GROUP_PERM |
|
From: Benjamin C. <bc...@us...> - 2002-11-05 18:05:19
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv14405
Modified Files:
Tag: phpbt-0_9_0
upgrade.php
Log Message:
Fixing postgres sequence start
Index: upgrade.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/upgrade.php,v
retrieving revision 1.27
retrieving revision 1.27.2.1
diff -u -r1.27 -r1.27.2.1
--- upgrade.php 19 Oct 2002 19:02:10 -0000 1.27
+++ upgrade.php 5 Nov 2002 18:05:16 -0000 1.27.2.1
@@ -55,12 +55,12 @@
$db->query("INSERT INTO ".TBL_SITE." VALUES (2,'Testing',3)");
$db->query("INSERT INTO ".TBL_SITE." VALUES (3,'Staging',4)");
$db->query("INSERT INTO ".TBL_SITE." VALUES (4,'Production',5)");
- $db->query("CREATE SEQUENCE ".TBL_SITE."_seq START 4");
+ $db->query("CREATE SEQUENCE ".TBL_SITE."_seq START 5");
$db->query("create table ".TBL_DATABASE." ( database_id INT2 NOT NULL DEFAULT '0', database_name varchar(40) NOT NULL DEFAULT '', sort_order INT2 NOT NULL DEFAULT '0', PRIMARY KEY (database_id) )");
$db->query("INSERT INTO ".TBL_DATABASE." VALUES (1,'Oracle 8.1.7',1)");
$db->query("INSERT INTO ".TBL_DATABASE." VALUES (2,'MySQL 3.23.49',2)");
$db->query("INSERT INTO ".TBL_DATABASE." VALUES (3,'PostgreSQL 7.1.3',3)");
- $db->query("CREATE SEQUENCE ".TBL_DATABASE."_seq START 3");
+ $db->query("CREATE SEQUENCE ".TBL_DATABASE."_seq START 4");
break;
case 'mysql' :
$db->query("alter table ".TBL_USER_PREF." add saved_queries tinyint(1) not null default '1' after email_notices");
|
|
From: Benjamin C. <bc...@us...> - 2002-11-05 18:05:19
|
Update of /cvsroot/phpbt/phpbt/schemas
In directory usw-pr-cvs1:/tmp/cvs-serv14405/schemas
Modified Files:
Tag: phpbt-0_9_0
pgsql.in
Log Message:
Fixing postgres sequence start
Index: pgsql.in
===================================================================
RCS file: /cvsroot/phpbt/phpbt/schemas/pgsql.in,v
retrieving revision 1.36
retrieving revision 1.36.2.1
diff -u -r1.36 -r1.36.2.1
--- pgsql.in 23 Sep 2002 20:09:09 -0000 1.36
+++ pgsql.in 5 Nov 2002 18:05:16 -0000 1.36.2.1
@@ -275,13 +275,13 @@
(user_id, login, first_name, last_name, email, password)
values (1, 'OPTION_ADMIN_EMAIL', 'System', 'Admin', 'OPTION_ADMIN_EMAIL',
'OPTION_ADMIN_PASS');
-CREATE SEQUENCE TBL_AUTH_USER_seq START 1;
+CREATE SEQUENCE TBL_AUTH_USER_seq START 2;
-- Start off with three user levels...
INSERT INTO TBL_AUTH_GROUP (group_id, group_name, locked) VALUES (1, 'Admin', 1);
INSERT INTO TBL_AUTH_GROUP (group_id, group_name, locked) VALUES (2, 'User', 1);
INSERT INTO TBL_AUTH_GROUP (group_id, group_name, locked) VALUES (3, 'Developer', 1);
-CREATE SEQUENCE TBL_AUTH_GROUP_seq START 3;
+CREATE SEQUENCE TBL_AUTH_GROUP_seq START 4;
-- ... and only two permissions
INSERT INTO TBL_AUTH_PERM (perm_id, perm_name) VALUES (1, 'Admin');
@@ -360,7 +360,7 @@
INSERT INTO TBL_OS VALUES (29,'Solaris',29,'/Mozilla.*\\(.*;.*; SunOS 5.*\\)/');
INSERT INTO TBL_OS VALUES (30,'SunOS',30,'/Mozilla.*\\(.*;.*; SunOS.*\\)/');
INSERT INTO TBL_OS VALUES (31,'other',31,'');
-CREATE SEQUENCE TBL_OS_seq START 31;
+CREATE SEQUENCE TBL_OS_seq START 32;
INSERT INTO TBL_RESOLUTION VALUES (1,'Fixed','Bug was eliminated',1);
INSERT INTO TBL_RESOLUTION VALUES (2,'Not a bug','It''s not a bug -- it''s a feature!',2);
@@ -368,7 +368,7 @@
INSERT INTO TBL_RESOLUTION VALUES (4,'Deferred','We''ll get around to it later',4);
INSERT INTO TBL_RESOLUTION VALUES (5,'Works for me','Can''t replicate the bug',5);
INSERT INTO TBL_RESOLUTION VALUES (6,'Duplicate','',6);
-CREATE SEQUENCE TBL_RESOLUTION_seq START 6;
+CREATE SEQUENCE TBL_RESOLUTION_seq START 7;
INSERT INTO TBL_SEVERITY VALUES (1,'Unassigned','Default bug creation',1,'#dadada');
INSERT INTO TBL_SEVERITY VALUES (2,'Idea','Ideas for further development',2,'#dad0d0');
@@ -377,7 +377,7 @@
INSERT INTO TBL_SEVERITY VALUES (5,'Content','Non-functional related bugs, such as text content',5,'#dababa');
INSERT INTO TBL_SEVERITY VALUES (6,'Significant','A bug affecting the intended performance of the product',6,'#dab0b0');
INSERT INTO TBL_SEVERITY VALUES (7,'Critical','A bug severe enough to prevent the release of the product',7,'#daaaaa');
-CREATE SEQUENCE TBL_SEVERITY_seq START 7;
+CREATE SEQUENCE TBL_SEVERITY_seq START 8;
INSERT INTO TBL_STATUS VALUES (1,'Unconfirmed','Reported but not confirmed',1);
INSERT INTO TBL_STATUS VALUES (2,'New','A new bug',2);
@@ -386,19 +386,19 @@
INSERT INTO TBL_STATUS VALUES (5,'Resolved','Set by engineer with a resolution',5);
INSERT INTO TBL_STATUS VALUES (6,'Verified','The resolution is confirmed by the reporter',6);
INSERT INTO TBL_STATUS VALUES (7,'Closed','The bug is officially squashed (QA)',7);
-CREATE SEQUENCE TBL_STATUS_seq START 7;
+CREATE SEQUENCE TBL_STATUS_seq START 8;
INSERT INTO TBL_DATABASE VALUES (1,'Oracle 8.1.7',1);
INSERT INTO TBL_DATABASE VALUES (2,'MySQL 3.23.49',2);
INSERT INTO TBL_DATABASE VALUES (3,'PostgreSQL 7.1.3',3);
-CREATE SEQUENCE TBL_DATABASE_seq START 3;
+CREATE SEQUENCE TBL_DATABASE_seq START 4;
INSERT INTO TBL_SITE VALUES (0,'All',1);
INSERT INTO TBL_SITE VALUES (1,'Production - location 1',2);
INSERT INTO TBL_SITE VALUES (2,'Production - location 2',3);
INSERT INTO TBL_SITE VALUES (3,'Test site - location 1',4);
INSERT INTO TBL_SITE VALUES (4,'Test site - location 2',5);
-CREATE SEQUENCE TBL_SITE_seq START 4;
+CREATE SEQUENCE TBL_SITE_seq START 5;
--
-- Indexes for table TBL_GROUP_PERM
|
|
From: Benjamin C. <bc...@us...> - 2002-11-05 17:51:43
|
Update of /cvsroot/phpbt/phpbt/languages
In directory usw-pr-cvs1:/tmp/cvs-serv8659/languages
Modified Files:
Tag: phpbt-0_9_0
en.php
Log Message:
Changed the charset
Index: en.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/en.php,v
retrieving revision 1.31.2.1
retrieving revision 1.31.2.2
diff -u -r1.31.2.1 -r1.31.2.2
--- en.php 22 Oct 2002 20:06:37 -0000 1.31.2.1
+++ en.php 5 Nov 2002 17:51:39 -0000 1.31.2.2
@@ -23,7 +23,7 @@
// $Id$
$STRING = array(
- 'lang_charset' => 'us-ascii',
+ 'lang_charset' => 'iso8859-1',
'nouser' => 'That user does not exist',
'dupeofself' => 'A bug can\'t be a duplicate of itself',
'nobug' => 'That bug does not exist',
|
|
From: Benjamin C. <bc...@us...> - 2002-11-05 17:50:44
|
Update of /cvsroot/phpbt/phpbt/languages In directory usw-pr-cvs1:/tmp/cvs-serv8217/languages Modified Files: en.php Log Message: Fixed bug #633224 - Accented characters getting hosed. Index: en.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/en.php,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- en.php 28 Oct 2002 22:06:00 -0000 1.35 +++ en.php 5 Nov 2002 17:50:40 -0000 1.36 @@ -23,7 +23,7 @@ // $Id$ $STRING = array( - 'lang_charset' => 'us-ascii', + 'lang_charset' => 'iso8859-1', 'nouser' => 'That user does not exist', 'dupeofself' => 'A bug can\'t be a duplicate of itself', 'nobug' => 'That bug does not exist', |
|
From: Benjamin C. <bc...@us...> - 2002-11-04 20:33:50
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv27871/templates/default/admin
Modified Files:
Tag: phpbt-0_9_0
wrap.html
Log Message:
Point to the correct directory for the print stylesheet.
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/wrap.html,v
retrieving revision 1.19.2.1
retrieving revision 1.19.2.2
diff -u -r1.19.2.1 -r1.19.2.2
--- wrap.html 4 Nov 2002 18:30:14 -0000 1.19.2.1
+++ wrap.html 4 Nov 2002 20:33:46 -0000 1.19.2.2
@@ -3,7 +3,7 @@
<META HTTP-EQUIV="Expires" CONTENT="-1">
<title>phpBugTracker Admin - {$page_title}</title>
<link rel="StyleSheet" href="../styles/{$STYLE}.css" type="text/css">
- <link rel="stylesheet" type"text/css" href="styles/print.css" media="print">
+ <link rel="stylesheet" type"text/css" href="../styles/print.css" media="print">
<META http-equiv="Content-Type" content="text/html; charset={$STRING.lang_charset}">
</head>
<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
|
|
From: Benjamin C. <bc...@us...> - 2002-11-04 20:25:08
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv24376/templates/default/admin
Modified Files:
wrap.html
Log Message:
Fixes bug #633457 - The print stylesheet was being referenced in the wrong directory.
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/wrap.html,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- wrap.html 4 Nov 2002 18:31:29 -0000 1.20
+++ wrap.html 4 Nov 2002 20:25:05 -0000 1.21
@@ -3,7 +3,7 @@
<META HTTP-EQUIV="Expires" CONTENT="-1">
<title>phpBugTracker Admin - {$page_title}</title>
<link rel="StyleSheet" href="../styles/{$STYLE}.css" type="text/css">
- <link rel="stylesheet" type"text/css" href="styles/print.css" media="print">
+ <link rel="stylesheet" type"text/css" href="../styles/print.css" media="print">
<META http-equiv="Content-Type" content="text/html; charset={$STRING.lang_charset}">
</head>
<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
|
|
From: Benjamin C. <bc...@us...> - 2002-11-04 18:31:33
|
Update of /cvsroot/phpbt/phpbt/templates/default/images In directory usw-pr-cvs1:/tmp/cvs-serv10684/templates/default/images Added Files: spacer.gif Log Message: Fixing the non-existant spacer.gif |
|
From: Benjamin C. <bc...@us...> - 2002-11-04 18:31:32
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv10684/templates/default
Modified Files:
wrap.html
Log Message:
Fixing the non-existant spacer.gif
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/wrap.html,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- wrap.html 22 Oct 2002 20:08:28 -0000 1.25
+++ wrap.html 4 Nov 2002 18:31:29 -0000 1.26
@@ -20,7 +20,7 @@
</td>
</tr>
<tr>
- <td bgcolor="#9999FF" height="4" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ <td bgcolor="#9999FF" height="4" colspan="2"><img src="{$template_path}/images/spacer.gif" height="1" width="1"></td>
</tr>
<tr>
<td bgcolor="#9999FF" colspan="2">
@@ -48,10 +48,10 @@
</td>
</tr>
<tr>
- <td bgcolor="#9999FF" height="4" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ <td bgcolor="#9999FF" height="4" colspan="2"><img src="{$template_path}/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>
+ <td bgcolor="#000000" height="1" colspan="2"><img src="{$template_path}/images/spacer.gif" height="1" width="1"></td>
</tr>
{if $smarty.server.SCRIPT_NAME|basename neq 'newaccount.php'}
<tr>
@@ -84,11 +84,11 @@
</td>
</tr>
<tr>
- <td bgcolor="#000000" height="1" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ <td bgcolor="#000000" height="1" colspan="2"><img src="{$template_path}/images/spacer.gif" height="1" width="1"></td>
</tr>
{/if}
<tr>
- <td bgcolor="#ffffff" height="20" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ <td bgcolor="#ffffff" height="20" colspan="2"><img src="{$template_path}/images/spacer.gif" height="1" width="1"></td>
</tr>
</table>
|
|
From: Benjamin C. <bc...@us...> - 2002-11-04 18:31:32
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv10684/templates/default/admin
Modified Files:
wrap.html
Log Message:
Fixing the non-existant spacer.gif
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/wrap.html,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- wrap.html 13 Sep 2002 19:11:29 -0000 1.19
+++ wrap.html 4 Nov 2002 18:31:29 -0000 1.20
@@ -20,7 +20,7 @@
</td>
</tr>
<tr>
- <td bgcolor="#9999FF" height="4" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ <td bgcolor="#9999FF" height="4" colspan="2"><img src="{$template_path}/../images/spacer.gif" height="1" width="1"></td>
</tr>
<tr>
<td bgcolor="#9999FF" colspan="2">
@@ -54,10 +54,10 @@
</td>
</tr>
<tr>
- <td bgcolor="#9999FF" height="4" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ <td bgcolor="#9999FF" height="4" colspan="2"><img src="{$template_path}/../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>
+ <td bgcolor="#000000" height="1" colspan="2"><img src="{$template_path}/../images/spacer.gif" height="1" width="1"></td>
</tr>
<tr>
<td colspan="2" height="20" class="bottomnav">
@@ -89,10 +89,10 @@
</td>
</tr>
<tr>
- <td bgcolor="#000000" height="1" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ <td bgcolor="#000000" height="1" colspan="2"><img src="{$template_path}/../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>
+ <td bgcolor="#ffffff" height="20" colspan="2"><img src="{$template_path}/../images/spacer.gif" height="1" width="1"></td>
</tr>
</table>
|
|
From: Benjamin C. <bc...@us...> - 2002-11-04 18:30:18
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv10145/templates/default
Modified Files:
Tag: phpbt-0_9_0
wrap.html
Log Message:
Fixing the non-existant spacer.gif
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/wrap.html,v
retrieving revision 1.24.2.1
retrieving revision 1.24.2.2
diff -u -r1.24.2.1 -r1.24.2.2
--- wrap.html 22 Oct 2002 20:06:37 -0000 1.24.2.1
+++ wrap.html 4 Nov 2002 18:30:15 -0000 1.24.2.2
@@ -20,7 +20,7 @@
</td>
</tr>
<tr>
- <td bgcolor="#9999FF" height="4" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ <td bgcolor="#9999FF" height="4" colspan="2"><img src="{$template_path}/images/spacer.gif" height="1" width="1"></td>
</tr>
<tr>
<td bgcolor="#9999FF" colspan="2">
@@ -48,10 +48,10 @@
</td>
</tr>
<tr>
- <td bgcolor="#9999FF" height="4" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ <td bgcolor="#9999FF" height="4" colspan="2"><img src="{$template_path}/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>
+ <td bgcolor="#000000" height="1" colspan="2"><img src="{$template_path}/images/spacer.gif" height="1" width="1"></td>
</tr>
{if $smarty.server.SCRIPT_NAME|basename neq 'newaccount.php'}
<tr>
@@ -84,11 +84,11 @@
</td>
</tr>
<tr>
- <td bgcolor="#000000" height="1" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ <td bgcolor="#000000" height="1" colspan="2"><img src="{$template_path}/images/spacer.gif" height="1" width="1"></td>
</tr>
{/if}
<tr>
- <td bgcolor="#ffffff" height="20" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ <td bgcolor="#ffffff" height="20" colspan="2"><img src="{$template_path}/images/spacer.gif" height="1" width="1"></td>
</tr>
</table>
|
|
From: Benjamin C. <bc...@us...> - 2002-11-04 18:30:18
|
Update of /cvsroot/phpbt/phpbt/templates/default/images
In directory usw-pr-cvs1:/tmp/cvs-serv10145/templates/default/images
Added Files:
Tag: phpbt-0_9_0
spacer.gif
Log Message:
Fixing the non-existant spacer.gif
--- NEW FILE: spacer.gif ---
GIF89a
|
|
From: Benjamin C. <bc...@us...> - 2002-11-04 18:30:18
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv10145/templates/default/admin
Modified Files:
Tag: phpbt-0_9_0
wrap.html
Log Message:
Fixing the non-existant spacer.gif
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/wrap.html,v
retrieving revision 1.19
retrieving revision 1.19.2.1
diff -u -r1.19 -r1.19.2.1
--- wrap.html 13 Sep 2002 19:11:29 -0000 1.19
+++ wrap.html 4 Nov 2002 18:30:14 -0000 1.19.2.1
@@ -20,7 +20,7 @@
</td>
</tr>
<tr>
- <td bgcolor="#9999FF" height="4" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ <td bgcolor="#9999FF" height="4" colspan="2"><img src="{$template_path}/../images/spacer.gif" height="1" width="1"></td>
</tr>
<tr>
<td bgcolor="#9999FF" colspan="2">
@@ -54,10 +54,10 @@
</td>
</tr>
<tr>
- <td bgcolor="#9999FF" height="4" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ <td bgcolor="#9999FF" height="4" colspan="2"><img src="{$template_path}/../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>
+ <td bgcolor="#000000" height="1" colspan="2"><img src="{$template_path}/../images/spacer.gif" height="1" width="1"></td>
</tr>
<tr>
<td colspan="2" height="20" class="bottomnav">
@@ -89,10 +89,10 @@
</td>
</tr>
<tr>
- <td bgcolor="#000000" height="1" colspan="2"><img src="images/spacer.gif" height="1" width="1"></td>
+ <td bgcolor="#000000" height="1" colspan="2"><img src="{$template_path}/../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>
+ <td bgcolor="#ffffff" height="20" colspan="2"><img src="{$template_path}/../images/spacer.gif" height="1" width="1"></td>
</tr>
</table>
|
|
From: Ben C. <php...@be...> - 2002-11-04 03:23:43
|
The reason to use the sequence tables in mysql comes down to using the database abstraction library. Though many of the database software packages support something like auto_increment (mysql), native sequence (postgres) and identity (mssql), not _all_ databases have a similar functionality. As a result, the authors of PEAR::DB decided to use sequences -- native ones, such as with postgres, or emulated via *_seq tables. Of course, just because it works, that doesn't mean it's the best solution, but it is a rather portable one. The time may come when I rework the database stuff so that all database access is tweaked to the strengths of the various database packages, but that time isn't right now. :) On Sat, Nov 02, 2002 at 12:25:15AM +0100, Patrick Mairif wrote: > Hi Ben, > > when copying all bugtracker data into a new database (because of release > switches) it was more than once confusing to me, why the bugtracker > itself tries to create new datasets with an id of 1. Now I found out, > that you use aditional *_seq tables to remember the id for the next dataset. > > Why? MySQL has a nice auto_increment feature, PostgreSQL has sequences > and I'm sure oracle has sth. similar! > > ...and hey, great work. I was surprised what happend in the last months! > > > > > ------------------------------------------------------- > This sf.net email is sponsored by: See the NEW Palm > Tungsten T handheld. Power & Color in a compact size! > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0001en > _______________________________________________ > phpbt-dev mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpbt-dev |
|
From: Patrick M. <mo...@su...> - 2002-11-01 23:25:22
|
Hi Ben, when copying all bugtracker data into a new database (because of release switches) it was more than once confusing to me, why the bugtracker itself tries to create new datasets with an id of 1. Now I found out, that you use aditional *_seq tables to remember the id for the next dataset. Why? MySQL has a nice auto_increment feature, PostgreSQL has sequences and I'm sure oracle has sth. similar! ...and hey, great work. I was surprised what happend in the last months! |