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-04-12 00:32:18
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv19239
Modified Files:
query.php
Log Message:
Fix an off by one error with prev/next links
Index: query.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/query.php,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- query.php 8 Apr 2002 16:30:44 -0000 1.69
+++ query.php 12 Apr 2002 00:32:12 -0000 1.70
@@ -127,6 +127,8 @@
// Handle the formatting for various types of bug info in the bug list
function format_bug_col($colvalue, $coltype, $bugid, $pos) {
+ $pos--;
+
switch ($coltype) {
case 'url' :
echo "<a href=\"$colvalue\" target=\"_new\">$colvalue</a>";
|
|
From: Ben C. <php...@be...> - 2002-04-11 22:49:40
|
Whew! That was a lot of work! 0.8.0 is out the door, so feel free to report all the bugs I missed. After I get a chance to clear my head a bit from all the regression tests and last minute fixes from today, I will post my thoughts on what should be in 0.9.0. If I really get to clear my head then I'll even write what I think should be in 1.0 (hmm, are we ready for that already?). A sincere thanks to all those who helped with this release, with testing, contributing code, pointing out my mistakes, etc., etc. Thanks for all your patience with the significant changes as of late -- hopefully they will help us have a better footing for further development. So, be looking out for the road map emails coming from me soon, and test the heck out of the new release! |
|
From: Benjamin C. <bc...@us...> - 2002-04-11 22:17:17
|
Update of /cvsroot/phpbt/phpbt/schemas In directory usw-pr-cvs1:/tmp/cvs-serv13063/schemas Modified Files: pgsql.in Log Message: Don't create an index for the active_sessions table -- the table is no longer created Index: pgsql.in =================================================================== RCS file: /cvsroot/phpbt/phpbt/schemas/pgsql.in,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- pgsql.in 10 Apr 2002 14:16:05 -0000 1.26 +++ pgsql.in 11 Apr 2002 22:17:14 -0000 1.27 @@ -377,12 +377,6 @@ CREATE INDEX group_id_TBL_USER_GROUP_index ON TBL_USER_GROUP (group_id); -- --- Indexes for table ACTIVE_SESSIONS --- - -CREATE INDEX changed_TBL_ACTIVE_SESSIONS_index ON TBL_ACTIVE_SESSIONS (changed); - --- -- Indexes for table TBL_USER_PERM -- |
|
From: Benjamin C. <bc...@us...> - 2002-04-11 22:15:22
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv12501
Modified Files:
install.php
Log Message:
Try to fix bug 529344 - slashes getting inserted on db creation
Index: install.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/install.php,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- install.php 11 Apr 2002 21:58:06 -0000 1.26
+++ install.php 11 Apr 2002 22:15:17 -0000 1.27
@@ -183,7 +183,7 @@
if ($_pv['db_type'] == 'oci8' ) {
$do_query = substr($do_query, 0, -1);
}
- $db->query($do_query);
+ $db->query(stripslashes($do_query));
$do_query = '';
}
}
|
|
From: Benjamin C. <bc...@us...> - 2002-04-11 22:04:01
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv8318
Modified Files:
config-dist.php
Log Message:
Cleanup
Index: config-dist.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/config-dist.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- config-dist.php 9 Apr 2002 20:53:07 -0000 1.14
+++ config-dist.php 11 Apr 2002 22:03:57 -0000 1.15
@@ -22,7 +22,7 @@
// $Id$
// Database Config
-define ('DB_TYPE', '{db_type}'); // using PHPlib file naming (mysql | pgsql)
+define ('DB_TYPE', '{db_type}'); // using PEAR::DB naming (mysql, pgsql, etc.)
define ('DB_HOST', '{db_host}'); // hostname of database server
define ('DB_DATABASE', '{db_database}'); // database name
define ('DB_USER', '{db_user}'); // username for database connection
|
|
From: Benjamin C. <bc...@us...> - 2002-04-11 22:04:00
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv8318/templates/default/admin
Modified Files:
resolutionlist.html
Log Message:
Cleanup
Index: resolutionlist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/resolutionlist.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- resolutionlist.html 11 Apr 2002 16:08:05 -0000 1.7
+++ resolutionlist.html 11 Apr 2002 22:03:57 -0000 1.8
@@ -11,7 +11,7 @@
{/literal}
// -->
</script>
-<table border="0" width="640">
+<table border="0" width="100%">
<tr>
<td valign="top">
<b> Resolution List</b> - <a href="{$SCRIPT_NAME}?op=edit&resolution_id=0" onClick="popupResolution(0); return false;">{$STRING.addnew} Resolution</a>
|
|
From: Benjamin C. <bc...@us...> - 2002-04-11 21:58:09
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv5697
Modified Files:
install.php
Log Message:
Assign the error var
Index: install.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/install.php,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- install.php 11 Apr 2002 20:16:11 -0000 1.25
+++ install.php 11 Apr 2002 21:58:06 -0000 1.26
@@ -253,6 +253,7 @@
global $t, $_pv, $select, $HTTP_SERVER_VARS;
$t->assign($_pv);
+ $t->assign('error', $error);
$t->assign('default_email', 'phpbt@'.$HTTP_SERVER_VARS['SERVER_NAME']);
$t->display('install.html');
}
|
|
From: Benjamin C. <bc...@us...> - 2002-04-11 20:31:46
|
Update of /cvsroot/phpbt/phpbt/templates/default/base
In directory usw-pr-cvs1:/tmp/cvs-serv1635/templates/default/base
Modified Files:
templatesperm.html
Log Message:
Offer a little more help
Index: templatesperm.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/base/templatesperm.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- templatesperm.html 9 Apr 2002 20:44:28 -0000 1.2
+++ templatesperm.html 11 Apr 2002 20:31:39 -0000 1.3
@@ -2,14 +2,31 @@
<head>
<title>Compiled Templates Directory Not Writeable</title>
<link rel="stylesheet" href="styles/default.css" type="text/css">
+ <style>
+ tt { background: #eeeeee; }
+ </style>
</head>
<body>
<div class="error">An error has occurred</div>
- <div align="center">
+ <div>
The "c_templates" subdirectory is not writeable by the
web process. This needs to be corrected before the installation can proceed
so the templates can be compiled by smarty. Please reload this page when
this has been corrected.
+ <br>
+ <br>
+ On a unix system such as linux, this can either be accomplished by
+ making the directory writeable by everyone...
+ <br>
+ <tt>$ chmod a+w c_templates</tt>
+ <br>
+ <br>
+ ... or by changing the ownership of the directory to the webserver.
+ For example, if your web server is running as the user www-data, you
+ can change the ownership as follows (you must become root first):
+ <br>
+ <tt>$ chown www-data c_templates</tt>
+ <br>
</div>
</body>
</html>
|
|
From: Benjamin C. <bc...@us...> - 2002-04-11 20:30:47
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv523/templates/default
Modified Files:
install-complete.html install.html login.html
Log Message:
Cleanup
Index: install-complete.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/install-complete.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- install-complete.html 3 Apr 2002 00:57:51 -0000 1.4
+++ install-complete.html 11 Apr 2002 20:29:34 -0000 1.5
@@ -1,6 +1,6 @@
<html>
<title>phpBugTracker Installation</title>
- <link rel="StyleSheet" href="css.php" type="text/css">
+ <link rel="StyleSheet" href="styles/default.css" type="text/css">
</head>
<body bgcolor="#ffffff" link="#006699" vlink="#006699" alink="#006699">
<table border="0" cellpadding="0" cellspacing="0" width="640">
Index: install.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/install.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- install.html 3 Apr 2002 00:57:51 -0000 1.5
+++ install.html 11 Apr 2002 20:29:34 -0000 1.6
@@ -1,6 +1,6 @@
<html>
<title>phpBugTracker Installation</title>
- <link rel="StyleSheet" href="css.php" type="text/css">
+ <link rel="StyleSheet" href="styles/default.css" type="text/css">
</head>
<body bgcolor="#ffffff" link="#006699" vlink="#006699" alink="#006699">
<form action="{$SCRIPT_NAME}" method="post">
Index: login.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/login.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- login.html 28 Mar 2002 20:47:06 -0000 1.2
+++ login.html 11 Apr 2002 20:29:34 -0000 1.3
@@ -1,7 +1,7 @@
<html>
<head>
<title>phpBugTracker Login</title>
- <link rel="StyleSheet" href="css.php" type="text/css">
+ <link rel="StyleSheet" href="styles/default.css" type="text/css">
</head>
<body bgcolor="#ffffff" text="#000000" link="#004433" alink="#004433" vlink="#004433">
<center>
|
|
From: Benjamin C. <bc...@us...> - 2002-04-11 20:16:31
|
Update of /cvsroot/phpbt/phpbt/languages In directory usw-pr-cvs1:/tmp/cvs-serv27599/languages Modified Files: sl.php Log Message: Index: sl.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/sl.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- sl.php 11 Apr 2002 18:40:35 -0000 1.1 +++ sl.php 11 Apr 2002 20:16:26 -0000 1.2 @@ -73,8 +73,8 @@ 0 => 'Vsi uporabniki', 1 => 'Aktivni uporabniki', 2 => 'Neaktivni uporabniki'), - 'dupe_dependency' => 'That bug dependency has already been added', - 'image_path_not_writeable' => 'The subdirectory "jpgimages" is not writeable by the web process, so the summary image can not be rendered' + 'dupe_dependency' => 'Odvisnost med hrosci je ze bila dodana', + 'image_path_not_writeable' => 'Ne morem pisati v imenik "jpgimages", zato slike s povzetkom ni bilo mogoce pripraviti' ); // Page titles |
|
From: Benjamin C. <bc...@us...> - 2002-04-11 20:16:15
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv27454
Modified Files:
include.php install.php
Log Message:
Purging INSTALL_PATH
Index: include.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/include.php,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- include.php 9 Apr 2002 20:53:07 -0000 1.112
+++ include.php 11 Apr 2002 20:16:11 -0000 1.113
@@ -24,9 +24,6 @@
ini_set("magic_quotes_runtime", 0);
-// Where are we?
-#define ('INSTALL_PATH', dirname(__FILE__));
-
if (!@include('config.php')) {
header("Location: install.php");
exit();
Index: install.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/install.php,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- install.php 8 Apr 2002 17:06:50 -0000 1.24
+++ install.php 11 Apr 2002 20:16:11 -0000 1.25
@@ -23,10 +23,8 @@
// ------------------------------------------------------------------------
// $Id$
-define ('INSTALL_PATH', dirname(__FILE__));
-
// Location of smarty templates class
-define ('SMARTY_PATH','');
+define ('SMARTY_PATH', '');
// Example if smarty is installed within the phpBugTracker tree.
//define ('SMARTY_PATH','./inc/smarty/');
|
|
From: Benjamin C. <bc...@us...> - 2002-04-11 20:15:34
|
Update of /cvsroot/phpbt/phpbt/docs/html In directory usw-pr-cvs1:/tmp/cvs-serv26994/html Modified Files: configuration.html devguide.html devstandards.html schema.html Log Message: Purging INSTALL_PATH Index: configuration.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/configuration.html,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- configuration.html 8 Apr 2002 15:05:10 -0000 1.15 +++ configuration.html 11 Apr 2002 20:15:29 -0000 1.16 @@ -96,12 +96,6 @@ CLASS="VARIABLELIST" ><DL ><DT ->INSTALL_PATH</DT -><DD -><P ->Location on disk of the phpBugTracker installation. This variable is obtained by getting the working directory of the scripts.</P -></DD -><DT >INSTALL_URL</DT ><DD ><P Index: devguide.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/devguide.html,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- devguide.html 8 Apr 2002 15:05:10 -0000 1.21 +++ devguide.html 11 Apr 2002 20:15:29 -0000 1.22 @@ -116,7 +116,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN286"><P +NAME="AEN282"><P >Adding on to or extending phpBugTracker should be easy for those with a knowledge of PHP and SQL. New developers are always welcome to join the project at <A HREF="http://www.sourceforge.net/projects/phpbt/" TARGET="_top" Index: devstandards.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/devstandards.html,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- devstandards.html 8 Apr 2002 15:05:10 -0000 1.22 +++ devstandards.html 11 Apr 2002 20:15:29 -0000 1.23 @@ -82,7 +82,7 @@ ><DIV CLASS="ABSTRACT" ><A -NAME="AEN366"><P +NAME="AEN362"><P > This section details the coding and process standards to be followed by the developers working on phpBugTracker. </P Index: schema.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/html/schema.html,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- schema.html 8 Apr 2002 15:05:10 -0000 1.7 +++ schema.html 11 Apr 2002 20:15:29 -0000 1.8 @@ -73,7 +73,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN424"><P +NAME="AEN420"><P ><B >Table 3-1. Schema for table attachment</B ></P @@ -251,7 +251,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN474"><P +NAME="AEN470"><P ><B >Table 3-2. Schema for table auth_group</B ></P @@ -413,7 +413,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN520"><P +NAME="AEN516"><P ><B >Table 3-3. Schema for table auth_perm</B ></P @@ -560,7 +560,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN562"><P +NAME="AEN558"><P ><B >Table 3-4. Schema for table auth_user</B ></P @@ -810,7 +810,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN632"><P +NAME="AEN628"><P ><B >Table 3-5. Schema for table bug</B ></P @@ -1195,7 +1195,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN740"><P +NAME="AEN736"><P ><B >Table 3-6. Schema for table bug_cc</B ></P @@ -1301,7 +1301,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN770"><P +NAME="AEN766"><P ><B >Table 3-7. Schema for table bug_dependency</B ></P @@ -1371,7 +1371,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN790"><P +NAME="AEN786"><P ><B >Table 3-8. Schema for table bug_group</B ></P @@ -1443,7 +1443,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN811"><P +NAME="AEN807"><P ><B >Table 3-9. Schema for table bug_vote</B ></P @@ -1531,7 +1531,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN836"><P +NAME="AEN832"><P ><B >Table 3-10. Schema for table bug_history</B ></P @@ -1673,7 +1673,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN876"><P +NAME="AEN872"><P ><B >Table 3-11. Schema for table comment</B ></P @@ -1797,7 +1797,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN911"><P +NAME="AEN907"><P ><B >Table 3-12. Schema for table component</B ></P @@ -2014,7 +2014,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN972"><P +NAME="AEN968"><P ><B >Table 3-13. Schema for table configuration</B ></P @@ -2122,7 +2122,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1003"><P +NAME="AEN999"><P ><B >Table 3-14. Schema for table group_perm</B ></P @@ -2192,7 +2192,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1023"><P +NAME="AEN1019"><P ><B >Table 3-15. Schema for table os</B ></P @@ -2298,7 +2298,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1053"><P +NAME="AEN1049"><P ><B >Table 3-16. Schema for table project</B ></P @@ -2476,7 +2476,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1103"><P +NAME="AEN1099"><P ><B >Table 3-17. Schema for table project_group</B ></P @@ -2582,7 +2582,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1133"><P +NAME="AEN1129"><P ><B >Table 3-18. Schema for table resolution</B ></P @@ -2688,7 +2688,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1163"><P +NAME="AEN1159"><P ><B >Table 3-19. Schema for table saved_query</B ></P @@ -2799,7 +2799,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1195"><P +NAME="AEN1191"><P ><B >Table 3-20. Schema for table severity</B ></P @@ -2926,7 +2926,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1231"><P +NAME="AEN1227"><P ><B >Table 3-21. Schema for table status</B ></P @@ -3032,7 +3032,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1261"><P +NAME="AEN1257"><P ><B >Table 3-22. Schema for table user_group</B ></P @@ -3138,7 +3138,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1291"><P +NAME="AEN1287"><P ><B >Table 3-23. Schema for table user_perm</B ></P @@ -3208,7 +3208,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1311"><P +NAME="AEN1307"><P ><B >Table 3-24. Schema for table user_pref</B ></P @@ -3278,7 +3278,7 @@ ><DIV CLASS="TABLE" ><A -NAME="AEN1331"><P +NAME="AEN1327"><P ><B >Table 3-25. Schema for table version</B ></P |
|
From: Benjamin C. <bc...@us...> - 2002-04-11 20:15:33
|
Update of /cvsroot/phpbt/phpbt/docs/sgml In directory usw-pr-cvs1:/tmp/cvs-serv26994/sgml Modified Files: configuration.sgml Log Message: Purging INSTALL_PATH Index: configuration.sgml =================================================================== RCS file: /cvsroot/phpbt/phpbt/docs/sgml/configuration.sgml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- configuration.sgml 5 Apr 2002 19:06:08 -0000 1.7 +++ configuration.sgml 11 Apr 2002 20:15:29 -0000 1.8 @@ -8,12 +8,6 @@ <variablelist> <varlistentry> -<term>INSTALL_PATH</term> -<listitem> -<para>Location on disk of the &phpbt; installation. This variable is obtained by getting the working directory of the scripts.</para> -</listitem> -</varlistentry> -<varlistentry> <term>INSTALL_URL</term> <listitem> <para>URL that is the home of the installation.</para> |
|
From: Benjamin C. <bc...@us...> - 2002-04-11 19:30:46
|
Update of /cvsroot/phpbt/phpbt In directory usw-pr-cvs1:/tmp/cvs-serv26055 Modified Files: CHANGELOG Log Message: Index: CHANGELOG =================================================================== RCS file: /cvsroot/phpbt/phpbt/CHANGELOG,v retrieving revision 1.54 retrieving revision 1.55 diff -u -r1.54 -r1.55 --- CHANGELOG 11 Apr 2002 18:15:59 -0000 1.54 +++ CHANGELOG 11 Apr 2002 18:43:17 -0000 1.55 @@ -5,8 +5,8 @@ : Added "Remember me" functionality. : Fixed bugs with losing login info. : Added detailed project stats to the home page (configurable by the admin). -: Added Estonian translation (Alvar Soome) and Italian translation - (Gaetano Giunta). +: New translations: Estonian (Alvar Soome), Italian (Gaetano Giunta), and + Slovenian (Klemen Zagar). : Added the ability for users to choose not to receive bug update emails. : Added ability to configure color schemes from the configuration page and updated the "black" scheme. |
|
From: Benjamin C. <bc...@us...> - 2002-04-11 18:40:38
|
Update of /cvsroot/phpbt/phpbt/languages In directory usw-pr-cvs1:/tmp/cvs-serv25281/languages Added Files: sl.php Log Message: Slovenian translation by Klemen Zagar --- NEW FILE: sl.php --- <?php // sl.php - Slovenian strings and titles // ------------------------------------------------------------------------ // Copyright (c) 2002 Klemen Zagar // ------------------------------------------------------------------------ // This file is part of phpBugTracker // // phpBugTracker is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // phpBugTracker is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with phpBugTracker; if not, write to the Free Software Foundation, // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // ------------------------------------------------------------------------ // $Id: sl.php,v 1.1 2002/04/11 18:40:35 bcurtis Exp $ $STRING = array( 'lang_charset' => 'iso-8859-2', 'nouser' => 'Uporabnik ne obstaja.', 'dupeofself' => 'Hroè ne more biti duplikat samega sebe.', 'nobug' => 'Ta hroè ne obstaja!', 'givesummary' => 'Vnesite povzetek!', 'givedesc' => 'Vnesite opis!', 'noprojects' => 'Ni projektov!', 'totalbugs' => 'Skupno tevilo hroèev', 'giveemail' => 'Vnesite veljaven e-mail naslov', 'givelogin' => 'Vnesite veljavno uporabniko ime', 'loginused' => 'To uporabniko ime je e v uporabi', 'newacctsubject' => 'Prijava v phpBugTracker', 'newacctmessage' => "Vae phpBugTracker geslo je %s", 'nobugs' => 'Najden ni bil noben hroè', 'givename' => 'Vnesite ime', 'edit' => 'Popravi', 'addnew' => 'Dodaj novega', 'nooses' => 'Operacijski sistemi niso specificirani!', 'giveinitversion' => 'Vnesite zaèetno verzijo projekta', 'giveversion' => 'Vnesite verzijo', 'noversions' => 'Ni verzij', 'nocomponents' => 'Ni komponent', 'nostatuses' => 'Ni statusov', 'noseverities' => 'Ni resnosti', 'givepassword' => 'Vnesite geslo', 'nousers' => 'Ni uporabnikov', 'bugbadperm' => 'Tega hroèa ne morete spremeniti', 'bugbadnum' => 'Ta hroè ne obstaja', 'datecollision' => 'Nekdo je spemenil ta hroè medtem ko ste ga gledali. Prikazane informacije o hroèu odraajo zadnje spremembe.', 'passwordmatch' => 'Gesli se ne ujemata. Poskusite znova!', 'nobughistory' => 'Ta hroè nima zgodovine', 'logintomodify' => 'Za spreminjanje tega hroèa se morate prijaviti', 'dupe_attachment' => 'Ta priponka k hroèu e obstaja', 'give_attachment' => 'Doloèite datoteko, ki jo elite pripeti hroèu', 'no_attachment_save_path' => 'Ne vem, kam shraniti priponko!', 'attachment_path_not_writeable' => 'Nimam pravice shranjevati priponke!', 'attachment_move_error' => 'Napaka pri premikanju priponke', 'bad_attachment' => 'Ta priponka ne obstaja', 'attachment_too_large' => 'Priponka je dalja od najdalje dopustne doine '.number_format(ATTACHMENT_MAX_SIZE).' bytov', 'bad_permission' => 'Za to operacijo nimate dovoljenja', 'project_only_all_groups' => 'Posameznih skupin ne morate doloèati kadar je v uporabi "Vse skupine"', 'previous_bug' => 'Prejnji', 'next_bug' => 'Naslednji', 'already_voted' => 'Za tega hroèa ste e glasovali', 'too_many_votes' => 'Doseeno je bilo najveèje tevilo glasov za uporabnika', 'no_votes' => 'Za tega hroèa ni glasov', 'user_filter' => array( 0 => 'Vsi uporabniki', 1 => 'Aktivni uporabniki', 2 => 'Neaktivni uporabniki'), 'dupe_dependency' => 'That bug dependency has already been added', 'image_path_not_writeable' => 'The subdirectory "jpgimages" is not writeable by the web process, so the summary image can not be rendered' ); // Page titles $TITLE = array( 'enterbug' => 'Vnos hroèa', 'editbug' => 'Spreminjanje hroèa', 'newaccount' => 'Nov uporabnik', 'bugquery' => 'Poizvedba po hroèih', 'buglist' => 'Seznam hroèev', 'addcomponent' => 'Dodajanje komponente', 'editcomponent' => 'Spreminjanje komponente', 'addproject' => 'Dodajanje projekta', 'editproject' => 'Spreminjanje projekta', 'addversion' => 'Dodajanje verzije', 'editversion' => 'Spreminjanje verzije', 'project' => 'Projekti', 'os' => 'Operacijski sistemi', 'resolution' => 'Razreitve', 'status' => 'Stanje', 'severity' => 'Resnost', 'user' => 'Uporabniki', 'home' => 'Domaèa stran', 'reporting' => 'Poroèanje', 'group' => 'Skupine' ); ?> |
|
From: Benjamin C. <bc...@us...> - 2002-04-11 18:39:35
|
Update of /cvsroot/phpbt/phpbt/languages In directory usw-pr-cvs1:/tmp/cvs-serv24959/languages Modified Files: en.php Log Message: Cleanup Index: en.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/en.php,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- en.php 11 Apr 2002 16:08:05 -0000 1.14 +++ en.php 11 Apr 2002 18:39:31 -0000 1.15 @@ -1,6 +1,6 @@ <?php -// strings-en.php - English strings and titles +// en.php - English strings and titles // ------------------------------------------------------------------------ // Copyright (c) 2001 The phpBugTracker Group // ------------------------------------------------------------------------ |
|
From: Benjamin C. <bc...@us...> - 2002-04-11 18:39:24
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv24877/templates/default/admin
Modified Files:
header-popup.html header.html
Log Message:
Added charset meta tag
Index: header-popup.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/header-popup.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- header-popup.html 3 Apr 2002 18:18:03 -0000 1.2
+++ header-popup.html 11 Apr 2002 18:39:17 -0000 1.3
@@ -3,6 +3,7 @@
<META HTTP-EQUIV="Expires" CONTENT="-1">
<title>phpBugTracker Admin - {$page_title}</title>
<link rel="StyleSheet" href="../styles/{$STYLE}.css" type="text/css">
+ <META http-equiv="Content-Type" content="text/html; charset={$STRING.lang_charset}">
</head>
<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
<table width="100%" cellspacing="0" cellpadding="0" height="100%">
Index: header.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/header.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- header.html 9 Apr 2002 23:27:35 -0000 1.5
+++ header.html 11 Apr 2002 18:39:17 -0000 1.6
@@ -3,6 +3,7 @@
<META HTTP-EQUIV="Expires" CONTENT="-1">
<title>phpBugTracker Admin - {$page_title}</title>
<link rel="StyleSheet" href="../styles/{$STYLE}.css" type="text/css">
+ <META http-equiv="Content-Type" content="text/html; charset={$STRING.lang_charset}">
</head>
<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
<table width="100%" cellspacing="0" cellpadding="0" height="100%">
|
|
From: Benjamin C. <bc...@us...> - 2002-04-11 18:39:24
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv24877/templates/default
Modified Files:
header-popup.html header.html
Log Message:
Added charset meta tag
Index: header-popup.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/header-popup.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- header-popup.html 11 Apr 2002 15:50:55 -0000 1.1
+++ header-popup.html 11 Apr 2002 18:39:16 -0000 1.2
@@ -3,6 +3,7 @@
<META HTTP-EQUIV="Expires" CONTENT="-1">
<title>phpBugTracker - {$page_title}</title>
<link rel="StyleSheet" href="styles/{$STYLE}.css" type="text/css">
+ <META http-equiv="Content-Type" content="text/html; charset={$STRING.lang_charset}">
</head>
<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
<table width="100%" cellspacing="0" cellpadding="0">
Index: header.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/header.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- header.html 11 Apr 2002 07:34:26 -0000 1.5
+++ header.html 11 Apr 2002 18:39:16 -0000 1.6
@@ -3,6 +3,7 @@
<META HTTP-EQUIV="Expires" CONTENT="-1">
<title>phpBugTracker - {$page_title}</title>
<link rel="StyleSheet" href="styles/{$STYLE}.css" type="text/css">
+ <META http-equiv="Content-Type" content="text/html; charset={$STRING.lang_charset}">
</head>
<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
<table width="100%" cellspacing="0" cellpadding="0" height="100%">
|
|
From: Benjamin C. <bc...@us...> - 2002-04-11 18:16:03
|
Update of /cvsroot/phpbt/phpbt In directory usw-pr-cvs1:/tmp/cvs-serv18015 Modified Files: CHANGELOG Log Message: Index: CHANGELOG =================================================================== RCS file: /cvsroot/phpbt/phpbt/CHANGELOG,v retrieving revision 1.53 retrieving revision 1.54 diff -u -r1.53 -r1.54 --- CHANGELOG 8 Apr 2002 12:54:54 -0000 1.53 +++ CHANGELOG 11 Apr 2002 18:15:59 -0000 1.54 @@ -1,4 +1,4 @@ --- 0.8.0 -- +-- 0.8.0 -- 11 Apr 2002 : Switched database abstraction layer to PEAR::DB. : Added bug dependencies. : Added Oracle 8.1.x support. |
|
From: Benjamin C. <bc...@us...> - 2002-04-11 18:15:44
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv17894
Modified Files:
UPGRADING
Log Message:
Updated for 0.8.0
Index: UPGRADING
===================================================================
RCS file: /cvsroot/phpbt/phpbt/UPGRADING,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- UPGRADING 14 Mar 2002 19:37:44 -0000 1.9
+++ UPGRADING 11 Apr 2002 18:15:41 -0000 1.10
@@ -1,14 +1,20 @@
-Upgrading from 0.6.x to 0.7.2
+Upgrading from 0.7.x to 0.8.x
-----------------------------
-A new table, bug_vote, has been added, and new configuration variables have
-been added.
+Two new tables, user_pref and bug_dependency have been added. The handling
+of sequences has been changed with the conversion to PEAR::DB, which causes
+new *_seq tables to be created in MySQL and new sequences to be created in
+PostgreSQL. Four new configuration values have been added to the configuration
+table. A new constant definition was added to config-dist.php, SMARTY_PATH,
+which is used to specify the location of the smarty templates package. This
+constant should be an empty string ('') if smarty (http://smarty.php.net/) is
+in your include path.
Following the steps below will upgrade your installation of phpBT.
1. Edit config-dist.php, changing the database settings to match those from
- your old config.php (DB_* and TBL_PREFIX constants). Save config-dist.php
- as config.php.
+ your old config.php (DB_*, SMARTY_PATH and TBL_PREFIX constants). Save
+ config-dist.php as config.php.
2. With your web browser, load upgrade.php from the directory where you
installed the new set of files.
3. After running that script your installation has been upgraded.
|
|
From: Benjamin C. <bc...@us...> - 2002-04-11 18:08:08
|
Update of /cvsroot/phpbt/phpbt/languages In directory usw-pr-cvs1:/tmp/cvs-serv6618/languages Modified Files: cz.php Log Message: Changed the charset Index: cz.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/cz.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- cz.php 26 Mar 2002 17:12:29 -0000 1.3 +++ cz.php 11 Apr 2002 17:37:24 -0000 1.4 @@ -1,6 +1,6 @@ <?php -// strings-cz.php - Czech strings and titles +// cz.php - Czech strings and titles // ------------------------------------------------------------------------ // Copyright (c) 2001 The phpBugTracker Group // ------------------------------------------------------------------------ @@ -23,7 +23,7 @@ // $Id$ $STRING = array( - 'lang_charset' => 'us-ascii', + 'lang_charset' => 'iso-8859-2', 'nouser' => 'Tento uivatel neexistuje', 'dupeofself' => 'BUG nemùe být shodný se sám se sebou', 'nobug' => 'Tento BUG neexistuje', |
|
From: Benjamin C. <bc...@us...> - 2002-04-11 16:08:11
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv11949/templates/default
Modified Files:
bugdisplay.html
Log Message:
Localization cleanup
Index: bugdisplay.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugdisplay.html,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- bugdisplay.html 11 Apr 2002 15:49:58 -0000 1.25
+++ bugdisplay.html 11 Apr 2002 16:08:05 -0000 1.26
@@ -1,4 +1,4 @@
-{include file="header.html" page_title="Edit Bug #$bug_id"}
+{include file="header.html" page_title="$TITLE[editbug] #$bug_id"}
<script language="JavaScript">
<!--
versions = new Array();
|
|
From: Benjamin C. <bc...@us...> - 2002-04-11 16:08:11
|
Update of /cvsroot/phpbt/phpbt/languages In directory usw-pr-cvs1:/tmp/cvs-serv11949/languages Modified Files: en.php Log Message: Localization cleanup Index: en.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/en.php,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- en.php 26 Mar 2002 17:12:29 -0000 1.13 +++ en.php 11 Apr 2002 16:08:05 -0000 1.14 @@ -94,7 +94,7 @@ 'os' => 'Operating Systems', 'resolution' => 'Resolutions', 'status' => 'Statuses', - 'severity' => 'Severity', + 'severity' => 'Severities', 'user' => 'Users', 'home' => 'Home', 'reporting' => 'Reporting', |
|
From: Benjamin C. <bc...@us...> - 2002-04-11 16:08:11
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv11949/templates/default/admin
Modified Files:
component-edit.html grouplist.html oslist.html
project-add.html project-edit.html projectlist.html
resolutionlist.html severitylist.html statuslist.html
userlist.html version-edit.html
Log Message:
Localization cleanup
Index: component-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/component-edit.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- component-edit.html 3 Apr 2002 00:57:10 -0000 1.1
+++ component-edit.html 11 Apr 2002 16:08:05 -0000 1.2
@@ -1,14 +1,14 @@
{if $component_id}
- {assign var="action" value=$STRING.edit}
+ {assign var="page_title" value=$TITLE.editcomponent}
{else}
- {assign var="action" value=$STRING.addnew}
+ {assign var="page_title" value=$TITLE.addcomponent}
{/if}
{if $smarty.request.use_js}
- {include file="admin/header-popup.html" page_title="$action Component"}
+ {include file="admin/header-popup.html" page_title=$page_title}
{else}
- {include file="admin/header.html" page_title="$action Component"}
+ {include file="admin/header.html" page_title=$page_title}
{/if}
- <b>{$action} Component</b>
+ <b>{$page_title}</b>
<hr size="1">
{if $error}<div class="error">{$error}</div>{/if}
<form action="{$SCRIPT_NAME}" method="post">
Index: grouplist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/grouplist.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- grouplist.html 3 Apr 2002 00:57:10 -0000 1.2
+++ grouplist.html 11 Apr 2002 16:08:05 -0000 1.3
@@ -1,4 +1,4 @@
-{include file="admin/header.html" page_title="Groups"}
+{include file="admin/header.html" page_title="$TITLE[group]"}
<script language="JavaScript">
<!--
Index: oslist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/oslist.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- oslist.html 7 Apr 2002 20:37:55 -0000 1.5
+++ oslist.html 11 Apr 2002 16:08:05 -0000 1.6
@@ -1,4 +1,4 @@
-{include file="admin/header.html" page_title="Operating Systems"}
+{include file="admin/header.html" page_title="$TITLE[os]"}
<script language="JavaScript">
<!--
Index: project-add.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/project-add.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- project-add.html 3 Apr 2002 00:57:10 -0000 1.2
+++ project-add.html 11 Apr 2002 16:08:05 -0000 1.3
@@ -1,4 +1,4 @@
-{include file="admin/header.html" page_title="$STRING[addnew] Project"}
+{include file="admin/header.html" page_title="$TITLE[addproject]"}
<form action="project.php" method="post">
<input type="hidden" name="id" value="0">
Index: project-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/project-edit.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- project-edit.html 4 Apr 2002 13:53:02 -0000 1.4
+++ project-edit.html 11 Apr 2002 16:08:05 -0000 1.5
@@ -1,4 +1,4 @@
-{include file="admin/header.html" page_title="Edit Project"}
+{include file="admin/header.html" page_title="$TITLE[editproject]"}
<script language="JavaScript">
<!--
Index: projectlist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/projectlist.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- projectlist.html 7 Apr 2002 20:31:48 -0000 1.4
+++ projectlist.html 11 Apr 2002 16:08:05 -0000 1.5
@@ -1,4 +1,4 @@
-{include file="admin/header.html" page_title="Projects"}
+{include file="admin/header.html" page_title="$TITLE[project]"}
<table border="0" width="100%">
<tr>
Index: resolutionlist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/resolutionlist.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- resolutionlist.html 7 Apr 2002 20:36:48 -0000 1.6
+++ resolutionlist.html 11 Apr 2002 16:08:05 -0000 1.7
@@ -1,4 +1,4 @@
-{include file="admin/header.html" page_title="Resolutions"}
+{include file="admin/header.html" page_title="$TITLE[resolution]"}
<script language="JavaScript">
<!--
Index: severitylist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/severitylist.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- severitylist.html 7 Apr 2002 20:37:25 -0000 1.5
+++ severitylist.html 11 Apr 2002 16:08:05 -0000 1.6
@@ -1,4 +1,4 @@
-{include file="admin/header.html" page_title="Severities"}
+{include file="admin/header.html" page_title="$TITLE[severity]"}
<script language="JavaScript">
<!--
Index: statuslist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/statuslist.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- statuslist.html 7 Apr 2002 20:33:47 -0000 1.5
+++ statuslist.html 11 Apr 2002 16:08:05 -0000 1.6
@@ -1,4 +1,4 @@
-{include file="admin/header.html" page_title="Resolutions"}
+{include file="admin/header.html" page_title="$TITLE[status]"}
<script language="JavaScript">
<!--
Index: userlist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/userlist.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- userlist.html 7 Apr 2002 20:30:02 -0000 1.7
+++ userlist.html 11 Apr 2002 16:08:05 -0000 1.8
@@ -1,4 +1,4 @@
-{include file="admin/header.html" page_title="Users"}
+{include file="admin/header.html" page_title="$TITLE[user]"}
<script language="JavaScript">
<!--
Index: version-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/version-edit.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- version-edit.html 3 Apr 2002 00:57:10 -0000 1.1
+++ version-edit.html 11 Apr 2002 16:08:05 -0000 1.2
@@ -1,14 +1,14 @@
{if $version_id}
- {assign var="action" value=$STRING.edit}
+ {assign var="page_title" value=$TITLE.editversion}
{else}
- {assign var="action" value="$STRING.addnew}
+ {assign var="page_title" value=$TITLE.addversion}
{/if}
{if $smarty.request.use_js}
- {include file="admin/header-popup.html" page_title="$action Version"}
+ {include file="admin/header-popup.html" page_title=$page_title}
{else}
- {include file="admin/header.html" page_title="$action Version"}
+ {include file="admin/header.html" page_title=$page_title}
{/if}
- <b>{$action} Version</b>
+ <b>{$page_title}</b>
<hr size="1">
{if $error}<div class="error">{$error}</div>{/if}
<form action="{$SCRIPT_NAME}" method="post">
|
|
From: Benjamin C. <bc...@us...> - 2002-04-11 15:55:57
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin In directory usw-pr-cvs1:/tmp/cvs-serv7345/templates/default/admin Removed Files: wrap.html Log Message: These may make a comeback later --- wrap.html DELETED --- |