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-10-30 22:35:00
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv2556/templates/default/admin
Modified Files:
component-edit.html project-add.html project-edit.html
version-edit.html
Log Message:
Added client-side error checking
Index: component-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/component-edit.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- component-edit.html 16 Sep 2002 19:39:34 -0000 1.6
+++ component-edit.html 30 Oct 2002 22:34:57 -0000 1.7
@@ -1,7 +1,27 @@
+<script language="JavaScript">
+ var nameString = '{$STRING.givename}';
+ var descString = '{$STRING.givedesc}';
+
+ {literal}
+ function checkForm(frm) {
+ if (frm.component_name.value == '') {
+ alert(nameString);
+ frm.component_name.focus();
+ return false;
+ }
+ if (frm.component_desc.value == '') {
+ alert(descString);
+ frm.component_desc.focus();
+ return false;
+ }
+ return true;
+ }
+ {/literal}
+</script>
<b>{$page_title}</b>
<hr size="1">
{if $error}<div class="error">{$error}</div>{/if}
- <form action="{$smarty.server.PHP_SELF}" method="post">
+ <form action="{$smarty.server.PHP_SELF}" method="post" onSubmit="return checkForm(this)">
<table border="0">
<input type="hidden" name="do" value="component">
<input type="hidden" name="component_id" value="{$component_id}">
Index: project-add.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/project-add.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- project-add.html 16 Sep 2002 19:04:31 -0000 1.5
+++ project-add.html 30 Oct 2002 22:34:57 -0000 1.6
@@ -1,4 +1,42 @@
-<form action="project.php" method="post">
+<script language="JavaScript">
+<!--
+ var nameString = '{$STRING.givename}';
+ var descString = '{$STRING.givedesc}';
+ var versionString = '{$STRING.giveversion}';
+
+ {literal}
+ function checkForm(frm) {
+ if (frm.project_name.value == '') {
+ alert(nameString);
+ frm.project_name.focus();
+ return false;
+ }
+ if (frm.project_desc.value == '') {
+ alert(descString);
+ frm.project_desc.focus();
+ return false;
+ }
+ if (frm.version_name.value == '') {
+ alert(versionString);
+ frm.version_name.focus();
+ return false;
+ }
+ if (frm.component_name.value == '') {
+ alert(nameString);
+ frm.component_name.focus();
+ return false;
+ }
+ if (frm.component_desc.value == '') {
+ alert(descString);
+ frm.component_desc.focus();
+ return false;
+ }
+ return true;
+ }
+ {/literal}
+// -->
+</script>
+<form action="project.php" method="post" onSubmit="return checkForm(this)">
<input type="hidden" name="id" value="0">
<input type="hidden" name="do" value="project">
<table border="0">
Index: project-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/project-edit.html,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- project-edit.html 16 Sep 2002 19:04:31 -0000 1.11
+++ project-edit.html 30 Oct 2002 22:34:57 -0000 1.12
@@ -2,7 +2,23 @@
<!--
var me = '{$smarty.server.PHP_SELF}';
var projectId = '{$project_id}';
+ var nameString = '{$STRING.givename}';
+ var descString = '{$STRING.givedesc}';
+
{literal}
+ function checkForm(frm) {
+ if (frm.project_name.value == '') {
+ alert(nameString);
+ frm.project_name.focus();
+ return false;
+ }
+ if (frm.project_desc.value == '') {
+ alert(descString);
+ frm.project_desc.focus();
+ return false;
+ }
+ return true;
+ }
function popupComponent(id) {
window.open(me + '?op=edit_component&project_id='+projectId+'&use_js=1&id='+id, 'ewin', 'dependent=yes,width=450,height=300,scrollbars=1');
@@ -17,7 +33,7 @@
// -->
</script>
-<form action="{$smarty.server.PHP_SELF}" method="post">
+<form action="{$smarty.server.PHP_SELF}" method="post" onSubmit="return checkForm(this)">
<input type="hidden" name="id" value="{$project_id}">
<input type="hidden" name="do" value="project">
<table border="0" cellpadding="2" cellspacing="2" width="100%">
Index: version-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/version-edit.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- version-edit.html 16 Sep 2002 19:39:34 -0000 1.6
+++ version-edit.html 30 Oct 2002 22:34:57 -0000 1.7
@@ -1,7 +1,21 @@
+<script language="JavaScript">
+ var nameString = '{$STRING.giveversion}';
+
+ {literal}
+ function checkForm(frm) {
+ if (frm.version_name.value == '') {
+ alert(nameString);
+ frm.version_name.focus();
+ return false;
+ }
+ return true;
+ }
+ {/literal}
+</script>
<b>{$page_title}</b>
<hr size="1">
{if $error}<div class="error">{$error}</div>{/if}
- <form action="{$smarty.server.PHP_SELF}" method="post">
+ <form action="{$smarty.server.PHP_SELF}" method="post" onSubmit="return checkForm(this)">
<table border="0">
<input type="hidden" name="do" value="version">
<input type="hidden" name="version_id" value="{$version_id}">
|
|
From: Benjamin C. <bc...@us...> - 2002-10-29 14:08:58
|
Update of /cvsroot/phpbt/phpbt/languages
In directory usw-pr-cvs1:/tmp/cvs-serv7329/languages
Modified Files:
de.php
Log Message:
Updates from Mathias Leinmueller
Index: de.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/de.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- de.php 28 Oct 2002 22:06:00 -0000 1.19
+++ de.php 29 Oct 2002 14:08:53 -0000 1.20
@@ -49,7 +49,7 @@
'giveversion' => 'Bitte geben Sie eine Version ein',
'noversions' => 'Keine Version gefunden',
'nocomponents' => 'Keine Komponenten gefunden',
- 'nostatuses' => 'Keine Stati gefunden',
+ 'nostatuses' => 'Keine Status gefunden',
'noseverities' => 'Keine Schweregrade gefunden',
'givepassword' => 'Bitte geben Sie ein Passwort ein!',
'nousers' => 'Keinen Benutzer gefunden',
@@ -102,7 +102,7 @@
'Component' => 'Komponente',
'Status' => 'Status',
'Resolution' => 'Lösung',
- 'OpSys' => 'OpSys',
+ 'OpSys' => 'Betriebssystem',
'Priority' => 'Priorität',
'Severity' => 'Schweregrad',
'Database' => 'Datenbank',
@@ -149,8 +149,8 @@
'BugsReported' => 'Bugs reported by me',
'PersonalPage' => 'Personal Page',
'Logout' => 'Logout',
- 'EmailPassword' => 'Email Password',
- 'RememberMe' => 'Remember me',
+ 'EmailPassword' => 'Passwort per Email',
+ 'RememberMe' => 'Merke mich',
),
'BUGFORM' => array(
'Project' => 'Projekt',
@@ -214,7 +214,7 @@
'database' => 'Datenbank',
'os' => 'OS',
'chooseone' => 'Eines auswählen',
- 'suppressemail' => 'Suppress notification email'
+ 'suppressemail' => 'Benachrichtigungsemail unterdrücken'
),
'USER_PREF' => array(
'ReceiveNotifications' => 'Änderungen an Bugs per E-Mail erhalten',
@@ -258,7 +258,7 @@
'project' => 'Projekte',
'os' => 'Betriebssysteme',
'resolution' => 'Lösungen',
- 'status' => 'Stati',
+ 'status' => 'Status',
'severity' => 'Schweregrad',
'user' => 'Benutzer',
'home' => 'Home',
|
|
From: Benjamin C. <bc...@us...> - 2002-10-28 22:06:08
|
Update of /cvsroot/phpbt/phpbt/languages
In directory usw-pr-cvs1:/tmp/cvs-serv2442/languages
Modified Files:
cz.php cz_iso-8859-2.php de.php en.php fr.php pt-br.php
Log Message:
Use lower case for bugdisplay strings. Lower case should be used in all array keys, but this is a start. :)
Index: cz.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/cz.php,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- cz.php 22 Oct 2002 21:13:20 -0000 1.23
+++ cz.php 28 Oct 2002 22:05:58 -0000 1.24
@@ -162,54 +162,54 @@
'Submit' => 'Pøidat'
),
'BUGDISPLAY' => array(
- 'Reporter' => 'Reportér',
- 'ReturnTo' => 'Návrat na',
- 'BugList' => 'seznam bugù',
- 'Project' => 'Projekt',
- 'Created' => 'Vytvoøen',
- 'Version' => 'Verze',
- 'ClosedInVersion' => 'Uzavøeno ve verzi',
- 'ToBeClosedInVersion' => 'K uzavøení ve verzi',
- 'AssignedTo' => 'Pøiøazeno',
- 'AssignedToNobody' => 'Nikdo',
- 'BugDependency' => 'Závislosti',
- 'Blocks' => 'Blocks',
- 'AddDependency' => 'Pøidat závislost',
- 'RemoveDependency' => 'Odebrat závislost',
- 'Summary' => 'Shrnutí',
- 'Status' => 'Status',
- 'Description' => 'Popis',
- 'Severity' => 'Dùleitost',
- 'Priority' => 'Priorita',
- 'Component' => 'Komponenta',
- 'Resolution' => 'Rozhodnutí',
- 'ResolutionNone' => 'Zatím není',
- 'AddCC' => 'Pøidat kopii',
- 'RemoveSelectedCC' => 'Odebrat vybranou kopii',
- 'AdditionalComments' => 'Dalí komentáøe',
- 'Attachments' => 'Pøílohy',
- 'CreateAttachment' => 'Vytvoøit pøílohu',
- 'SureDeleteAttachment' => 'Opravdu chcete odtranit tuto pøílohu?',
- 'Name' => 'Název',
- 'Size' => 'Velikost',
- 'Type' => 'Typ',
- 'Created' => 'Vytvoøeno',
- 'VoteForThisBug' => 'Hlasovat pro tento bug',
- 'ViewVotes' => 'Zobrazit volby',
- 'ForThisBug' => 'pro tento bug',
- 'ViewBugActivity' => 'Zobrazit aktivitu',
- 'PrintableView' => 'Tisknutelné zobrazení',
- 'NoAttachments' => 'Nemá pøílohy',
- 'Comments' => 'Komentáøe',
- 'PostedBy' => 'Zaslal',
- 'Date' => 'Dne',
- 'DateOn' => ' ', // This is correct
- 'Submit' => 'Odeslat zmíny',
- 'Site' => 'Prostøedí',
- 'Database' => 'Databáze',
- 'OS' => 'Operaèní systém',
- 'ChooseOne' => 'Vyberte',
- 'SuppressEmail' => 'Suppress notification email'
+ 'reporter' => 'Reportér',
+ 'returnto' => 'Návrat na',
+ 'buglist' => 'seznam bugù',
+ 'project' => 'Projekt',
+ 'created' => 'Vytvoøen',
+ 'version' => 'Verze',
+ 'closedinversion' => 'Uzavøeno ve verzi',
+ 'tobeclosedinversion' => 'K uzavøení ve verzi',
+ 'assignedto' => 'Pøiøazeno',
+ 'assignedtonobody' => 'Nikdo',
+ 'bugdependency' => 'Závislosti',
+ 'blocks' => 'Blocks',
+ 'adddependency' => 'Pøidat závislost',
+ 'removedependency' => 'Odebrat závislost',
+ 'summary' => 'Shrnutí',
+ 'status' => 'Status',
+ 'description' => 'Popis',
+ 'severity' => 'Dùleitost',
+ 'priority' => 'Priorita',
+ 'component' => 'Komponenta',
+ 'resolution' => 'Rozhodnutí',
+ 'resolutionnone' => 'Zatím není',
+ 'addcc' => 'Pøidat kopii',
+ 'removeselectedcc' => 'Odebrat vybranou kopii',
+ 'additionalcomments' => 'Dalí komentáøe',
+ 'attachments' => 'Pøílohy',
+ 'createattachment' => 'Vytvoøit pøílohu',
+ 'suredeleteattachment' => 'Opravdu chcete odtranit tuto pøílohu?',
+ 'name' => 'Název',
+ 'size' => 'Velikost',
+ 'type' => 'Typ',
+ 'created' => 'Vytvoøeno',
+ 'voteforthisbug' => 'Hlasovat pro tento bug',
+ 'viewvotes' => 'Zobrazit volby',
+ 'forthisbug' => 'pro tento bug',
+ 'viewbugactivity' => 'Zobrazit aktivitu',
+ 'printableview' => 'Tisknutelné zobrazení',
+ 'noattachments' => 'Nemá pøílohy',
+ 'comments' => 'Komentáøe',
+ 'postedby' => 'Zaslal',
+ 'date' => 'Dne',
+ 'dateon' => ' ', // This is correct
+ 'submit' => 'Odeslat zmíny',
+ 'site' => 'Prostøedí',
+ 'database' => 'Databáze',
+ 'os' => 'Operaèní systém',
+ 'chooseone' => 'Vyberte',
+ 'suppressemail' => 'Suppress notification email'
),
'USER_PREF' => array(
'ReceiveNotifications' => 'Zasílat upozornìní o zmìnách bugù',
Index: cz_iso-8859-2.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/cz_iso-8859-2.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- cz_iso-8859-2.php 22 Oct 2002 21:13:22 -0000 1.20
+++ cz_iso-8859-2.php 28 Oct 2002 22:05:59 -0000 1.21
@@ -162,54 +162,54 @@
'Submit' => 'Pøidat'
),
'BUGDISPLAY' => array(
- 'Reporter' => 'Reportér',
- 'ReturnTo' => 'Návrat na',
- 'BugList' => 'seznam bugù',
- 'Project' => 'Projekt',
- 'Created' => 'Vytvoøen',
- 'Version' => 'Verze',
- 'ClosedInVersion' => 'Uzavøeno ve verzi',
- 'ToBeClosedInVersion' => 'K uzavøení ve verzi',
- 'AssignedTo' => 'Pøiøazeno',
- 'AssignedToNobody' => 'Nikdo',
- 'BugDependency' => 'Závislosti',
- 'Blocks' => 'Blocks',
- 'AddDependency' => 'Pøidat závislost',
- 'RemoveDependency' => 'Odebrat závislost',
- 'Summary' => 'Shrnutí',
- 'Status' => 'Status',
- 'Description' => 'Popis',
- 'Severity' => 'Dùle¾itost',
- 'Priority' => 'Priorita',
- 'Component' => 'Komponenta',
- 'Resolution' => 'Rozhodnutí',
- 'ResolutionNone' => 'Zatím není',
- 'AddCC' => 'Pøidat kopii',
- 'RemoveSelectedCC' => 'Odebrat vybranou kopii',
- 'AdditionalComments' => 'Dal¹í komentáøe',
- 'Attachments' => 'Pøílohy',
- 'CreateAttachment' => 'Vytvoøit pøílohu',
- 'SureDeleteAttachment' => 'Opravdu chcete odtranit tuto pøílohu?',
- 'Name' => 'Název',
- 'Size' => 'Velikost',
- 'Type' => 'Typ',
- 'Created' => 'Vytvoøeno',
- 'VoteForThisBug' => 'Hlasovat pro tento bug',
- 'ViewVotes' => 'Zobrazit volby',
- 'ForThisBug' => 'pro tento bug',
- 'ViewBugActivity' => 'Zobrazit aktivitu',
- 'PrintableView' => 'Tisknutelné zobrazení',
- 'NoAttachments' => 'Nemá pøílohy',
- 'Comments' => 'Komentáøe',
- 'PostedBy' => 'Zaslal',
- 'Date' => 'Dne',
- 'DateOn' => ' ', // This is correct
- 'Submit' => 'Odeslat zmíny',
- 'Site' => 'Prostøedí',
- 'Database' => 'Databáze',
- 'OS' => 'Operaèní systém',
- 'ChooseOne' => 'Vyberte',
- 'SuppressEmail' => 'Suppress notification email'
+ 'reporter' => 'Reportér',
+ 'returnto' => 'Návrat na',
+ 'buglist' => 'seznam bugù',
+ 'project' => 'Projekt',
+ 'created' => 'Vytvoøen',
+ 'version' => 'Verze',
+ 'closedinversion' => 'Uzavøeno ve verzi',
+ 'tobeclosedinversion' => 'K uzavøení ve verzi',
+ 'assignedto' => 'Pøiøazeno',
+ 'assignedtonobody' => 'Nikdo',
+ 'bugdependency' => 'Závislosti',
+ 'blocks' => 'Blocks',
+ 'adddependency' => 'Pøidat závislost',
+ 'removedependency' => 'Odebrat závislost',
+ 'summary' => 'Shrnutí',
+ 'status' => 'Status',
+ 'description' => 'Popis',
+ 'severity' => 'Dùle¾itost',
+ 'priority' => 'Priorita',
+ 'component' => 'Komponenta',
+ 'resolution' => 'Rozhodnutí',
+ 'resolutionnone' => 'Zatím není',
+ 'addcc' => 'Pøidat kopii',
+ 'removeselectedcc' => 'Odebrat vybranou kopii',
+ 'additionalcomments' => 'Dal¹í komentáøe',
+ 'attachments' => 'Pøílohy',
+ 'createattachment' => 'Vytvoøit pøílohu',
+ 'suredeleteattachment' => 'Opravdu chcete odtranit tuto pøílohu?',
+ 'name' => 'Název',
+ 'size' => 'Velikost',
+ 'type' => 'Typ',
+ 'created' => 'Vytvoøeno',
+ 'voteforthisbug' => 'Hlasovat pro tento bug',
+ 'viewvotes' => 'Zobrazit volby',
+ 'forthisbug' => 'pro tento bug',
+ 'viewbugactivity' => 'Zobrazit aktivitu',
+ 'printableview' => 'Tisknutelné zobrazení',
+ 'noattachments' => 'Nemá pøílohy',
+ 'comments' => 'Komentáøe',
+ 'postedby' => 'Zaslal',
+ 'date' => 'Dne',
+ 'dateon' => ' ', // This is correct
+ 'submit' => 'Odeslat zmíny',
+ 'site' => 'Prostøedí',
+ 'database' => 'Databáze',
+ 'os' => 'Operaèní systém',
+ 'chooseone' => 'Vyberte',
+ 'suppressemail' => 'Suppress notification email'
),
'USER_PREF' => array(
'ReceiveNotifications' => 'Zasílat upozornìní o zmìnách bugù',
Index: de.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/de.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- de.php 22 Oct 2002 21:13:22 -0000 1.18
+++ de.php 28 Oct 2002 22:06:00 -0000 1.19
@@ -167,54 +167,54 @@
'Submit' => 'Absenden'
),
'BUGDISPLAY' => array(
- 'Reporter' => 'Berichterstatter',
- 'ReturnTo' => 'Zurück zu',
- 'BugList' => 'Bugliste',
- 'Project' => 'Projekt',
- 'Created' => 'Erzeugt',
- 'Version' => 'Version',
- 'ClosedInVersion' => 'Abgeschlossen in Version',
- 'ToBeClosedInVersion' => 'Abzuschließen in Version',
- 'AssignedTo' => 'Zugewiesen an',
- 'AssignedToNobody' => 'Niemand',
- 'BugDependency' => 'Abhängigkeiten',
- 'Blocks' => 'Blocks',
- 'AddDependency' => 'Abhängigkeit hinzufügen',
- 'RemoveDependency' => 'Abhängigkeit entfernen',
- 'Summary' => 'Zusammenfassung',
- 'Status' => 'Status',
- 'Description' => 'Beschreibung',
- 'Severity' => 'Schweregrad',
- 'Priority' => 'Priorität',
- 'Component' => 'Komponente',
- 'Resolution' => 'Lösung',
- 'ResolutionNone' => 'Keine',
- 'AddCC' => 'CC hinzufügen',
- 'RemoveSelectedCC' => 'Gewählte CCs entfernen',
- 'AdditionalComments' => 'Zusätzliche Kommentare',
- 'Attachments' => 'Anhang',
- 'CreateAttachment' => 'Anhang erzeugen',
- 'SureDeleteAttachment' => 'Sind sie sicher, dass sie diesen Anhang löschen wollen?',
- 'Name' => 'Name',
- 'Size' => 'Größe',
- 'Type' => 'Typ',
- 'Created' => 'Erzeugt',
- 'VoteForThisBug' => 'Für diesen Bug stimmen',
- 'ViewVotes' => 'Stimmen anzeigen',
- 'ForThisBug' => 'für diesen Fehler',
- 'ViewBugActivity' => 'Bug-Aktivität anzeigen',
- 'PrintableView' => 'Druckansicht',
- 'NoAttachments' => 'Keine Anhänge',
- 'Comments' => 'Kommentare',
- 'PostedBy' => 'Eingetragen durch',
- 'Date' => 'Datum',
- 'DateOn' => 'Am',
- 'Submit' => 'Absenden',
- 'Site' => 'Berichtet an Standort',
- 'Database' => 'Datenbank',
- 'OS' => 'OS',
- 'ChooseOne' => 'Eines auswählen',
- 'SuppressEmail' => 'Suppress notification email'
+ 'reporter' => 'Berichterstatter',
+ 'returnto' => 'Zurück zu',
+ 'buglist' => 'Bugliste',
+ 'project' => 'Projekt',
+ 'created' => 'Erzeugt',
+ 'version' => 'Version',
+ 'closedinversion' => 'Abgeschlossen in Version',
+ 'tobeclosedinversion' => 'Abzuschließen in Version',
+ 'assignedto' => 'Zugewiesen an',
+ 'assignedtonobody' => 'Niemand',
+ 'bugdependency' => 'Abhängigkeiten',
+ 'blocks' => 'Blocks',
+ 'adddependency' => 'Abhängigkeit hinzufügen',
+ 'removedependency' => 'Abhängigkeit entfernen',
+ 'summary' => 'Zusammenfassung',
+ 'status' => 'Status',
+ 'description' => 'Beschreibung',
+ 'severity' => 'Schweregrad',
+ 'priority' => 'Priorität',
+ 'component' => 'Komponente',
+ 'resolution' => 'Lösung',
+ 'resolutionnone' => 'Keine',
+ 'addcc' => 'CC hinzufügen',
+ 'removeselectedcc' => 'Gewählte CCs entfernen',
+ 'additionalcomments' => 'Zusätzliche Kommentare',
+ 'attachments' => 'Anhang',
+ 'createattachment' => 'Anhang erzeugen',
+ 'suredeleteattachment' => 'Sind sie sicher, dass sie diesen Anhang löschen wollen?',
+ 'name' => 'Name',
+ 'size' => 'Größe',
+ 'type' => 'Typ',
+ 'created' => 'Erzeugt',
+ 'voteforthisbug' => 'Für diesen Bug stimmen',
+ 'viewvotes' => 'Stimmen anzeigen',
+ 'forthisbug' => 'für diesen Fehler',
+ 'viewbugactivity' => 'Bug-Aktivität anzeigen',
+ 'printableview' => 'Druckansicht',
+ 'noattachments' => 'Keine Anhänge',
+ 'comments' => 'Kommentare',
+ 'postedby' => 'Eingetragen durch',
+ 'date' => 'Datum',
+ 'dateon' => 'Am',
+ 'submit' => 'Absenden',
+ 'site' => 'Berichtet an Standort',
+ 'database' => 'Datenbank',
+ 'os' => 'OS',
+ 'chooseone' => 'Eines auswählen',
+ 'suppressemail' => 'Suppress notification email'
),
'USER_PREF' => array(
'ReceiveNotifications' => 'Änderungen an Bugs per E-Mail erhalten',
Index: en.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/en.php,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- en.php 22 Oct 2002 21:13:22 -0000 1.34
+++ en.php 28 Oct 2002 22:06:00 -0000 1.35
@@ -162,54 +162,54 @@
'Submit' => 'Submit'
),
'BUGDISPLAY' => array(
- 'Reporter' => 'Reporter',
- 'ReturnTo' => 'Return to',
- 'BugList' => 'bug list',
- 'Project' => 'Project',
- 'Created' => 'Created',
- 'Version' => 'Version',
- 'ClosedInVersion' => 'Closed in Version',
- 'ToBeClosedInVersion' => 'To be Closed in Version',
- 'AssignedTo' => 'Assigned To',
- 'AssignedToNobody' => 'Nobody',
- 'BugDependency' => 'Dependencies',
- 'Blocks' => 'Blocks',
- 'AddDependency' => 'Add Dependency',
- 'RemoveDependency' => 'Remove Dependency',
- 'Summary' => 'Summary',
- 'Status' => 'Status',
- 'Description' => 'Description',
- 'Severity' => 'Severity',
- 'Priority' => 'Priority',
- 'Component' => 'Component',
- 'Resolution' => 'Resolution',
- 'ResolutionNone' => 'None',
- 'AddCC' => 'Add CC',
- 'RemoveSelectedCC' => 'Remove selected CCs',
- 'AdditionalComments' => 'Additional Comments',
- 'Attachments' => 'Attachments',
- 'CreateAttachment' => 'Create Attachment',
- 'SureDeleteAttachment' => 'Are you sure you want to delete this attachment?',
- 'Name' => 'Name',
- 'Size' => 'Size',
- 'Type' => 'Type',
- 'Created' => 'Created',
- 'VoteForThisBug' => 'Vote for this bug',
- 'ViewVotes' => 'View votes',
- 'ForThisBug' => 'for this bug',
- 'ViewBugActivity' => 'View bug activity',
- 'PrintableView' => 'Printable View',
- 'NoAttachments' => 'No attachments',
- 'Comments' => 'Comments',
- 'PostedBy' => 'Posted By',
- 'Date' => 'Date',
- 'DateOn' => 'On',
- 'Submit' => 'Submit',
- 'Site' => 'Reported on Site',
- 'Database' => 'Database',
- 'OS' => 'OS',
- 'ChooseOne' => 'Choose One',
- 'SuppressEmail' => 'Suppress notification email'
+ 'reporter' => 'Reporter',
+ 'returnto' => 'Return to',
+ 'buglist' => 'bug list',
+ 'project' => 'Project',
+ 'created' => 'Created',
+ 'version' => 'Version',
+ 'closedinversion' => 'Closed in Version',
+ 'tobeclosedinversion' => 'To be Closed in Version',
+ 'assignedto' => 'Assigned To',
+ 'assignedtonobody' => 'Nobody',
+ 'bugdependency' => 'Dependencies',
+ 'blocks' => 'Blocks',
+ 'adddependency' => 'Add Dependency',
+ 'removedependency' => 'Remove Dependency',
+ 'summary' => 'Summary',
+ 'status' => 'Status',
+ 'description' => 'Description',
+ 'severity' => 'Severity',
+ 'priority' => 'Priority',
+ 'component' => 'Component',
+ 'resolution' => 'Resolution',
+ 'resolutionnone' => 'None',
+ 'addcc' => 'Add CC',
+ 'removeselectedcc' => 'Remove selected CCs',
+ 'additionalcomments' => 'Additional Comments',
+ 'attachments' => 'Attachments',
+ 'createattachment' => 'Create Attachment',
+ 'suredeleteattachment' => 'Are you sure you want to delete this attachment?',
+ 'name' => 'Name',
+ 'size' => 'Size',
+ 'type' => 'Type',
+ 'created' => 'Created',
+ 'voteforthisbug' => 'Vote for this bug',
+ 'viewvotes' => 'View votes',
+ 'forthisbug' => 'for this bug',
+ 'viewbugactivity' => 'View bug activity',
+ 'printableview' => 'Printable View',
+ 'noattachments' => 'No attachments',
+ 'comments' => 'Comments',
+ 'postedby' => 'Posted By',
+ 'date' => 'Date',
+ 'dateon' => 'On',
+ 'submit' => 'Submit',
+ 'site' => 'Reported on Site',
+ 'database' => 'Database',
+ 'os' => 'OS',
+ 'chooseone' => 'Choose One',
+ 'suppressemail' => 'Suppress notification email'
),
'USER_PREF' => array(
'ReceiveNotifications' => 'Receive notifications of bug changes via email',
Index: fr.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/fr.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- fr.php 22 Oct 2002 21:13:22 -0000 1.15
+++ fr.php 28 Oct 2002 22:06:01 -0000 1.16
@@ -166,54 +166,54 @@
'Submit' => 'Soumettre'
),
'BUGDISPLAY' => array(
- 'Reporter' => 'Reporteur',
- 'ReturnTo' => 'Retourner à',
- 'BugList' => 'Liste de bogue',
- 'Project' => 'Projet',
- 'Created' => 'Créé',
- 'Version' => 'Version',
- 'ClosedInVersion' => 'Clos en version',
- 'ToBeClosedInVersion' => 'A clore en version',
- 'AssignedTo' => 'Assigné à',
- 'AssignedToNobody' => 'Personne',
- 'BugDependency' => 'Dependances',
- 'Blocks' => 'Blocks',
- 'AddDependency' => 'Ajouter une dépendance',
- 'RemoveDependency' => 'Supprimer la dépendance',
- 'Summary' => 'Résumé',
- 'Status' => 'Etat',
- 'Description' => 'Description',
- 'Severity' => 'Criticité',
- 'Priority' => 'Priorité',
- 'Component' => 'Composant',
- 'Resolution' => 'Resolution',
- 'ResolutionNone' => 'Aucun',
- 'AddCC' => 'Ajouter un contact',
- 'RemoveSelectedCC' => 'Retirer le contact selectionné',
- 'AdditionalComments' => 'Commentaires complémentaires',
- 'Attachments' => 'Pièces jointes',
- 'CreateAttachment' => 'Ajouter une pièce jointe',
- 'SureDeleteAttachment' => 'Etes vous certain de vouloir supprimer cette pièce jointe?',
- 'Name' => 'Nom',
- 'Size' => 'Taille',
- 'Type' => 'Type',
- 'Created' => 'Créé',
- 'VoteForThisBug' => 'Votez pour ce bogue',
- 'ViewVotes' => 'Voir les votes',
- 'ForThisBug' => 'Votez pour ce bug',
- 'ViewBugActivity' => 'Voir l\'activité de ce bogue',
- 'PrintableView' => 'Vue imprimable',
- 'NoAttachments' => 'Pas de pièce jointe',
- 'Comments' => 'Commentaires',
- 'PostedBy' => 'Posté par',
- 'Date' => 'Date',
- 'DateOn' => 'Sur',
- 'Submit' => 'Soumettre',
- 'Site' => 'Découvert sur le site',
- 'Database' => 'Base de données',
- 'OS' => 'Système d\'exploitation',
- 'ChooseOne' => 'Choisissez',
- 'SuppressEmail' => 'Suppress notification email'
+ 'reporter' => 'Reporteur',
+ 'returnto' => 'Retourner à',
+ 'buglist' => 'Liste de bogue',
+ 'project' => 'Projet',
+ 'created' => 'Créé',
+ 'version' => 'Version',
+ 'closedinversion' => 'Clos en version',
+ 'tobeclosedinversion' => 'A clore en version',
+ 'assignedto' => 'Assigné à',
+ 'assignedtonobody' => 'Personne',
+ 'bugdependency' => 'Dependances',
+ 'blocks' => 'Blocks',
+ 'adddependency' => 'Ajouter une dépendance',
+ 'removedependency' => 'Supprimer la dépendance',
+ 'summary' => 'Résumé',
+ 'status' => 'Etat',
+ 'description' => 'Description',
+ 'severity' => 'Criticité',
+ 'priority' => 'Priorité',
+ 'component' => 'Composant',
+ 'resolution' => 'Resolution',
+ 'resolutionnone' => 'Aucun',
+ 'addcc' => 'Ajouter un contact',
+ 'removeselectedcc' => 'Retirer le contact selectionné',
+ 'additionalcomments' => 'Commentaires complémentaires',
+ 'attachments' => 'Pièces jointes',
+ 'createattachment' => 'Ajouter une pièce jointe',
+ 'suredeleteattachment' => 'Etes vous certain de vouloir supprimer cette pièce jointe?',
+ 'name' => 'Nom',
+ 'size' => 'Taille',
+ 'type' => 'Type',
+ 'created' => 'Créé',
+ 'voteforthisbug' => 'Votez pour ce bogue',
+ 'viewvotes' => 'Voir les votes',
+ 'forthisbug' => 'Votez pour ce bug',
+ 'viewbugactivity' => 'Voir l\'activité de ce bogue',
+ 'printableview' => 'Vue imprimable',
+ 'noattachments' => 'Pas de pièce jointe',
+ 'comments' => 'Commentaires',
+ 'postedby' => 'Posté par',
+ 'date' => 'Date',
+ 'dateon' => 'Sur',
+ 'submit' => 'Soumettre',
+ 'site' => 'Découvert sur le site',
+ 'database' => 'Base de données',
+ 'os' => 'Système d\'exploitation',
+ 'chooseone' => 'Choisissez',
+ 'suppressemail' => 'Suppress notification email'
),
'USER_PREF' => array(
'ReceiveNotifications' => 'Recevoir les mises à jour de bogue par email',
Index: pt-br.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/pt-br.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- pt-br.php 22 Oct 2002 21:13:23 -0000 1.19
+++ pt-br.php 28 Oct 2002 22:06:01 -0000 1.20
@@ -165,54 +165,54 @@
'Submit' => 'Submit'
),
'BUGDISPLAY' => array(
- 'Reporter' => 'Reporter',
- 'ReturnTo' => 'Return to',
- 'BugList' => 'bug list',
- 'Project' => 'Project',
- 'Created' => 'Created',
- 'Version' => 'Version',
- 'ClosedInVersion' => 'Closed in Version',
- 'ToBeClosedInVersion' => 'To be Closed in Version',
- 'AssignedTo' => 'Assigned To',
- 'AssignedToNobody' => 'Nobody',
- 'BugDependency' => 'Dependencies',
- 'Blocks' => 'Blocks',
- 'AddDependency' => 'Add Dependency',
- 'RemoveDependency' => 'Remove Dependency',
- 'Summary' => 'Summary',
- 'Status' => 'Status',
- 'Description' => 'Description',
- 'Severity' => 'Severity',
- 'Priority' => 'Priority',
- 'Component' => 'Component',
- 'Resolution' => 'Resolution',
- 'ResolutionNone' => 'None',
- 'AddCC' => 'Add CC',
- 'RemoveSelectedCC' => 'Remove selected CCs',
- 'AdditionalComments' => 'Additional Comments',
- 'Attachments' => 'Attachments',
- 'CreateAttachment' => 'Create Attachment',
- 'SureDeleteAttachment' => 'Are you sure you want to delete this attachment?',
- 'Name' => 'Name',
- 'Size' => 'Size',
- 'Type' => 'Type',
- 'Created' => 'Created',
- 'VoteForThisBug' => 'Vote for this bug',
- 'ViewVotes' => 'View votes',
- 'ForThisBug' => 'for this bug',
- 'ViewBugActivity' => 'View bug activity',
- 'PrintableView' => 'Printable View',
- 'NoAttachments' => 'No attachments',
- 'Comments' => 'Comments',
- 'PostedBy' => 'Posted By',
- 'Date' => 'Date',
- 'DateOn' => 'On',
- 'Submit' => 'Submit',
- 'Site' => 'Reported on Site',
- 'Database' => 'Database',
- 'OS' => 'OS',
- 'ChooseOne' => 'Choose One',
- 'SuppressEmail' => 'Suppress notification email'
+ 'reporter' => 'Reporter',
+ 'returnto' => 'Return to',
+ 'buglist' => 'bug list',
+ 'project' => 'Project',
+ 'created' => 'Created',
+ 'version' => 'Version',
+ 'closedinversion' => 'Closed in Version',
+ 'tobeclosedinversion' => 'To be Closed in Version',
+ 'assignedto' => 'Assigned To',
+ 'assignedtonobody' => 'Nobody',
+ 'bugdependency' => 'Dependencies',
+ 'blocks' => 'Blocks',
+ 'adddependency' => 'Add Dependency',
+ 'removedependency' => 'Remove Dependency',
+ 'summary' => 'Summary',
+ 'status' => 'Status',
+ 'description' => 'Description',
+ 'severity' => 'Severity',
+ 'priority' => 'Priority',
+ 'component' => 'Component',
+ 'resolution' => 'Resolution',
+ 'resolutionnone' => 'None',
+ 'addcc' => 'Add CC',
+ 'removeselectedcc' => 'Remove selected CCs',
+ 'additionalcomments' => 'Additional Comments',
+ 'attachments' => 'Attachments',
+ 'createattachment' => 'Create Attachment',
+ 'suredeleteattachment' => 'Are you sure you want to delete this attachment?',
+ 'name' => 'Name',
+ 'size' => 'Size',
+ 'type' => 'Type',
+ 'created' => 'Created',
+ 'voteforthisbug' => 'Vote for this bug',
+ 'viewvotes' => 'View votes',
+ 'forthisbug' => 'for this bug',
+ 'viewbugactivity' => 'View bug activity',
+ 'printableview' => 'Printable View',
+ 'noattachments' => 'No attachments',
+ 'comments' => 'Comments',
+ 'postedby' => 'Posted By',
+ 'date' => 'Date',
+ 'dateon' => 'On',
+ 'submit' => 'Submit',
+ 'site' => 'Reported on Site',
+ 'database' => 'Database',
+ 'os' => 'OS',
+ 'chooseone' => 'Choose One',
+ 'suppressemail' => 'Suppress notification email'
),
'USER_PREF' => array(
'ReceiveNotifications' => 'Receive notifications of bug changes via email',
|
|
From: Benjamin C. <bc...@us...> - 2002-10-28 22:06:06
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv2442/templates/default
Modified Files:
bugdisplay-printable.html bugdisplay.html
Log Message:
Use lower case for bugdisplay strings. Lower case should be used in all array keys, but this is a start. :)
Index: bugdisplay-printable.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugdisplay-printable.html,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- bugdisplay-printable.html 22 Oct 2002 20:34:48 -0000 1.10
+++ bugdisplay-printable.html 28 Oct 2002 22:06:02 -0000 1.11
@@ -49,7 +49,7 @@
<br>
Bug Dependencies: {$bug_dependencies}
<br>
-{$STRING.BUGDISPLAY.Blocks}: {$rev_bug_dependencies}
+{$STRING.BUGDISPLAY.blocks}: {$rev_bug_dependencies}
<br>
<br>
Comments:
Index: bugdisplay.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugdisplay.html,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- bugdisplay.html 22 Oct 2002 21:13:24 -0000 1.43
+++ bugdisplay.html 28 Oct 2002 22:06:02 -0000 1.44
@@ -68,7 +68,7 @@
<input type="hidden" name="pos" value="{$smarty.request.pos}">
<table border="0" width="100%">
<tr>
- <td>Bug <b>#{$bug_id}</b> - {$title|stripslashes} - {$STRING.BUGDISPLAY.ReturnTo} <a href="query.php">{$STRING.BUGDISPLAY.BugList}</a></td>
+ <td>Bug <b>#{$bug_id}</b> - {$title|stripslashes} - {$STRING.BUGDISPLAY.returnto} <a href="query.php">{$STRING.BUGDISPLAY.buglist}</a></td>
<td align="right">
{if $prevbug}
<b><a href="bug.php?op=show&bugid={$prevbug}&pos={$prevpos}">{$STRING.previous_bug}</a></b>
@@ -87,76 +87,76 @@
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr>
- <td>{$STRING.BUGDISPLAY.Reporter}:</td>
+ <td>{$STRING.BUGDISPLAY.reporter}:</td>
<td><b>{$reporter|maskemail}</b></td>
- <td>{$STRING.BUGDISPLAY.Created}:</td>
+ <td>{$STRING.BUGDISPLAY.created}:</td>
<td><b>{$created_date|date:DATE_FORMAT}</b></td>
</tr><tr>
- <td>{$STRING.BUGDISPLAY.Project}:</td>
+ <td>{$STRING.BUGDISPLAY.project}:</td>
<td><select name="project_id" onChange="updateMenus(this.form)" {$disabled}>{build_select box=project selected=$project_id}</select></td>
- <td>{$STRING.BUGDISPLAY.Priority}:</td>
+ <td>{$STRING.BUGDISPLAY.priority}:</td>
<td><select name="priority" {$disabled}>{build_select box=priority selected=$priority}</select></td>
</tr><tr>
- <td>{$STRING.BUGDISPLAY.Component}:</td>
+ <td>{$STRING.BUGDISPLAY.component}:</td>
<td><select name="component_id" {$disabled}>{build_select box=component selected=$component_id project=$project_id}</select></td>
- <td>{$STRING.BUGDISPLAY.Severity}:</td>
+ <td>{$STRING.BUGDISPLAY.severity}:</td>
<td><select name="severity_id" {$disabled}>{build_select box=severity selected=$severity_id}</select></td>
</tr><tr>
- <td>{$STRING.BUGDISPLAY.Version}:</td>
+ <td>{$STRING.BUGDISPLAY.version}:</td>
<td><select name="version_id" {$disabled}>{build_select box=version selected=$version_id project=$project_id}</select></td>
- <td>{$STRING.BUGDISPLAY.OS}:</td>
+ <td>{$STRING.BUGDISPLAY.os}:</td>
<td><select name="os_id" {$disabled}>{build_select box=os selected=$os_id}</select></td>
</tr><tr>
- <td>{$STRING.BUGDISPLAY.ToBeClosedInVersion}</td>
+ <td>{$STRING.BUGDISPLAY.tobeclosedinversion}</td>
<td><select name="to_be_closed_in_version_id" {$disabled}>
- <option value="0">{$STRING.BUGDISPLAY.ChooseOne}</option>
+ <option value="0">{$STRING.BUGDISPLAY.chooseone}</option>
{build_select box=version selected=$to_be_closed_in_version_id project=$project_id}
</select></td>
- <td>{$STRING.BUGDISPLAY.Database}:</td>
+ <td>{$STRING.BUGDISPLAY.database}:</td>
<td><select name="database_id" {$disabled}>{build_select box=database selected=$database_id}</select></td>
</tr><tr>
- <td>{$STRING.BUGDISPLAY.ClosedInVersion}</td>
+ <td>{$STRING.BUGDISPLAY.closedinversion}</td>
<td><select name="closed_in_version_id" {$disabled}>
- <option value="0">{$STRING.BUGDISPLAY.ChooseOne}</option>
+ <option value="0">{$STRING.BUGDISPLAY.chooseone}</option>
{build_select box=version selected=$closed_in_version_id project=$project_id}
</select></td>
- <td>{$STRING.BUGDISPLAY.Site}</td>
+ <td>{$STRING.BUGDISPLAY.site}</td>
<td><select name="site_id" {$disabled}>{build_select box=site selected=$site_id}</select></td>
</tr><tr>
- <td>{$STRING.BUGDISPLAY.Summary}:</td>
+ <td>{$STRING.BUGDISPLAY.summary}:</td>
<td><input type="text" size="30" maxlength="100" name="title" value="{$title|stripslashes|htmlspecialchars}" {$disabled}></td>
- <td>{$STRING.BUGDISPLAY.Status}:</td>
+ <td>{$STRING.BUGDISPLAY.status}:</td>
<td><select name="status_id" {$disabled}>{build_select box=status selected=$status_id}</select></td>
</tr><tr>
<td>{if $url}<a href="{$url}">URL</a>{else}URL{/if}:</td>
<td><input type="text" size="30" maxlength="255" name="url" value="{$url}" {$disabled}></td>
- <td>{$STRING.BUGDISPLAY.Resolution}:</td>
- <td><select name="resolution_id" {$disabled}><option value="0">{$STRING.BUGDISPLAY.ResolutionNone}</option>{build_select box=resolution selected=$resolution_id}</select></td>
+ <td>{$STRING.BUGDISPLAY.resolution}:</td>
+ <td><select name="resolution_id" {$disabled}><option value="0">{$STRING.BUGDISPLAY.resolutionnone}</option>{build_select box=resolution selected=$resolution_id}</select></td>
</tr><tr>
- <td>{$STRING.BUGDISPLAY.AssignedTo}:</td>
- <td><select name="assigned_to" {$disabled}><option value="0">{$STRING.BUGDISPLAY.AssignedToNobody}</option>{build_select box=owner selected=$assigned_to}</select></td>
- <td>{$STRING.BUGDISPLAY.AddCC}:</td>
+ <td>{$STRING.BUGDISPLAY.assignedto}:</td>
+ <td><select name="assigned_to" {$disabled}><option value="0">{$STRING.BUGDISPLAY.assignedtonobody}</option>{build_select box=owner selected=$assigned_to}</select></td>
+ <td>{$STRING.BUGDISPLAY.addcc}:</td>
<td><input type="text" name="add_cc" {$disabled}></td>
</tr><tr>
<td colspan="2" valign="top">
{if !empty($error.add_dep)}<div class="error">{$error.add_dep}</div>{/if}
- {$STRING.BUGDISPLAY.BugDependency}: {$bug_dependencies}<br>
- {$STRING.BUGDISPLAY.Blocks}: {$rev_bug_dependencies}<br>
- {$STRING.BUGDISPLAY.AddDependency}: <input type="text" name="add_dependency" size="5" {$disabled}><br>
- {$STRING.BUGDISPLAY.RemoveDependency}: <input type="text" name="del_dependency" size="5" {$disabled}><br><br></td>
+ {$STRING.BUGDISPLAY.bugdependency}: {$bug_dependencies}<br>
+ {$STRING.BUGDISPLAY.blocks}: {$rev_bug_dependencies}<br>
+ {$STRING.BUGDISPLAY.adddependency}: <input type="text" name="add_dependency" size="5" {$disabled}><br>
+ {$STRING.BUGDISPLAY.removedependency}: <input type="text" name="del_dependency" size="5" {$disabled}><br><br></td>
<td colspan="2" valign="top">
- {$STRING.BUGDISPLAY.RemoveSelectedCC}:<br>
+ {$STRING.BUGDISPLAY.removeselectedcc}:<br>
<select name="remove_cc[]" size="5" style="width: 15em" multiple {$disabled}>{build_select box=bug_cc selected=$bug_id}</select></td>
</tr>
</table>
<table border="0" cellpadding="2" cellspacing="0" width="100%">
<tr>
- <td valign="top">{$STRING.BUGDISPLAY.AdditionalComments}:<br><br>
+ <td valign="top">{$STRING.BUGDISPLAY.additionalcomments}:<br><br>
<textarea name="comments" rows="6" cols="55" wrap="virtual" {$disabled}>{$smarty.post.comments}</textarea>
<br><br>
<div align="right">
{if $smarty.session.uid}
- {$STRING.BUGDISPLAY.SuppressEmail} <input type="checkbox" name="suppress_email" value="1">
+ {$STRING.BUGDISPLAY.suppressemail} <input type="checkbox" name="suppress_email" value="1">
<input type="submit" value="Submit">
{else}
{$STRING.logintomodify}
@@ -165,15 +165,15 @@
</tr><tr>
<td><table border="0" cellpadding="0" width="100%">
<tr>
- <td colspan="2">{$STRING.BUGDISPLAY.Attachments}:</td>
- <td colspan="3" align="right"><a href="attachment.php?bugid={$bug_id}" onClick="return popupAtt({$bug_id})">{$STRING.BUGDISPLAY.CreateAttachment}</a></td>
+ <td colspan="2">{$STRING.BUGDISPLAY.attachments}:</td>
+ <td colspan="3" align="right"><a href="attachment.php?bugid={$bug_id}" onClick="return popupAtt({$bug_id})">{$STRING.BUGDISPLAY.createattachment}</a></td>
</tr><tr>
<td colspan="5" height="2" bgcolor="#ffffff"><spacer type="block" height="2" width="2"></td>
</tr><tr>
- <td bgcolor="#cccccc" align="center"><b>{$STRING.BUGDISPLAY.Name}</b></td>
- <td width="60" bgcolor="#cccccc" align="center"><b>{$STRING.BUGDISPLAY.Size}</b></a></td>
- <td width="150" bgcolor="#cccccc" align="center"><b>{$STRING.BUGDISPLAY.Type}</b></a></td>
- <td width="80" bgcolor="#cccccc" align="center"><b>{$STRING.BUGDISPLAY.Created}</b></a></td>
+ <td bgcolor="#cccccc" align="center"><b>{$STRING.BUGDISPLAY.name}</b></td>
+ <td width="60" bgcolor="#cccccc" align="center"><b>{$STRING.BUGDISPLAY.size}</b></a></td>
+ <td width="150" bgcolor="#cccccc" align="center"><b>{$STRING.BUGDISPLAY.type}</b></a></td>
+ <td width="80" bgcolor="#cccccc" align="center"><b>{$STRING.BUGDISPLAY.created}</b></a></td>
<td width="80" bgcolor="#cccccc" align="center"> </a></td>
</tr><tr>
<td bgcolor="#000000" height="1"><spacer type="block" height="1" width="1"></td>
@@ -197,13 +197,13 @@
<td align="center">{$attachments[attachment].created_date|date:DATE_FORMAT}</td>
<td align="center"><a href='attachment.php?attachid={$attachments[attachment].attachment_id}'>View</a>
{if isset($perm) and $perm->have_perm('Administrator')}
- | <a href='attachment.php?del={$attachments[attachment].attachment_id}' onClick="return confirm('{$STRING.BUGDISPLAY.SureDeleteAttachment}');">{$STRING.delete}</a>
+ | <a href='attachment.php?del={$attachments[attachment].attachment_id}' onClick="return confirm('{$STRING.BUGDISPLAY.suredeleteattachment}');">{$STRING.delete}</a>
{/if}
</td>
</tr>
{sectionelse}
<tr>
- <td colspan="5" align="center">{$STRING.BUGDISPLAY.NoAttachments}</td>
+ <td colspan="5" align="center">{$STRING.BUGDISPLAY.noattachments}</td>
</tr>
{/section}
<tr>
@@ -221,25 +221,25 @@
</form>
<div align="center" class="bugdisplaylinks">
{if !empty($error.vote)}<div class="error">{$error.vote}</div>{/if}
- <b><a href="{$smarty.server.PHP_SELF}?op=vote&bugid={$bug_id}" onClick="if ({$already_voted}) {literal}{ alert ('{/literal}{$STRING.already_voted}{literal}'); return false; }{/literal}">{$STRING.BUGDISPLAY.VoteForThisBug}</a></b> |
- <b><a href="{$smarty.server.PHP_SELF}?op=viewvotes&bugid={$bug_id}">{$STRING.BUGDISPLAY.ViewVotes} ({$num_votes}) {$STRING.BUGDISPLAY.ForThisBug}</a></b> |
- <b><a href="{$smarty.server.PHP_SELF}?op=history&bugid={$bug_id}">{$STRING.BUGDISPLAY.ViewBugActivity}</a></b> |
- <b><a href="{$smarty.server.PHP_SELF}?op=print&bugid={$bug_id}">{$STRING.BUGDISPLAY.PrintableView}</a></b>
+ <b><a href="{$smarty.server.PHP_SELF}?op=vote&bugid={$bug_id}" onClick="if ({$already_voted}) {literal}{ alert ('{/literal}{$STRING.already_voted}{literal}'); return false; }{/literal}">{$STRING.BUGDISPLAY.voteforthisbug}</a></b> |
+ <b><a href="{$smarty.server.PHP_SELF}?op=viewvotes&bugid={$bug_id}">{$STRING.BUGDISPLAY.viewvotes} ({$num_votes}) {$STRING.BUGDISPLAY.forthisbug}</a></b> |
+ <b><a href="{$smarty.server.PHP_SELF}?op=history&bugid={$bug_id}">{$STRING.BUGDISPLAY.viewbugactivity}</a></b> |
+ <b><a href="{$smarty.server.PHP_SELF}?op=print&bugid={$bug_id}">{$STRING.BUGDISPLAY.printableview}</a></b>
</div>
<br><br>
<table border="0" cellpadding="2" cellspacing="0" width="100%">
<tr>
- <td>{$STRING.BUGDISPLAY.Comments}:</td>
+ <td>{$STRING.BUGDISPLAY.comments}:</td>
</tr><tr class="alt">
- <td>{$STRING.BUGDISPLAY.PostedBy}: {$reporter|maskemail} <br>
- {$STRING.BUGDISPLAY.Date}: {$created_date|date:TIME_FORMAT} {$STRING.BUGDISPLAY.DateOn} {$created_date|date:DATE_FORMAT}</td>
+ <td>{$STRING.BUGDISPLAY.postedby}: {$reporter|maskemail} <br>
+ {$STRING.BUGDISPLAY.date}: {$created_date|date:TIME_FORMAT} {$STRING.BUGDISPLAY.dateon} {$created_date|date:DATE_FORMAT}</td>
</tr><tr>
<td>{$description|stripslashes|format_comments|nl2br} <br><br></td>
</tr>
{section name=comment loop=$comments}
<tr class="alt">
- <td>{$STRING.BUGDISPLAY.PostedBy}: {$comments[comment].login|maskemail} <br>
- {$STRING.BUGDISPLAY.Date}: {$comments[comment].created_date|date:TIME_FORMAT} {$STRING.BUGDISPLAY.On} {$comments[comment].created_date|date:DATE_FORMAT}</td>
+ <td>{$STRING.BUGDISPLAY.postedby}: {$comments[comment].login|maskemail} <br>
+ {$STRING.BUGDISPLAY.date}: {$comments[comment].created_date|date:TIME_FORMAT} {$STRING.BUGDISPLAY.on} {$comments[comment].created_date|date:DATE_FORMAT}</td>
</tr><tr>
<td>{$comments[comment].comment_text|stripslashes|format_comments|nl2br} <br><br></td>
</tr>
|
|
From: Benjamin C. <bc...@us...> - 2002-10-28 22:03:30
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv989a
Modified Files:
attachment.php bug.php
Log Message:
Use translated strings for bug history.
Index: attachment.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/attachment.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- attachment.php 18 May 2002 02:59:32 -0000 1.19
+++ attachment.php 28 Oct 2002 22:03:21 -0000 1.20
@@ -10,12 +10,12 @@
// 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.
@@ -26,7 +26,7 @@
function del_attachment($attachid) {
global $db, $HTTP_SERVER_VARS;
-
+
if (list($filename, $mimetype) = grab_attachment($attachid)) {
$db->query("delete from ".TBL_ATTACHMENT." where attachment_id = $attachid");
unlink($filename);
@@ -36,7 +36,7 @@
function grab_attachment($attachid) {
global $db, $STRING;
-
+
if (!is_numeric($attachid)) {
show_text($STRING['bad_attachment'], true);
return false;
@@ -48,7 +48,7 @@
show_text($STRING['bad_attachment'], true);
return false;
}
- $filename = join('/',array(ATTACHMENT_PATH,
+ $filename = join('/',array(ATTACHMENT_PATH,
$ainfo['project_id'], "{$ainfo['bug_id']}-{$ainfo['file_name']}"));
if (!is_readable($filename)) {
show_text($STRING['bad_attachment'], true);
@@ -59,8 +59,8 @@
function add_attachment($bugid, $description) {
global $db, $HTTP_POST_FILES, $now, $u, $STRING, $t, $_pv;
-
- if (!isset($HTTP_POST_FILES['attachment']) ||
+
+ if (!isset($HTTP_POST_FILES['attachment']) ||
$HTTP_POST_FILES['attachment']['tmp_name'] == 'none') {
show_attachment_form($bugid, $STRING['give_attachment']);
return;
@@ -72,7 +72,7 @@
show_attachment_form($bugid, $STRING['attachment_too_large']);
return;
}
-
+
$projectid = $db->getOne("select project_id from ".TBL_BUG." where bug_id = $bugid");
if (!$projectid) {
show_text($STRING['nobug'], true);
@@ -89,7 +89,7 @@
return;
}
}
-
+
$filepath = ATTACHMENT_PATH;
$tmpfilename = $HTTP_POST_FILES['attachment']['tmp_name'];
$filename = "$bugid-{$HTTP_POST_FILES['attachment']['name']}";
@@ -118,9 +118,9 @@
$db->query("insert into ".TBL_ATTACHMENT." (attachment_id, bug_id, file_name, ".
"description, file_size, mime_type, created_by, created_date) values (".
join(', ', array($db->nextId(TBL_ATTACHMENT), $bugid,
- $db->quote($HTTP_POST_FILES['attachment']['name']),
- $db->quote(stripslashes($description)),
- $HTTP_POST_FILES['attachment']['size'],
+ $db->quote($HTTP_POST_FILES['attachment']['name']),
+ $db->quote(stripslashes($description)),
+ $HTTP_POST_FILES['attachment']['size'],
$db->quote($HTTP_POST_FILES['attachment']['type']), $u, $now)).")");
if ($_pv['use_js']) {
@@ -132,29 +132,29 @@
function show_attachment_form($bugid, $error = '') {
global $db, $t, $STRING;
-
- if (!is_numeric($bugid)) {
+
+ if (!is_numeric($bugid)) {
show_text($STRING['nobug'], true);
return;
}
-
+
$bugexists = $db->getOne("select count(*) from ".TBL_BUG." where bug_id = $bugid");
- if (!$bugexists) {
+ if (!$bugexists) {
show_text($STRING['nobug'], true);
return;
}
-
+
$t->assign(array(
'error' => $error,
'bugid' => $bugid,
- 'description' => isset($description)
+ 'description' => isset($description)
? htmlspecialchars(stripslashes($description)) : '',
- 'max_size' => ini_get('upload_max_filesize') < ATTACHMENT_MAX_SIZE
+ 'max_size' => ini_get('upload_max_filesize') < ATTACHMENT_MAX_SIZE
? number_format(ini_get('upload_max_filesize'))
: number_format(ATTACHMENT_MAX_SIZE)
));
$t->wrap('bugattachmentform.html', 'addattachment');
-}
+}
if (isset($_gv['del'])) {
if (!$perm->have_perm('Administrator')) {
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -r1.124 -r1.125
--- bug.php 28 Oct 2002 21:43:41 -0000 1.124
+++ bug.php 28 Oct 2002 22:03:23 -0000 1.125
@@ -172,7 +172,7 @@
$db->query('insert into '.TBL_BUG_HISTORY.
' (bug_id, changed_field, old_value, new_value, created_by, created_date)'.
- " values (". join(', ', array($buginfo['bug_id'], $db->quote($field),
+ " values (". join(', ', array($buginfo['bug_id'], $db->quote($STRING['BUGDISPLAY'][$field]),
$db->quote(stripslashes($oldvalue)),
$db->quote(stripslashes($newvalue)), $u, $now)).")");
$t->assign(array(
@@ -188,8 +188,8 @@
}
// Handle versions other than version
- $versions = array ('to_be_closed_in_version' => 'ToBeClosedInVersion',
- 'closed_in_version' => 'ClosedInVersion');
+ $versions = array ('to_be_closed_in_version' => 'tobeclosedinversion',
+ 'closed_in_version' => 'closedinversion');
foreach($versions as $field => $field_name) {
if (isset($buginfo[$field.'_id'])) {
@@ -233,7 +233,7 @@
$db->query('insert into '.TBL_BUG_HISTORY.
' (bug_id, changed_field, old_value, new_value, created_by, created_date)'.
" values (". join(', ', array($buginfo['bug_id'],
- $db->quote($STRING['BUGDISPLAY']['AssignedTo']),
+ $db->quote($STRING['BUGDISPLAY']['assignedto']),
$db->quote($oldassignedto), $db->quote($assignedto), $u, $now)).")");
} else {
$assignedtostat = ' ';
|
|
From: Benjamin C. <bc...@us...> - 2002-10-28 21:43:45
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv24093
Modified Files:
bug.php
Log Message:
Starting to use translated strings for activity log.
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- bug.php 28 Oct 2002 21:39:54 -0000 1.123
+++ bug.php 28 Oct 2002 21:43:41 -0000 1.124
@@ -188,8 +188,8 @@
}
// Handle versions other than version
- $versions = array ('to_be_closed_in_version' => 'to be closed in version',
- 'closed_in_version' => 'closed in version');
+ $versions = array ('to_be_closed_in_version' => 'ToBeClosedInVersion',
+ 'closed_in_version' => 'ClosedInVersion');
foreach($versions as $field => $field_name) {
if (isset($buginfo[$field.'_id'])) {
@@ -205,7 +205,7 @@
$db->query('insert into '.TBL_BUG_HISTORY.
' (bug_id, changed_field, old_value, new_value, created_by, created_date)'.
- " values (". join(', ', array($buginfo['bug_id'], $db->quote($field_name),
+ " values (". join(', ', array($buginfo['bug_id'], $db->quote($STRING['BUGDISPLAY'][$field_name]),
$db->quote(stripslashes($oldvalue)),
$db->quote(stripslashes($newvalue)), $u, $now)).")");
$t->assign(array(
|
|
From: Benjamin C. <bc...@us...> - 2002-10-28 21:39:57
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv22346
Modified Files:
bug.php
Log Message:
Track changes to the bug owner.
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- bug.php 22 Oct 2002 21:13:16 -0000 1.122
+++ bug.php 28 Oct 2002 21:39:54 -0000 1.123
@@ -220,6 +220,25 @@
}
}
+ // See if the assignment has changed -- grab the email for notifications either way
+ list($assignedto, $emailassignedto) = $db->getRow('select email, email_notices from '.
+ TBL_AUTH_USER." u, ".TBL_USER_PREF.' p where u.user_id = '.
+ (!empty($cf['assigned_to']) ? $cf['assigned_to'] : $buginfo['assigned_to']).
+ " and u.user_id = p.user_id", DB_FETCHMODE_ORDERED);
+
+ if (!empty($cf['assigned_to'])) {
+ $assignedtostat = '!';
+ $oldassignedto = $db->getOne('select email from '.
+ TBL_AUTH_USER.' u where u.user_id = '.$buginfo['assigned_to']);
+ $db->query('insert into '.TBL_BUG_HISTORY.
+ ' (bug_id, changed_field, old_value, new_value, created_by, created_date)'.
+ " values (". join(', ', array($buginfo['bug_id'],
+ $db->quote($STRING['BUGDISPLAY']['AssignedTo']),
+ $db->quote($oldassignedto), $db->quote($assignedto), $u, $now)).")");
+ } else {
+ $assignedtostat = ' ';
+ }
+
if (!empty($_pv['suppress_email'])) return; // Don't send email if silent update requested.
// Reporter never changes
@@ -227,11 +246,6 @@
" u, ".TBL_USER_PREF." p where u.user_id = {$buginfo['created_by']} ".
"and u.user_id = p.user_id and email_notices = 1");
$reporterstat = ' ';
- $assignedto = $db->getOne('select email from '.TBL_AUTH_USER." u, ".
- TBL_USER_PREF.' p where u.user_id = '.
- (!empty($cf['assigned_to']) ? $cf['assigned_to'] : $buginfo['assigned_to']).
- " and u.user_id = p.user_id and email_notices = 1");
- $assignedtostat = !empty($cf['assigned_to']) ? '!' : ' ';
// If there are new comments grab the comments immediately before the latest
if ($comments or $newbug) {
@@ -281,7 +295,7 @@
$maillist[] = $reporter;
}
if ($userid != (!empty($cf['assigned_to']) ? $cf['assigned_to'] : $buginfo['assigned_to'])
- and !empty($assignedto)) {
+ and !empty($assignedto) and $emailassignedto) {
$maillist[] = $assignedto;
}
|
|
From: Benjamin C. <bc...@us...> - 2002-10-28 20:55:32
|
Update of /cvsroot/phpbt/phpbt In directory usw-pr-cvs1:/tmp/cvs-serv31244 Modified Files: CHANGELOG Log Message: Starting on features for 1.0 :) Index: CHANGELOG =================================================================== RCS file: /cvsroot/phpbt/phpbt/CHANGELOG,v retrieving revision 1.60 retrieving revision 1.61 diff -u -r1.60 -r1.61 --- CHANGELOG 2 Oct 2002 18:45:49 -0000 1.60 +++ CHANGELOG 28 Oct 2002 20:55:28 -0000 1.61 @@ -1,4 +1,8 @@ --- 0.9.0 -- +-- 1.0 -- +: Added display of the bug ids a bug blocks. +: Allow users to suppress the update email when changing a bug. + +-- 0.9.0 -- 25 Oct 2002 : Replaced the mail function with one that encodes (i18n support). : Added four additional fields for tracking bug information: Database type and version, Environment, Closed Version, To-be-closed Version. |
|
From: Benjamin C. <bc...@us...> - 2002-10-22 21:13:53
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv19128
Modified Files:
bug.php
Log Message:
Allow users to suppress the update email when changing a bug.
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- bug.php 22 Oct 2002 20:34:48 -0000 1.121
+++ bug.php 22 Oct 2002 21:13:16 -0000 1.122
@@ -119,7 +119,7 @@
///
/// Send the email about changes to the bug and log the changes in the DB
function do_changedfields($userid, &$buginfo, $cf = array(), $comments = '') {
- global $db, $t, $u, $select, $now, $STRING, $QUERY;
+ global $db, $t, $u, $select, $now, $STRING, $QUERY, $_pv;
// It's a new bug if the changedfields array is empty and there are no comments
$newbug = (!count($cf) and !$comments);
@@ -220,6 +220,8 @@
}
}
+ if (!empty($_pv['suppress_email'])) return; // Don't send email if silent update requested.
+
// Reporter never changes
$reporter = $db->getOne('select email from '.TBL_AUTH_USER.
" u, ".TBL_USER_PREF." p where u.user_id = {$buginfo['created_by']} ".
@@ -291,21 +293,21 @@
// Later add a watcher (such as QA person) check here
if (count($maillist)) {
if ($toemail = delimit_list(', ',$maillist)) {
- $t->assign(array(
- 'bugid' => $buginfo['bug_id'],
- 'bugurl' => INSTALL_URL."/bug.php?op=show&bugid={$buginfo['bug_id']}",
- 'priority' => $select['priority'][(!empty($cf['priority']) ? $cf['priority'] : $buginfo['priority'])],
- 'priority_stat' => !empty($cf['priority']) ? '!' : ' ',
- 'reporter' => $reporter,
- 'reporter_stat' => $reporterstat,
- 'assignedto' => $assignedto,
- 'assignedto_stat' => $assignedtostat
- ));
-
- qp_mail($toemail,"[Bug {$buginfo['bug_id']}] ".($newbug ? 'New' : 'Changed').' - '.
- stripslashes((!empty($cf['title']) ? $cf['title'] : $buginfo['title'])),
- $t->fetch($template),
- sprintf("From: %s\nReply-To: %s\nErrors-To: %s", ADMIN_EMAIL, ADMIN_EMAIL, ADMIN_EMAIL));
+ $t->assign(array(
+ 'bugid' => $buginfo['bug_id'],
+ 'bugurl' => INSTALL_URL."/bug.php?op=show&bugid={$buginfo['bug_id']}",
+ 'priority' => $select['priority'][(!empty($cf['priority']) ? $cf['priority'] : $buginfo['priority'])],
+ 'priority_stat' => !empty($cf['priority']) ? '!' : ' ',
+ 'reporter' => $reporter,
+ 'reporter_stat' => $reporterstat,
+ 'assignedto' => $assignedto,
+ 'assignedto_stat' => $assignedtostat
+ ));
+
+ qp_mail($toemail,"[Bug {$buginfo['bug_id']}] ".($newbug ? 'New' : 'Changed').' - '.
+ stripslashes((!empty($cf['title']) ? $cf['title'] : $buginfo['title'])),
+ $t->fetch($template),
+ sprintf("From: %s\nReply-To: %s\nErrors-To: %s", ADMIN_EMAIL, ADMIN_EMAIL, ADMIN_EMAIL));
}
}
}
|
|
From: Benjamin C. <bc...@us...> - 2002-10-22 21:13:27
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv19128/templates/default
Modified Files:
bugdisplay.html
Log Message:
Allow users to suppress the update email when changing a bug.
Index: bugdisplay.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugdisplay.html,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- bugdisplay.html 22 Oct 2002 20:34:48 -0000 1.42
+++ bugdisplay.html 22 Oct 2002 21:13:24 -0000 1.43
@@ -156,6 +156,7 @@
<br><br>
<div align="right">
{if $smarty.session.uid}
+ {$STRING.BUGDISPLAY.SuppressEmail} <input type="checkbox" name="suppress_email" value="1">
<input type="submit" value="Submit">
{else}
{$STRING.logintomodify}
|
|
From: Benjamin C. <bc...@us...> - 2002-10-22 21:13:27
|
Update of /cvsroot/phpbt/phpbt/languages
In directory usw-pr-cvs1:/tmp/cvs-serv19128/languages
Modified Files:
cz.php cz_iso-8859-2.php de.php en.php fr.php pt-br.php
Log Message:
Allow users to suppress the update email when changing a bug.
Index: cz.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/cz.php,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- cz.php 22 Oct 2002 20:34:48 -0000 1.22
+++ cz.php 22 Oct 2002 21:13:20 -0000 1.23
@@ -208,7 +208,8 @@
'Site' => 'Prostøedí',
'Database' => 'Databáze',
'OS' => 'Operaèní systém',
- 'ChooseOne' => 'Vyberte'
+ 'ChooseOne' => 'Vyberte',
+ 'SuppressEmail' => 'Suppress notification email'
),
'USER_PREF' => array(
'ReceiveNotifications' => 'Zasílat upozornìní o zmìnách bugù',
Index: cz_iso-8859-2.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/cz_iso-8859-2.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- cz_iso-8859-2.php 22 Oct 2002 20:34:48 -0000 1.19
+++ cz_iso-8859-2.php 22 Oct 2002 21:13:22 -0000 1.20
@@ -208,7 +208,8 @@
'Site' => 'Prostøedí',
'Database' => 'Databáze',
'OS' => 'Operaèní systém',
- 'ChooseOne' => 'Vyberte'
+ 'ChooseOne' => 'Vyberte',
+ 'SuppressEmail' => 'Suppress notification email'
),
'USER_PREF' => array(
'ReceiveNotifications' => 'Zasílat upozornìní o zmìnách bugù',
Index: de.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/de.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- de.php 22 Oct 2002 20:34:48 -0000 1.17
+++ de.php 22 Oct 2002 21:13:22 -0000 1.18
@@ -213,7 +213,8 @@
'Site' => 'Berichtet an Standort',
'Database' => 'Datenbank',
'OS' => 'OS',
- 'ChooseOne' => 'Eines auswählen'
+ 'ChooseOne' => 'Eines auswählen',
+ 'SuppressEmail' => 'Suppress notification email'
),
'USER_PREF' => array(
'ReceiveNotifications' => 'Änderungen an Bugs per E-Mail erhalten',
Index: en.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/en.php,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- en.php 22 Oct 2002 20:34:48 -0000 1.33
+++ en.php 22 Oct 2002 21:13:22 -0000 1.34
@@ -208,7 +208,8 @@
'Site' => 'Reported on Site',
'Database' => 'Database',
'OS' => 'OS',
- 'ChooseOne' => 'Choose One'
+ 'ChooseOne' => 'Choose One',
+ 'SuppressEmail' => 'Suppress notification email'
),
'USER_PREF' => array(
'ReceiveNotifications' => 'Receive notifications of bug changes via email',
Index: fr.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/fr.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- fr.php 22 Oct 2002 20:34:48 -0000 1.14
+++ fr.php 22 Oct 2002 21:13:22 -0000 1.15
@@ -212,7 +212,8 @@
'Site' => 'Découvert sur le site',
'Database' => 'Base de données',
'OS' => 'Système d\'exploitation',
- 'ChooseOne' => 'Choisissez'
+ 'ChooseOne' => 'Choisissez',
+ 'SuppressEmail' => 'Suppress notification email'
),
'USER_PREF' => array(
'ReceiveNotifications' => 'Recevoir les mises à jour de bogue par email',
Index: pt-br.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/pt-br.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- pt-br.php 22 Oct 2002 20:34:48 -0000 1.18
+++ pt-br.php 22 Oct 2002 21:13:23 -0000 1.19
@@ -211,7 +211,8 @@
'Site' => 'Reported on Site',
'Database' => 'Database',
'OS' => 'OS',
- 'ChooseOne' => 'Choose One'
+ 'ChooseOne' => 'Choose One',
+ 'SuppressEmail' => 'Suppress notification email'
),
'USER_PREF' => array(
'ReceiveNotifications' => 'Receive notifications of bug changes via email',
|
|
From: Benjamin C. <bc...@us...> - 2002-10-22 20:34:51
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv24282/templates/default
Modified Files:
bugdisplay-printable.html bugdisplay.html
Log Message:
Added display of the bug ids a bug blocks.
Index: bugdisplay-printable.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugdisplay-printable.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- bugdisplay-printable.html 13 Sep 2002 19:11:29 -0000 1.9
+++ bugdisplay-printable.html 22 Oct 2002 20:34:48 -0000 1.10
@@ -49,6 +49,8 @@
<br>
Bug Dependencies: {$bug_dependencies}
<br>
+{$STRING.BUGDISPLAY.Blocks}: {$rev_bug_dependencies}
+<br>
<br>
Comments:
<hr size="1">
Index: bugdisplay.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugdisplay.html,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- bugdisplay.html 25 Sep 2002 23:53:03 -0000 1.41
+++ bugdisplay.html 22 Oct 2002 20:34:48 -0000 1.42
@@ -141,6 +141,7 @@
<td colspan="2" valign="top">
{if !empty($error.add_dep)}<div class="error">{$error.add_dep}</div>{/if}
{$STRING.BUGDISPLAY.BugDependency}: {$bug_dependencies}<br>
+ {$STRING.BUGDISPLAY.Blocks}: {$rev_bug_dependencies}<br>
{$STRING.BUGDISPLAY.AddDependency}: <input type="text" name="add_dependency" size="5" {$disabled}><br>
{$STRING.BUGDISPLAY.RemoveDependency}: <input type="text" name="del_dependency" size="5" {$disabled}><br><br></td>
<td colspan="2" valign="top">
|
|
From: Benjamin C. <bc...@us...> - 2002-10-22 20:34:51
|
Update of /cvsroot/phpbt/phpbt/languages
In directory usw-pr-cvs1:/tmp/cvs-serv24282/languages
Modified Files:
cz.php cz_iso-8859-2.php de.php en.php fr.php pt-br.php
Log Message:
Added display of the bug ids a bug blocks.
Index: cz.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/cz.php,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- cz.php 22 Oct 2002 20:08:27 -0000 1.21
+++ cz.php 22 Oct 2002 20:34:48 -0000 1.22
@@ -173,6 +173,7 @@
'AssignedTo' => 'Pøiøazeno',
'AssignedToNobody' => 'Nikdo',
'BugDependency' => 'Závislosti',
+ 'Blocks' => 'Blocks',
'AddDependency' => 'Pøidat závislost',
'RemoveDependency' => 'Odebrat závislost',
'Summary' => 'Shrnutí',
Index: cz_iso-8859-2.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/cz_iso-8859-2.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- cz_iso-8859-2.php 22 Oct 2002 20:08:28 -0000 1.18
+++ cz_iso-8859-2.php 22 Oct 2002 20:34:48 -0000 1.19
@@ -173,6 +173,7 @@
'AssignedTo' => 'Pøiøazeno',
'AssignedToNobody' => 'Nikdo',
'BugDependency' => 'Závislosti',
+ 'Blocks' => 'Blocks',
'AddDependency' => 'Pøidat závislost',
'RemoveDependency' => 'Odebrat závislost',
'Summary' => 'Shrnutí',
Index: de.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/de.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- de.php 22 Oct 2002 20:08:28 -0000 1.16
+++ de.php 22 Oct 2002 20:34:48 -0000 1.17
@@ -178,6 +178,7 @@
'AssignedTo' => 'Zugewiesen an',
'AssignedToNobody' => 'Niemand',
'BugDependency' => 'Abhängigkeiten',
+ 'Blocks' => 'Blocks',
'AddDependency' => 'Abhängigkeit hinzufügen',
'RemoveDependency' => 'Abhängigkeit entfernen',
'Summary' => 'Zusammenfassung',
Index: en.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/en.php,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- en.php 22 Oct 2002 20:08:28 -0000 1.32
+++ en.php 22 Oct 2002 20:34:48 -0000 1.33
@@ -173,6 +173,7 @@
'AssignedTo' => 'Assigned To',
'AssignedToNobody' => 'Nobody',
'BugDependency' => 'Dependencies',
+ 'Blocks' => 'Blocks',
'AddDependency' => 'Add Dependency',
'RemoveDependency' => 'Remove Dependency',
'Summary' => 'Summary',
Index: fr.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/fr.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- fr.php 22 Oct 2002 20:08:28 -0000 1.13
+++ fr.php 22 Oct 2002 20:34:48 -0000 1.14
@@ -177,6 +177,7 @@
'AssignedTo' => 'Assigné à',
'AssignedToNobody' => 'Personne',
'BugDependency' => 'Dependances',
+ 'Blocks' => 'Blocks',
'AddDependency' => 'Ajouter une dépendance',
'RemoveDependency' => 'Supprimer la dépendance',
'Summary' => 'Résumé',
Index: pt-br.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/pt-br.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- pt-br.php 22 Oct 2002 20:08:28 -0000 1.17
+++ pt-br.php 22 Oct 2002 20:34:48 -0000 1.18
@@ -176,6 +176,7 @@
'AssignedTo' => 'Assigned To',
'AssignedToNobody' => 'Nobody',
'BugDependency' => 'Dependencies',
+ 'Blocks' => 'Blocks',
'AddDependency' => 'Add Dependency',
'RemoveDependency' => 'Remove Dependency',
'Summary' => 'Summary',
|
|
From: Benjamin C. <bc...@us...> - 2002-10-22 20:34:51
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv24282
Modified Files:
bug.php
Log Message:
Added display of the bug ids a bug blocks.
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- bug.php 18 Oct 2002 17:38:19 -0000 1.120
+++ bug.php 22 Oct 2002 20:34:48 -0000 1.121
@@ -543,9 +543,13 @@
$t->assign($row);
$t->assign(array(
'bug_dependencies' => delimit_list(', ', $db->getCol('select '.
- db_concat("'<a href=\"$me?op=show&bugid='", 'depends_on', '\'">#\'',
- 'depends_on', '\'</a>\'').' from '.TBL_BUG_DEPENDENCY.
- " where bug_id = $bugid"))
+ db_concat("'<a href=\"$me?op=show&bugid='", 'depends_on', '\'">#\'',
+ 'depends_on', '\'</a>\'').' from '.TBL_BUG_DEPENDENCY.
+ " where bug_id = $bugid")),
+ 'rev_bug_dependencies' => delimit_list(', ', $db->getCol('select '.
+ db_concat("'<a href=\"$me?op=show&bugid='", 'bug_id', '\'">#\'',
+ 'bug_id', '\'</a>\'').' from '.TBL_BUG_DEPENDENCY.
+ " where depends_on = $bugid"))
));
// Show the comments
@@ -624,9 +628,13 @@
'num_votes' => $db->getOne("select count(*) from ".TBL_BUG_VOTE.
" where bug_id = $bugid"),
'bug_dependencies' => delimit_list(', ', $db->getCol('select '.
- db_concat("'<a href=\"$me?op=show&bugid='", 'depends_on', '\'">#\'',
- 'depends_on', '\'</a>\'').' from '.TBL_BUG_DEPENDENCY.
- " where bug_id = $bugid")),
+ db_concat("'<a href=\"$me?op=show&bugid='", 'depends_on', '\'">#\'',
+ 'depends_on', '\'</a>\'').' from '.TBL_BUG_DEPENDENCY.
+ " where bug_id = $bugid")),
+ 'rev_bug_dependencies' => delimit_list(', ', $db->getCol('select '.
+ db_concat("'<a href=\"$me?op=show&bugid='", 'bug_id', '\'">#\'',
+ 'bug_id', '\'</a>\'').' from '.TBL_BUG_DEPENDENCY.
+ " where depends_on = $bugid"))
));
// Show the attachments
|
|
From: Benjamin C. <bc...@us...> - 2002-10-22 20:08:31
|
Update of /cvsroot/phpbt/phpbt/languages
In directory usw-pr-cvs1:/tmp/cvs-serv1031/languages
Modified Files:
cz.php cz_iso-8859-2.php de.php en.php fr.php pt-br.php
Log Message:
Moving text from wrap.html to language files.
Index: cz.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/cz.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- cz.php 19 Jun 2002 13:59:30 -0000 1.20
+++ cz.php 22 Oct 2002 20:08:27 -0000 1.21
@@ -136,7 +136,16 @@
'ViewReports' => 'Hláení/Reporty',
'Documentation' => 'Dokumentace',
'AdminTools' => 'Administraèní nástroje',
- 'CreateNewAccount' => 'Vytvoøit nový úèet'
+ 'CreateNewAccount' => 'Vytvoøit nový úèet',
+ 'Email' => 'Email',
+ 'Login' => 'Login',
+ 'DoLogin' => 'Login',
+ 'BugsAssigned' => 'Bugs assigned to me',
+ 'BugsReported' => 'Bugs reported by me',
+ 'PersonalPage' => 'Personal Page',
+ 'Logout' => 'Logout',
+ 'EmailPassword' => 'Email Password',
+ 'RememberMe' => 'Remember me',
),
'BUGFORM' => array(
'Project' => 'Projekt',
Index: cz_iso-8859-2.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/cz_iso-8859-2.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- cz_iso-8859-2.php 19 Jun 2002 13:59:30 -0000 1.17
+++ cz_iso-8859-2.php 22 Oct 2002 20:08:28 -0000 1.18
@@ -136,7 +136,16 @@
'ViewReports' => 'Hlá¹ení/Reporty',
'Documentation' => 'Dokumentace',
'AdminTools' => 'Administraèní nástroje',
- 'CreateNewAccount' => 'Vytvoøit nový úèet'
+ 'CreateNewAccount' => 'Vytvoøit nový úèet',
+ 'Email' => 'Email',
+ 'Login' => 'Login',
+ 'DoLogin' => 'Login',
+ 'BugsAssigned' => 'Bugs assigned to me',
+ 'BugsReported' => 'Bugs reported by me',
+ 'PersonalPage' => 'Personal Page',
+ 'Logout' => 'Logout',
+ 'EmailPassword' => 'Email Password',
+ 'RememberMe' => 'Remember me',
),
'BUGFORM' => array(
'Project' => 'Projekt',
Index: de.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/de.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- de.php 18 Jul 2002 13:10:53 -0000 1.15
+++ de.php 22 Oct 2002 20:08:28 -0000 1.16
@@ -26,7 +26,7 @@
// -------------------------------------------------------------------------
// $Id$
-$STRING = array(
+$STRING = array(
'lang_charset' => 'iso8859-1',
'nouser' => 'Dieser Benutzer extistiert nicht',
'dupeofself' => 'Ein Bug kann kein Duplikat von sich selbst sein',
@@ -141,7 +141,16 @@
'ViewReports' => 'Berichte anzeigen',
'Documentation' => 'Dokumentation lesen',
'AdminTools' => 'Adminwerkzeuge',
- 'CreateNewAccount' => 'Neuen Account anlegen'
+ 'CreateNewAccount' => 'Neuen Account anlegen',
+ 'Email' => 'Email',
+ 'Login' => 'Login',
+ 'DoLogin' => 'Login',
+ 'BugsAssigned' => 'Bugs assigned to me',
+ 'BugsReported' => 'Bugs reported by me',
+ 'PersonalPage' => 'Personal Page',
+ 'Logout' => 'Logout',
+ 'EmailPassword' => 'Email Password',
+ 'RememberMe' => 'Remember me',
),
'BUGFORM' => array(
'Project' => 'Projekt',
@@ -230,7 +239,7 @@
));
// Page titles
-$TITLE = array(
+$TITLE = array(
'enterbug' => 'Geben Sie einen Bug ein',
'editbug' => 'Bug Bearbeiten',
'newaccount' => 'Einen neuen Account anlegen',
@@ -278,6 +287,6 @@
'editdatabase' => 'Datenbank bearbeiten',
'database' => 'Datenbanken',
'site' => 'Standorte'
-);
-
+);
+
?>
Index: en.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/en.php,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- en.php 19 Jun 2002 13:45:36 -0000 1.31
+++ en.php 22 Oct 2002 20:08:28 -0000 1.32
@@ -10,12 +10,12 @@
// 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.
@@ -136,10 +136,19 @@
'ViewReports' => 'View Reports',
'Documentation' => 'Read Documentation',
'AdminTools' => 'Admin Tools',
- 'CreateNewAccount' => 'Create a new Account'
+ 'CreateNewAccount' => 'Create a new Account',
+ 'Email' => 'Email',
+ 'Login' => 'Login',
+ 'DoLogin' => 'Login',
+ 'BugsAssigned' => 'Bugs assigned to me',
+ 'BugsReported' => 'Bugs reported by me',
+ 'PersonalPage' => 'Personal Page',
+ 'Logout' => 'Logout',
+ 'EmailPassword' => 'Email Password',
+ 'RememberMe' => 'Remember me',
),
- 'BUGFORM' => array(
- 'Project' => 'Project',
+ 'BUGFORM' => array(
+ 'Project' => 'Project',
'Version' => 'Version',
'Summary' => 'Summary',
'Description' => 'Description',
@@ -225,7 +234,7 @@
'SavedQueries' => 'Saved Queries'
)
);
-
+
// Page titles
$TITLE = array(
'enterbug' => 'Enter a Bug',
Index: fr.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/fr.php,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- fr.php 27 Jun 2002 16:24:13 -0000 1.12
+++ fr.php 22 Oct 2002 20:08:28 -0000 1.13
@@ -12,12 +12,12 @@
// 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.
@@ -140,7 +140,16 @@
'ViewReports' => 'Voir un rapport',
'Documentation' => 'Lire la documentation',
'AdminTools' => 'Outils d\'administration',
- 'CreateNewAccount' => 'Créer un compte'
+ 'CreateNewAccount' => 'Créer un compte',
+ 'Email' => 'Email',
+ 'Login' => 'Login',
+ 'DoLogin' => 'Login',
+ 'BugsAssigned' => 'Bugs assigned to me',
+ 'BugsReported' => 'Bugs reported by me',
+ 'PersonalPage' => 'Personal Page',
+ 'Logout' => 'Logout',
+ 'EmailPassword' => 'Email Password',
+ 'RememberMe' => 'Remember me',
),
'BUGFORM' => array(
'Project' => 'Projet',
@@ -229,7 +238,7 @@
'SavedQueries' => 'Requètes pré-enregistrées'
)
);
-
+
// Page titles
$TITLE = array(
'enterbug' => 'Saisir un bogue',
Index: pt-br.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/pt-br.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- pt-br.php 27 Jun 2002 13:50:53 -0000 1.16
+++ pt-br.php 22 Oct 2002 20:08:28 -0000 1.17
@@ -11,12 +11,12 @@
// 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.
@@ -139,7 +139,16 @@
'ViewReports' => 'View Reports',
'Documentation' => 'Read Documentation',
'AdminTools' => 'Admin Tools',
- 'CreateNewAccount' => 'Create a new Account'
+ 'CreateNewAccount' => 'Create a new Account',
+ 'Email' => 'Email',
+ 'Login' => 'Login',
+ 'DoLogin' => 'Login',
+ 'BugsAssigned' => 'Bugs assigned to me',
+ 'BugsReported' => 'Bugs reported by me',
+ 'PersonalPage' => 'Personal Page',
+ 'Logout' => 'Logout',
+ 'EmailPassword' => 'Email Password',
+ 'RememberMe' => 'Remember me',
),
'BUGFORM' => array(
'Project' => 'Project',
@@ -228,7 +237,7 @@
'SavedQueries' => 'Saved Queries'
)
);
-
+
// Page titles
$TITLE = array(
'enterbug' => 'Adicionar um Bug',
@@ -281,5 +290,5 @@
'database' => 'Databases',
'site' => 'Sites'
);
-
+
?>
|
|
From: Benjamin C. <bc...@us...> - 2002-10-22 20:08:31
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv1031/templates/default
Modified Files:
wrap.html
Log Message:
Moving text from wrap.html to language files.
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/wrap.html,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- wrap.html 19 Oct 2002 19:12:32 -0000 1.24
+++ wrap.html 22 Oct 2002 20:08:28 -0000 1.25
@@ -60,24 +60,24 @@
{if not $smarty.session.uid}
{if EMAIL_IS_LOGIN}
- {assign var="loginlabel" value="Email"}
+ {assign var="loginlabel" value=$STRING.WRAP.Email}
{else}
- {assign var="loginlabel" value="Login"}
+ {assign var="loginlabel" value=$STRING.WRAP.Login}
{/if}
{$loginerror}
{$loginlabel}: <input type="text" name="username" class="bottomnavinput" value="{$smarty.cookies.phpbt_user}">
- Password: <input type="password" name="password" class="bottomnavinput">
+ {$STRING.USER_PREF.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">
+ <input type="submit" value="{$STRING.WRAP.DoLogin}" class="bottomnavinput">
+ <input type="submit" name="sendpass" value="{$STRING.WRAP.EmailPassword}" 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
+ <input type="checkbox" name="savecookie" value="1" {if !empty($smarty.cookies.phpbt_user)}checked{/if} class="bottomnavinput" title="Remember {$loginlabel} for next time"> {$STRING.WRAP.RememberMe}
{/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>
+ {$STRING.WRAP.BugsAssigned}: <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>
+ | {$STRING.WRAP.BugsReported}: <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">{$STRING.WRAP.PersonalPage}</a>
+ | <a href="logout.php">{$STRING.WRAP.Logout} {$smarty.session.uname}</a>
{/if}
</form>
|
|
From: Benjamin C. <bc...@us...> - 2002-10-22 20:06:41
|
Update of /cvsroot/phpbt/phpbt/languages
In directory usw-pr-cvs1:/tmp/cvs-serv32246/languages
Modified Files:
Tag: phpbt-0_9_0
cz.php cz_iso-8859-2.php de.php en.php fr.php pt-br.php
Log Message:
Moving text from wrap.html to language files.
Index: cz.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/cz.php,v
retrieving revision 1.20
retrieving revision 1.20.2.1
diff -u -r1.20 -r1.20.2.1
--- cz.php 19 Jun 2002 13:59:30 -0000 1.20
+++ cz.php 22 Oct 2002 20:06:36 -0000 1.20.2.1
@@ -136,7 +136,16 @@
'ViewReports' => 'Hláení/Reporty',
'Documentation' => 'Dokumentace',
'AdminTools' => 'Administraèní nástroje',
- 'CreateNewAccount' => 'Vytvoøit nový úèet'
+ 'CreateNewAccount' => 'Vytvoøit nový úèet',
+ 'Email' => 'Email',
+ 'Login' => 'Login',
+ 'DoLogin' => 'Login',
+ 'BugsAssigned' => 'Bugs assigned to me',
+ 'BugsReported' => 'Bugs reported by me',
+ 'PersonalPage' => 'Personal Page',
+ 'Logout' => 'Logout',
+ 'EmailPassword' => 'Email Password',
+ 'RememberMe' => 'Remember me',
),
'BUGFORM' => array(
'Project' => 'Projekt',
Index: cz_iso-8859-2.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/cz_iso-8859-2.php,v
retrieving revision 1.17
retrieving revision 1.17.2.1
diff -u -r1.17 -r1.17.2.1
--- cz_iso-8859-2.php 19 Jun 2002 13:59:30 -0000 1.17
+++ cz_iso-8859-2.php 22 Oct 2002 20:06:37 -0000 1.17.2.1
@@ -136,7 +136,16 @@
'ViewReports' => 'Hlá¹ení/Reporty',
'Documentation' => 'Dokumentace',
'AdminTools' => 'Administraèní nástroje',
- 'CreateNewAccount' => 'Vytvoøit nový úèet'
+ 'CreateNewAccount' => 'Vytvoøit nový úèet',
+ 'Email' => 'Email',
+ 'Login' => 'Login',
+ 'DoLogin' => 'Login',
+ 'BugsAssigned' => 'Bugs assigned to me',
+ 'BugsReported' => 'Bugs reported by me',
+ 'PersonalPage' => 'Personal Page',
+ 'Logout' => 'Logout',
+ 'EmailPassword' => 'Email Password',
+ 'RememberMe' => 'Remember me',
),
'BUGFORM' => array(
'Project' => 'Projekt',
Index: de.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/de.php,v
retrieving revision 1.15
retrieving revision 1.15.2.1
diff -u -r1.15 -r1.15.2.1
--- de.php 18 Jul 2002 13:10:53 -0000 1.15
+++ de.php 22 Oct 2002 20:06:37 -0000 1.15.2.1
@@ -26,7 +26,7 @@
// -------------------------------------------------------------------------
// $Id$
-$STRING = array(
+$STRING = array(
'lang_charset' => 'iso8859-1',
'nouser' => 'Dieser Benutzer extistiert nicht',
'dupeofself' => 'Ein Bug kann kein Duplikat von sich selbst sein',
@@ -141,7 +141,16 @@
'ViewReports' => 'Berichte anzeigen',
'Documentation' => 'Dokumentation lesen',
'AdminTools' => 'Adminwerkzeuge',
- 'CreateNewAccount' => 'Neuen Account anlegen'
+ 'CreateNewAccount' => 'Neuen Account anlegen',
+ 'Email' => 'Email',
+ 'Login' => 'Login',
+ 'DoLogin' => 'Login',
+ 'BugsAssigned' => 'Bugs assigned to me',
+ 'BugsReported' => 'Bugs reported by me',
+ 'PersonalPage' => 'Personal Page',
+ 'Logout' => 'Logout',
+ 'EmailPassword' => 'Email Password',
+ 'RememberMe' => 'Remember me',
),
'BUGFORM' => array(
'Project' => 'Projekt',
@@ -230,7 +239,7 @@
));
// Page titles
-$TITLE = array(
+$TITLE = array(
'enterbug' => 'Geben Sie einen Bug ein',
'editbug' => 'Bug Bearbeiten',
'newaccount' => 'Einen neuen Account anlegen',
@@ -278,6 +287,6 @@
'editdatabase' => 'Datenbank bearbeiten',
'database' => 'Datenbanken',
'site' => 'Standorte'
-);
-
+);
+
?>
Index: en.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/en.php,v
retrieving revision 1.31
retrieving revision 1.31.2.1
diff -u -r1.31 -r1.31.2.1
--- en.php 19 Jun 2002 13:45:36 -0000 1.31
+++ en.php 22 Oct 2002 20:06:37 -0000 1.31.2.1
@@ -10,12 +10,12 @@
// 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.
@@ -136,10 +136,19 @@
'ViewReports' => 'View Reports',
'Documentation' => 'Read Documentation',
'AdminTools' => 'Admin Tools',
- 'CreateNewAccount' => 'Create a new Account'
+ 'CreateNewAccount' => 'Create a new Account',
+ 'Email' => 'Email',
+ 'Login' => 'Login',
+ 'DoLogin' => 'Login',
+ 'BugsAssigned' => 'Bugs assigned to me',
+ 'BugsReported' => 'Bugs reported by me',
+ 'PersonalPage' => 'Personal Page',
+ 'Logout' => 'Logout',
+ 'EmailPassword' => 'Email Password',
+ 'RememberMe' => 'Remember me',
),
- 'BUGFORM' => array(
- 'Project' => 'Project',
+ 'BUGFORM' => array(
+ 'Project' => 'Project',
'Version' => 'Version',
'Summary' => 'Summary',
'Description' => 'Description',
@@ -225,7 +234,7 @@
'SavedQueries' => 'Saved Queries'
)
);
-
+
// Page titles
$TITLE = array(
'enterbug' => 'Enter a Bug',
Index: fr.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/fr.php,v
retrieving revision 1.12
retrieving revision 1.12.2.1
diff -u -r1.12 -r1.12.2.1
--- fr.php 27 Jun 2002 16:24:13 -0000 1.12
+++ fr.php 22 Oct 2002 20:06:37 -0000 1.12.2.1
@@ -12,12 +12,12 @@
// 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.
@@ -140,7 +140,16 @@
'ViewReports' => 'Voir un rapport',
'Documentation' => 'Lire la documentation',
'AdminTools' => 'Outils d\'administration',
- 'CreateNewAccount' => 'Créer un compte'
+ 'CreateNewAccount' => 'Créer un compte',
+ 'Email' => 'Email',
+ 'Login' => 'Login',
+ 'DoLogin' => 'Login',
+ 'BugsAssigned' => 'Bugs assigned to me',
+ 'BugsReported' => 'Bugs reported by me',
+ 'PersonalPage' => 'Personal Page',
+ 'Logout' => 'Logout',
+ 'EmailPassword' => 'Email Password',
+ 'RememberMe' => 'Remember me',
),
'BUGFORM' => array(
'Project' => 'Projet',
@@ -229,7 +238,7 @@
'SavedQueries' => 'Requètes pré-enregistrées'
)
);
-
+
// Page titles
$TITLE = array(
'enterbug' => 'Saisir un bogue',
Index: pt-br.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/languages/pt-br.php,v
retrieving revision 1.16
retrieving revision 1.16.2.1
diff -u -r1.16 -r1.16.2.1
--- pt-br.php 27 Jun 2002 13:50:53 -0000 1.16
+++ pt-br.php 22 Oct 2002 20:06:37 -0000 1.16.2.1
@@ -11,12 +11,12 @@
// 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.
@@ -139,7 +139,16 @@
'ViewReports' => 'View Reports',
'Documentation' => 'Read Documentation',
'AdminTools' => 'Admin Tools',
- 'CreateNewAccount' => 'Create a new Account'
+ 'CreateNewAccount' => 'Create a new Account',
+ 'Email' => 'Email',
+ 'Login' => 'Login',
+ 'DoLogin' => 'Login',
+ 'BugsAssigned' => 'Bugs assigned to me',
+ 'BugsReported' => 'Bugs reported by me',
+ 'PersonalPage' => 'Personal Page',
+ 'Logout' => 'Logout',
+ 'EmailPassword' => 'Email Password',
+ 'RememberMe' => 'Remember me',
),
'BUGFORM' => array(
'Project' => 'Project',
@@ -228,7 +237,7 @@
'SavedQueries' => 'Saved Queries'
)
);
-
+
// Page titles
$TITLE = array(
'enterbug' => 'Adicionar um Bug',
@@ -281,5 +290,5 @@
'database' => 'Databases',
'site' => 'Sites'
);
-
+
?>
|
|
From: Benjamin C. <bc...@us...> - 2002-10-22 20:06:41
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv32246/templates/default
Modified Files:
Tag: phpbt-0_9_0
wrap.html
Log Message:
Moving text from wrap.html to language files.
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/wrap.html,v
retrieving revision 1.24
retrieving revision 1.24.2.1
diff -u -r1.24 -r1.24.2.1
--- wrap.html 19 Oct 2002 19:12:32 -0000 1.24
+++ wrap.html 22 Oct 2002 20:06:37 -0000 1.24.2.1
@@ -60,24 +60,24 @@
{if not $smarty.session.uid}
{if EMAIL_IS_LOGIN}
- {assign var="loginlabel" value="Email"}
+ {assign var="loginlabel" value=$STRING.WRAP.Email}
{else}
- {assign var="loginlabel" value="Login"}
+ {assign var="loginlabel" value=$STRING.WRAP.Login}
{/if}
{$loginerror}
{$loginlabel}: <input type="text" name="username" class="bottomnavinput" value="{$smarty.cookies.phpbt_user}">
- Password: <input type="password" name="password" class="bottomnavinput">
+ {$STRING.USER_PREF.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">
+ <input type="submit" value="{$STRING.WRAP.DoLogin}" class="bottomnavinput">
+ <input type="submit" name="sendpass" value="{$STRING.WRAP.EmailPassword}" 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
+ <input type="checkbox" name="savecookie" value="1" {if !empty($smarty.cookies.phpbt_user)}checked{/if} class="bottomnavinput" title="Remember {$loginlabel} for next time"> {$STRING.WRAP.RememberMe}
{/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>
+ {$STRING.WRAP.BugsAssigned}: <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>
+ | {$STRING.WRAP.BugsReported}: <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">{$STRING.WRAP.PersonalPage}</a>
+ | <a href="logout.php">{$STRING.WRAP.Logout} {$smarty.session.uname}</a>
{/if}
</form>
|
|
From: Ben C. <php...@be...> - 2002-10-21 20:45:41
|
Well, we could add some functionality so that if you already had a "New Bugs" saved query and tried to save another query as "New Bugs" it would overwrite the older saved query. Of course, it would prompt you before doing that. Is this a good idea? On Mon, Oct 21, 2002 at 06:07:08PM +0200, Alessandro Pisani (TXM) wrote: > On Monday 21 October 2002 17:31, Ben Curtis wrote: > > These are good ideas. Though I haven't branched yet in CVS to make it > > formal, I'd like to wait until after the release to add any more > > features. So, these can go into consideration for 1.0. I'm glad you > > like the latest version. :) > Okay :) btw i think it would be better to have at least the non-duplicated > queries names patch in 0.9.0... maybe along with overwrite; modification can > be added in 1.0, i agree on that. > > btw, phpbt 0.9.0 is a giant step forward... it is really more confortable than > 0.8.x: a very good work guys! > > Alessandro > -- > Alessandro "TXM" Pisani - alextxm at tin dot it > ICQ: 2209087 - AIM: TXM J578 > > "I will carry you through, kicking and screaming, > and in the end you will thank me" > - Tyler Durden [from "Fight Club"] > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > phpbt-dev mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpbt-dev |
|
From: Benjamin C. <bc...@us...> - 2002-10-21 20:02:12
|
Update of /cvsroot/phpbt/phpbt/admin
In directory usw-pr-cvs1:/tmp/cvs-serv32520/admin
Modified Files:
configure.php
Log Message:
Append a / to JPGRAPH_PATH if it doesn't end with one.
Index: configure.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/configure.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- configure.php 18 May 2002 03:00:00 -0000 1.9
+++ configure.php 21 Oct 2002 20:02:08 -0000 1.10
@@ -30,14 +30,17 @@
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 .= '/';
+
$db->query('update '.TBL_CONFIGURATION." set varvalue = '$v' where varname = '$k'");
-
+
// Refresh the template variable now instead of waiting for the next page load.
if ($k == 'STYLE') {
$t->assign('STYLE', $v);
}
}
-}
+}
$t->assign('vars', $db->getAll('select * from '.TBL_CONFIGURATION));
$t->wrap('admin/configure.html', 'configuration');
|
|
From: Benjamin C. <bc...@us...> - 2002-10-21 19:41:36
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv12314
Modified Files:
index.php
Log Message:
Fixed a problem with showing a bug twice if it was closed twice. Also removed a dependency on the word 'closed' in the same query.
Index: index.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/index.php,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- index.php 19 Jun 2002 13:45:35 -0000 1.34
+++ index.php 21 Oct 2002 19:41:32 -0000 1.35
@@ -10,12 +10,12 @@
// 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.
@@ -25,30 +25,30 @@
function grab_data($restricted_projects) {
global $db;
-
+
// Grab the legend
$rs = $db->query("select status_id, status_name from ".TBL_STATUS." order by sort_order");
while ($rs->fetchInto($row)) {
$stats[$row['status_id']]['name'] = $row['status_name'];
}
-
+
// Grab the data
$rs = $db->query("select status_id, count(status_id) as count from ".TBL_BUG.
" where project_id not in ($restricted_projects) group by status_id");
while ($rs->fetchInto($row)) {
$stats[$row['status_id']]['count'] = $row['count'];
}
-
+
return $stats;
}
function build_image($restricted_projects) {
global $STRING;
-
+
error_reporting(0); // Force this, just in case
include_once JPGRAPH_PATH.'jpgraph.php';
include_once JPGRAPH_PATH.'jpgraph_pie.php';
-
+
$stats = grab_data($restricted_projects);
$totalbugs = 0;
foreach ($stats as $statid => $stat) {
@@ -60,12 +60,12 @@
$totalbugs += $stat['count'];
}
}
-
+
if (!$totalbugs) {
return $STRING['nobugs'];
}
-
- // Create the Pie Graph.
+
+ // Create the Pie Graph.
$graph = new PieGraph(350,200,"bug_cat_summary");
$graph->SetShadow();
@@ -106,7 +106,7 @@
// Grab the resolutions from the database
$rs = $db->query($QUERY['index-projsummary-2'].
- db_concat($QUERY['index-projsummary-3'], 'resolution_id',
+ db_concat($QUERY['index-projsummary-3'], 'resolution_id',
$QUERY['index-projsummary-4'], 'resolution_name', "'\"' ").
$QUERY['index-projsummary-5']);
while (list($fieldname, $countquery) = $rs->fetchRow(DB_FETCHMODE_ORDERED)) {
@@ -114,34 +114,34 @@
$querystring .= $countquery;
}
$resfields[] = 'Total';
-
+
$db->setOption('optimize', 'performance'); // For Oracle to do this loop
$t->assign(array(
'resfields' => $resfields,
- 'projects' => $db->getAll(sprintf($QUERY['index-projsummary-6'],
+ 'projects' => $db->getAll(sprintf($QUERY['index-projsummary-6'],
$querystring, $restricted_projects))
));
- $db->setOption('optimize', 'portability');
+ $db->setOption('optimize', 'portability');
}
// Show the recently added and closed bugs
-$t->assign('recentbugs',
+$t->assign('recentbugs',
$db->getAll($db->modifyLimitQuery("select bug_id, title, project_name from ".TBL_BUG.
' b, '.TBL_PROJECT." p where b.project_id not in ($restricted_projects)".
' and b.project_id = p.project_id order by b.created_date desc', 0, 5)));
-$t->assign('closedbugs',
+$t->assign('closedbugs',
$db->getAll($db->modifyLimitQuery('select b.bug_id, title, project_name from '.TBL_BUG.' b, '.
- TBL_BUG_HISTORY.' h, '.TBL_PROJECT.' p'.
- " where b.project_id not in ($restricted_projects) and b.bug_id = h.bug_id".
- " and changed_field = 'status' and new_value = 'Closed'".
- ' and b.project_id = p.project_id order by h.created_date desc', 0, 5)));
+ TBL_PROJECT.' p'.
+ " where b.project_id not in ($restricted_projects)".
+ ' and status_id = '.BUG_CLOSED.
+ ' and b.project_id = p.project_id order by close_date desc', 0, 5)));
if ($u != 'nobody') {
$pref = $db->GetOne('select saved_queries from '.TBL_USER_PREF." where user_id='".$u."'");
if ((isset($pref['saved_queries'])) && ($pref['saved_queries'])) {
// Grab the saved queries if there are any and user wants them
- $t->assign('queries',
+ $t->assign('queries',
$db->getAll("select * from ".TBL_SAVED_QUERY." where user_id = '$u'"));
}
}
|
|
From: Alessandro P. (TXM) <al...@ti...> - 2002-10-21 16:12:41
|
On Monday 21 October 2002 17:31, Ben Curtis wrote: > These are good ideas. Though I haven't branched yet in CVS to make it > formal, I'd like to wait until after the release to add any more > features. So, these can go into consideration for 1.0. I'm glad you > like the latest version. :) Okay :) btw i think it would be better to have at least the non-duplicate= d=20 queries names patch in 0.9.0... maybe along with overwrite; modification = can=20 be added in 1.0, i agree on that. btw, phpbt 0.9.0 is a giant step forward... it is really more confortable= than=20 0.8.x: a very good work guys! Alessandro --=20 Alessandro "TXM" Pisani - alextxm at tin dot it ICQ: 2209087 - AIM: TXM J578 "I will carry you through, kicking and screaming, and in the end you will thank me" - Tyler Durden [from "Fight Club"] |
|
From: Ben C. <php...@be...> - 2002-10-21 15:59:41
|
I've been doing a little work on the phpBT wiki, including a new page, PeopleUsingIt. Feel free to advertise yourselves on that page. |
|
From: Ben C. <php...@be...> - 2002-10-21 15:31:59
|
These are good ideas. Though I haven't branched yet in CVS to make it formal, I'd like to wait until after the release to add any more features. So, these can go into consideration for 1.0. I'm glad you like the latest version. :) On Mon, Oct 21, 2002 at 03:48:31PM +0200, Alessandro Pisani (TXM) wrote: > some enhancement could be done to the saved queries feature: > 1) do not allow duplicated saved queries names : it should be allowed users A > and B to both have Q1 and Q2, but not A having Q1 and Q1 as actually is. > 2) allow modification of existing queries or, at least, allow overwriting of > them (creating a new one and giving it the same name of an existing one) > > just some ideas I had playing with the beautiful 0.9.0rc1 > bye, > Alessandro > -- > Alessandro "TXM" Pisani - alextxm at tin dot it > ICQ: 2209087 - AIM: TXM J578 > > "I will carry you through, kicking and screaming, > and in the end you will thank me" > - Tyler Durden [from "Fight Club"] > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > phpbt-dev mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpbt-dev |
|
From: Alessandro P. (TXM) <al...@ti...> - 2002-10-21 13:53:56
|
On Saturday 19 October 2002 22:43, Ben Curtis wrote: > I've just uploaded a release candidate for version 0.9.0. Although it > feels a little silly to do a release candidate for a project labeled > beta, enough people rely on phpBT to justify it, I think. At any rate, > it's just a snapshot from cvs, so bang away on it to try and shake any > show-stopper bugs out. If there isn't anything serious reported in the > next week, I'll assume it's ready to go to the masses. :) some enhancement could be done to the saved queries feature: 1) do not allow duplicated saved queries names : it should be allowed us= ers A=20 and B to both have Q1 and Q2, but not A having Q1 and Q1 as actually is. 2) allow modification of existing queries or, at least, allow overwriting= of=20 them (creating a new one and giving it the same name of an existing one) just some ideas I had playing with the beautiful 0.9.0rc1 bye, Alessandro --=20 Alessandro "TXM" Pisani - alextxm at tin dot it ICQ: 2209087 - AIM: TXM J578 "I will carry you through, kicking and screaming, and in the end you will thank me" - Tyler Durden [from "Fight Club"] |