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: John W. <jp...@us...> - 2002-05-19 15:22:11
|
Jirka Pech wrote: >I want to add table for modules, where will stay project_id as primary key >and columns for use_oses, use_databases, use_environments. These columns >will stay as options when creating a project. >Maybe it will be better to have only four columns (except primary key) >(in two tables): project_id, module, module_table_name and module_key_name. >We will then check every row with corresponing project_id and use modules in >these rows. I'm not sure now, but I think it will be better for future, if >we want users to easily create their's own modules. It's easier to add a row >than a column to table (and table doesn't have to be off-line when adding a row). I've been thinking the same about adding the user selection of templates - adding a column for each item is 'quick' to develop but not as flexible as the 'row' method that I think you are talking of. The point about not having to take the db off line is a good one - adding a row to an existing table is really easy because you are simply manipulating data in the table whilst adding a column to an existing table is slightly more 'risky' as you're altering the structure. I can't see there's much difference for a new installation, but where an existing install is being upgraded the row 'method' has to be better... From the work I've been doing on the user-based template selection, the 'row' method requires significantly more coding & logic than the 'column' method but once that's done I think it's a more elegant solution. > > Jirka > > P.S.: Sorry for my english, it's not good, but I'm working on learning it better. >Please tell me when I'm saying something wrong. Hey, no need to apologise... Your English is far far better than my Czech.... (or any other European language other than English) > > _______________________________________________________________ > Hundreds of nodes, one monster rendering program. > Now that's a super model! Visit http://clustering.foundries.sf.net/ > > _______________________________________________ > phpbt-dev mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpbt-dev > |
|
From: Jirka P. <fi...@us...> - 2002-05-19 14:39:37
|
I want to add table for modules, where will stay project_id as primary key = and columns for use_oses, use_databases, use_environments. These columns wi= ll stay as options when creating a project. Maybe it will be better to have only four columns (except primary key) (in = two tables): project_id, module, module_table_name and module_key_name. We = will then check every row with corresponing project_id and use modules in t= hese rows. I'm not sure now, but I think it will be better for future, if w= e want users to easily create their's own modules. It's easier to add a row= than a column to table (and table doesn't have to be off-line when adding = a row). Porbably it should be per component not per project, I'm not sure now. I ca= n easily imagine sombody, who only wants database and environment tracking = for one component and OS and environment tracking for second component. Wha= t do you think? I will give one simple example of TBL_MODULE_OPTIONS and TBL_MODULE: TBL_MODULE_OPTIONS ------------------ module id; module name; where string 1; 'OS tracking'; '(TBL_OS.os_id =3D TBL_BUG.os_id)' 2; 'Environemnt tracking'; '(TBL_ENVIRONMENT.environment_id =3D TBL_BUG.env= ironment_id)' 3; Database tracking; '(TBL_DATABASE.database_id =3D TBL_BUG.database_id)' TBL_MODULE ---------- primary key; component id; module used 1; 4; 1 2; 4; 2 3; 6; 1 4; 6; 3 When we will have table like this one, we will then add at least these chec= ks: 1. When adding component 2. When editing component 3. When submitting bug 4. When printing out bug list 5. When searching through bugs We will also need to create an interface for creating new tables with avail= able value for module and adding rows to TBL_MODULE_OPTIONS. Imagine that admin will have checkboxes for all of these modules, so (s)he = will check e.g. use_oses only, when adding a project. Then each bug submitt= ed by user for this project will have to have OS filled. Otherwise not. And= admin will be also able to add new module by simply adding one table (fill= ed with available values) and one row to TBL_MODULE_OPTIONS. I don't know if my idea can be realized with templates and if it can be, I = don't know exactly how. Most probably, I will need your helping hand, Ben, = because we will probably need to create an ultimate interface, eh ... Please, think about it deeply, imagine it everything thoroughly and tell me= if I'm "too forward thinking" or if we can do it some other way, because I= 'm sometimes thinking at least two steps prior to the Epoch. Jirka P.S.: Sorry for my english, it's not good, but I'm working on learning it b= etter. Please tell me when I'm saying something wrong. |
|
From: Jirka P. <fi...@us...> - 2002-05-19 13:25:52
|
Update of /cvsroot/phpbt/phpbt/inc/db In directory usw-pr-cvs1:/tmp/cvs-serv14181/phpbt/inc/db Modified Files: mysql.php oci8.php pgsql.php Log Message: Added query for listing databases. Index: mysql.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/db/mysql.php,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- mysql.php 4 Apr 2002 13:54:03 -0000 1.6 +++ mysql.php 19 May 2002 13:25:48 -0000 1.7 @@ -1,5 +1,4 @@ <?php - $QUERY = array( 'admin-list-groups' => 'select ag.group_id, group_name, locked, '. 'count(ug.group_id) as count '. @@ -30,6 +29,11 @@ 'from '.TBL_SEVERITY. ' s left join '.TBL_BUG.' using (severity_id) '. 'group by s.severity_id, severity_name, severity_desc, severity_color, '. 'sort_order '. + 'order by %s %s', + 'admin-list-databases' => 'select d.database_id, database_name, '. + 'database_version, sort_order, count(bug_id) as bug_count '. + 'from '.TBL_DATABASE. ' d left join '.TBL_BUG.' using (database_id) '. + 'group by d.database_id, database_name, database_version, sort_order '. 'order by %s %s', 'admin-list-statuses' => 'select s.status_id, status_name, status_desc, '. 'sort_order, count(bug_id) as bug_count '. Index: oci8.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/db/oci8.php,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- oci8.php 4 Apr 2002 13:54:03 -0000 1.5 +++ oci8.php 19 May 2002 13:25:48 -0000 1.6 @@ -32,6 +32,12 @@ 'group by s.severity_id, severity_name, severity_desc, severity_color, '. 'sort_order '. 'order by %s %s', + 'admin-list-databases' => 'select d.database_id, database_name, '. + 'database_version, sort_order, count(bug_id) as bug_count '. + 'from '.TBL_DATABASE.' d, '.TBL_BUG.' b '. + 'where d.database_id = b.database_id(+) '. + 'group by d.database_id, database_name, database_version, sort_order '. + 'order by %s %s', 'admin-list-statuses' => 'select s.status_id, status_name, status_desc, '. 'sort_order, count(bug_id) as bug_count '. 'from '.TBL_STATUS.' s, '.TBL_BUG.' b '. Index: pgsql.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/db/pgsql.php,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- pgsql.php 4 Apr 2002 13:54:03 -0000 1.7 +++ pgsql.php 19 May 2002 13:25:48 -0000 1.8 @@ -31,6 +31,11 @@ 'group by s.severity_id, severity_name, severity_desc, severity_color, '. 'sort_order '. 'order by %s %s', + 'admin-list-databases' => 'select d.database_id, database_name, '. + 'database_version, sort_order, count(bug_id) as bug_count '. + 'from '.TBL_DATABASE. ' d left join '.TBL_BUG.' using (database_id) '. + 'group by d.database_id, database_name, database_version, sort_order '. + 'order by %s %s', 'admin-list-statuses' => 'select s.status_id, status_name, status_desc, '. 'sort_order, count(bug_id) as bug_count '. 'from '.TBL_STATUS.' s left join '. TBL_BUG.' using (status_id) '. |
|
From: Jirka P. <fi...@us...> - 2002-05-19 12:24:44
|
Update of /cvsroot/phpbt/phpbt/inc
In directory usw-pr-cvs1:/tmp/cvs-serv2211/phpbt/inc
Modified Files:
functions.php
Log Message:
Quotes. :-(
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/functions.php,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- functions.php 19 May 2002 12:21:10 -0000 1.27
+++ functions.php 19 May 2002 12:24:42 -0000 1.28
@@ -490,7 +490,7 @@
$headers .= "\n";
// There have to be no newline at the end of $headers
}
- $headers .= "Content-Type: text/plain; charset=\"".$STRING['lang_charset']."\"\n"Content-Transfer-Encoding: ";
+ $headers .= "Content-Type: text/plain; charset=\"".$STRING['lang_charset']."\"\nContent-Transfer-Encoding: ";
// If configured to send MIME encoded emails
if (SEND_MIME_EMAIL) {
|
|
From: Jirka P. <fi...@us...> - 2002-05-19 12:21:13
|
Update of /cvsroot/phpbt/phpbt/inc
In directory usw-pr-cvs1:/tmp/cvs-serv1687/phpbt/inc
Modified Files:
functions.php
Log Message:
Small code cleanup and repair of Content-Type.
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/functions.php,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- functions.php 19 May 2002 11:26:04 -0000 1.26
+++ functions.php 19 May 2002 12:21:10 -0000 1.27
@@ -490,15 +490,15 @@
$headers .= "\n";
// There have to be no newline at the end of $headers
}
- $headers .= "Content-type: text/plain; charset=\"".$STRING['lang_charset']."\"\n";
+ $headers .= "Content-Type: text/plain; charset=\"".$STRING['lang_charset']."\"\n"Content-Transfer-Encoding: ";
// If configured to send MIME encoded emails
if (SEND_MIME_EMAIL) {
- $headers .= "Content-Transfer-Encoding: quoted-printable\nMIME-Version: 1.0";
- $retval = mail ($to, $subject, qp_enc($body), $headers);
+ $retval = mail ($to, $subject, qp_enc($body), $headers.
+ "quoted-printable\nMIME-Version: 1.0");
} else {
- $headers .= "Content-Transfer-Encoding: 8bit";
- $retval = mail ($to, $subject, $body, $headers);
+ $retval = mail ($to, $subject, $body, $headers.
+ "8bit");
}
// Returns true if mail is eccepted for delivery, otherwise return false
|
|
From: Jirka P. <fi...@us...> - 2002-05-19 12:13:00
|
Ben, what's new with admin templates? I installed phpbt from a scratch to t= est everything and I see that place for admin templates changed in scripts = but not in CVS. They are not under admin/templates (which is the place scri= pts looking at), but under templates/default/admin. Will you move them to r= ight place in CVS or is it a mistake or something? I'm a bit confused by it= . Jirka |
|
From: Jirka P. <fi...@us...> - 2002-05-19 12:06:58
|
Update of /cvsroot/phpbt/phpbt/languages In directory usw-pr-cvs1:/tmp/cvs-serv31402/phpbt/languages Modified Files: cz_iso-8859-2.php cz.php Log Message: Worked too fast yeasterday. Too buggy. :-( Index: cz_iso-8859-2.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/cz_iso-8859-2.php,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- cz_iso-8859-2.php 19 May 2002 11:00:17 -0000 1.4 +++ cz_iso-8859-2.php 19 May 2002 12:06:56 -0000 1.5 @@ -74,7 +74,7 @@ 1 => 'Aktivní u¾ivatelé', 2 => 'Neaktivní u¾ivatelé'), 'dupe_dependency' => 'Tato závislost ji¾ byla pøidána', - 'image_path_not_writeable' => 'Webprocess nemù¾e zapisovat do podadresáøe "jpgimages", pøehledový obrázek nemù¾e být vygenerován.' + 'image_path_not_writeable' => 'Webprocess nemù¾e zapisovat do podadresáøe "jpgimages", pøehledový obrázek nemù¾e být vygenerován.', 'password_changed' => 'Va¹e heslo bylo zmìnìno', 'prefs_changed' => 'Va¹e nastavení byla zmìnìna', ); @@ -100,7 +100,7 @@ 'user' => 'U¾ivatelé', 'home' => 'Domù', 'reporting' => 'Hlá¹ení', - 'group' => 'Skupiny' + 'group' => 'Skupiny', 'bugvotes' => 'Volby bugù', 'bughistory' => 'Historie bugù', 'viewbug' => 'Prohlédnout bug', Index: cz.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/cz.php,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- cz.php 18 May 2002 15:40:19 -0000 1.7 +++ cz.php 19 May 2002 12:06:56 -0000 1.8 @@ -74,7 +74,7 @@ 1 => 'Aktivní uivatelé', 2 => 'Neaktivní uivatelé'), 'dupe_dependency' => 'Tato závislost ji byla pøidána', - 'image_path_not_writeable' => 'Webprocess nemùe zapisovat do podadresáøe "jpgimages", pøehledový obrázek nemùe být vygenerován.' + 'image_path_not_writeable' => 'Webprocess nemùe zapisovat do podadresáøe "jpgimages", pøehledový obrázek nemùe být vygenerován.', 'password_changed' => 'Vae heslo bylo zmìnìno', 'prefs_changed' => 'Vae nastavení byla zmìnìna', ); @@ -100,7 +100,7 @@ 'user' => 'Uivatelé', 'home' => 'Domù', 'reporting' => 'Hláení', - 'group' => 'Skupiny' + 'group' => 'Skupiny', 'bugvotes' => 'Volby bugù', 'bughistory' => 'Historie bugù', 'viewbug' => 'Prohlédnout bug', |
|
From: Jirka P. <fi...@us...> - 2002-05-19 11:54:27
|
Update of /cvsroot/phpbt/phpbt In directory usw-pr-cvs1:/tmp/cvs-serv29300/phpbt Modified Files: install.php Log Message: Added TBL_DATABASE. Index: install.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/install.php,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- install.php 11 Apr 2002 22:15:17 -0000 1.27 +++ install.php 19 May 2002 11:54:22 -0000 1.28 @@ -94,6 +94,7 @@ '/TBL_USER_PREF/' => $_pv['tbl_prefix'].'user_pref', '/TBL_VERSION/' => $_pv['tbl_prefix'].'version', '/TBL_PROJECT_GROUP/' => $_pv['tbl_prefix'].'project_group', + '/TBL_DATABASE/' => $_pv['tbl_prefix'].'database', '/OPTION_ADMIN_EMAIL/' => $_pv['admin_login'], '/OPTION_ADMIN_PASS/' => $_pv['encrypt_pass'] ? md5($_pv['admin_pass']) : $_pv['admin_pass'], |
|
From: Jirka P. <fi...@us...> - 2002-05-19 11:48:34
|
Update of /cvsroot/phpbt/phpbt/schemas In directory usw-pr-cvs1:/tmp/cvs-serv28383/phpbt/schemas Modified Files: mysql.in Log Message: Removed duplicate columns from TBL_BUG. Other schemas are OK. Index: mysql.in =================================================================== RCS file: /cvsroot/phpbt/phpbt/schemas/mysql.in,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- mysql.in 18 May 2002 16:07:14 -0000 1.28 +++ mysql.in 19 May 2002 11:48:30 -0000 1.29 @@ -70,8 +70,6 @@ last_modified_date bigint(20) unsigned NOT NULL default '0', project_id int(10) unsigned NOT NULL default '0', version_id int(10) unsigned NOT NULL default '0', - closed_in_version_id int(10) unsigned NOT NULL default '0', - to_be_closed_in_version_id int(10) unsigned NOT NULL default '0', component_id int(10) unsigned NOT NULL default '0', os_id tinyint(3) unsigned NOT NULL default '0', browser_string varchar(255) NOT NULL default '', |
|
From: Jirka P. <fi...@us...> - 2002-05-19 11:26:06
|
Update of /cvsroot/phpbt/phpbt/inc
In directory usw-pr-cvs1:/tmp/cvs-serv24153/phpbt/inc
Modified Files:
functions.php
Log Message:
Added check for SEND_MIME_EMAIL when sending emails.
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/functions.php,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- functions.php 17 May 2002 14:35:09 -0000 1.25
+++ functions.php 19 May 2002 11:26:04 -0000 1.26
@@ -482,7 +482,7 @@
return (trim($output));
}
-// mailer with use of quoted-printable encoding
+// mailer with use of quoted-printable encoding (if configured so)
function qp_mail($to, $subject = 'No subject', $body, $headers = '') {
global $STRING;
@@ -490,9 +490,19 @@
$headers .= "\n";
// There have to be no newline at the end of $headers
}
- $headers .= "Content-type: Text/plain; charset=\"".$STRING['lang_charset']."\"\n";
- $headers .= "Content-Transfer-Encoding: quoted-printable\nMIME-Version: 1.0";
- mail ($to, $subject, qp_enc($body), $headers);
+ $headers .= "Content-type: text/plain; charset=\"".$STRING['lang_charset']."\"\n";
+
+ // If configured to send MIME encoded emails
+ if (SEND_MIME_EMAIL) {
+ $headers .= "Content-Transfer-Encoding: quoted-printable\nMIME-Version: 1.0";
+ $retval = mail ($to, $subject, qp_enc($body), $headers);
+ } else {
+ $headers .= "Content-Transfer-Encoding: 8bit";
+ $retval = mail ($to, $subject, $body, $headers);
+ }
+
+ // Returns true if mail is eccepted for delivery, otherwise return false
+ return ($retval);
}
?>
|
|
From: Jirka P. <fi...@us...> - 2002-05-19 11:00:20
|
Update of /cvsroot/phpbt/phpbt/languages In directory usw-pr-cvs1:/tmp/cvs-serv18340/phpbt/languages Modified Files: cz_iso-8859-2.php Log Message: Repaired my own mistake again. :-( Index: cz_iso-8859-2.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/cz_iso-8859-2.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- cz_iso-8859-2.php 18 May 2002 15:40:19 -0000 1.3 +++ cz_iso-8859-2.php 19 May 2002 11:00:17 -0000 1.4 @@ -23,7 +23,7 @@ // $Id$ $STRING = array( - 'lang_charset' => 'Windows-1250', + 'lang_charset' => 'ISO-8859-2', 'nouser' => 'Tento u¾ivatel neexistuje', 'dupeofself' => 'BUG nemù¾e být shodný se sám se sebou', 'nobug' => 'Tento BUG neexistuje', |
|
From: Jirka P. <fi...@us...> - 2002-05-19 10:37:27
|
> The new option is fine for me, we just need to remember to actually > check for it when sending mail. :) Yes, I will write the checks when I will change bug.php (today). I had to g= o home yesterday, just after modification to schemas. Jirka P.S.: How are you reading this e-mail (uses qp_mail with same qp_enc functi= on for sending)? :-) |
|
From: Benjamin C. <bc...@us...> - 2002-05-18 16:21:16
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv7156
Modified Files:
query.php
Log Message:
Fixes bug #556749 - Priority not showing correctly
Index: query.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/query.php,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- query.php 18 May 2002 02:59:32 -0000 1.73
+++ query.php 18 May 2002 16:21:12 -0000 1.74
@@ -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) {
+ global $select;
+
$pos--;
switch ($coltype) {
|
|
From: Ben C. <php...@be...> - 2002-05-18 16:19:03
|
The new option is fine for me, we just need to remember to actually check for it when sending mail. :) On Sat, May 18, 2002 at 02:41:42PM -0000, Jirka Pech wrote: > > If you don't feel comfortable editing the postgres and oracle files, I > > can do that. Adding the configuration option for sending mime email is > > a good idea, but I wonder if it's overkill. That is, will enough people > > not want to send mime email to justify yet another configuration option? > > I'm working with Oracle and MySQL every day, but I don't know much about Postgresql (I think I'm able to edit chemas for Postgresql, but I think better will be to let you or somebody else to do it). I will always start with MySQL schemas because I'm testing on MySQL, then I'll modify Oracle schema and let you modify Postgresql schema, OK? > > I don't know how many people will use this option, but I think it's a good option. I actually think we will be forced by users to add this option in the future. So, I will add it, OK? > > Jirka > > P.S.: How are you reading this e-mail (uses qp_mail with same qp_enc function for sending)? :-) > > _______________________________________________________________ > Hundreds of nodes, one monster rendering program. > Now that's a super model! Visit http://clustering.foundries.sf.net/ > > _______________________________________________ > phpbt-dev mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpbt-dev |
|
From: Jirka P. <fi...@us...> - 2002-05-18 16:07:17
|
Update of /cvsroot/phpbt/phpbt/schemas
In directory usw-pr-cvs1:/tmp/cvs-serv31114/phpbt/schemas
Modified Files:
oci8.in pgsql.in mysql.in
Log Message:
Added SEND_MIME_EMAIL configuration option to schemas.
Index: oci8.in
===================================================================
RCS file: /cvsroot/phpbt/phpbt/schemas/oci8.in,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- oci8.in 18 May 2002 15:59:20 -0000 1.12
+++ oci8.in 18 May 2002 16:07:14 -0000 1.13
@@ -317,6 +317,7 @@
INSERT INTO TBL_CONFIGURATION VALUES ('TIME_FORMAT','g:i A','See the <a href="http://www.php.net/date" target="_new">date page</a> in the PHP manual for more info','string');
INSERT INTO TBL_CONFIGURATION VALUES ('LANGUAGE','en','The language file to use for warning and error messages','multi');
INSERT INTO TBL_CONFIGURATION VALUES ('STYLE', 'default', 'The CSS file to use (color scheme)', 'multi');
+INSERT INTO TBL_CONFIGURATION VALUES ('SEND_MIME_EMAIL', '1', 'Whether to use MIME quoted-printable encoded emails or not', 'bool');
INSERT INTO TBL_OS VALUES (1,'All',1,'');
INSERT INTO TBL_OS VALUES (2,'Windows 3.1',2,'/Mozilla.*\\(Win16.*\\)/');
Index: pgsql.in
===================================================================
RCS file: /cvsroot/phpbt/phpbt/schemas/pgsql.in,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- pgsql.in 18 May 2002 15:59:20 -0000 1.29
+++ pgsql.in 18 May 2002 16:07:14 -0000 1.30
@@ -314,6 +314,7 @@
INSERT INTO TBL_CONFIGURATION VALUES ('TIME_FORMAT','g:i A','See the <a href="http://www.php.net/date" target="_new">date page</a> in the PHP manual for more info','string');
INSERT INTO TBL_CONFIGURATION VALUES ('LANGUAGE','en','The language file to use for warning and error messages','multi');
INSERT INTO TBL_CONFIGURATION VALUES ('STYLE', 'default', 'The CSS file to use (color scheme)', 'multi');
+INSERT INTO TBL_CONFIGURATION VALUES ('SEND_MIME_EMAIL', '1', 'Whether to use MIME quoted-printable encoded emails or not', 'bool');
INSERT INTO TBL_OS VALUES (1,'All',1,'');
INSERT INTO TBL_OS VALUES (2,'Windows 3.1',2,'/Mozilla.*\\(Win16.*\\)/');
Index: mysql.in
===================================================================
RCS file: /cvsroot/phpbt/phpbt/schemas/mysql.in,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- mysql.in 17 May 2002 15:31:11 -0000 1.27
+++ mysql.in 18 May 2002 16:07:14 -0000 1.28
@@ -320,6 +320,7 @@
INSERT INTO TBL_CONFIGURATION VALUES ('TIME_FORMAT','g:i A','See the <a href="http://www.php.net/date" target="_new">date page</a> in the PHP manual for more info','string');
INSERT INTO TBL_CONFIGURATION VALUES ('LANGUAGE','en','The language file to use for warning and error messages','multi');
INSERT INTO TBL_CONFIGURATION VALUES ('STYLE', 'default', 'The CSS file to use (color scheme)', 'multi');
+INSERT INTO TBL_CONFIGURATION VALUES ('SEND_MIME_EMAIL', '1', 'Whether to use MIME quoted-printable encoded emails or not', 'bool');
INSERT INTO TBL_OS VALUES (1,'All',1,'');
INSERT INTO TBL_OS VALUES (2,'Windows 3.1',2,'/Mozilla.*\\(Win16.*\\)/');
|
|
From: Jirka P. <fi...@us...> - 2002-05-18 15:59:23
|
Update of /cvsroot/phpbt/phpbt/schemas In directory usw-pr-cvs1:/tmp/cvs-serv26077/phpbt/schemas Modified Files: oci8.in pgsql.in Log Message: Changed Oracle and PostgreSQL schemas according to my change in MySQL schema. Ben, please, check pgsql.in and let me know, if it's OK. If it's OK, I think I will be able to change all three schemas. Index: oci8.in =================================================================== RCS file: /cvsroot/phpbt/phpbt/schemas/oci8.in,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- oci8.in 1 May 2002 12:20:55 -0000 1.11 +++ oci8.in 18 May 2002 15:59:20 -0000 1.12 @@ -62,6 +62,7 @@ priority number(3) default '0' NOT NULL, status_id number(3) default '0' NOT NULL, resolution_id number(3) default '0' NOT NULL, + database_id number(3) default '0' NOT NULL, assigned_to number(10) default '0' NOT NULL, created_by number(10) default '0' NOT NULL, created_date number(20) default '0' NOT NULL, @@ -73,6 +74,8 @@ os_id number(3) default '0' NOT NULL, browser_string varchar2(255) default '' NOT NULL, close_date number(20) default '0' NOT NULL, + closed_in_version_id number(10) default '0' NOT NULL, + to_be_closed_in_version_id number(10) default '0' NOT NULL, PRIMARY KEY (bug_id) ) ; @@ -255,6 +258,14 @@ PRIMARY KEY (version_id) ) ; +CREATE TABLE TBL_DATABASE ( + database_id number(10) default '0' NOT NULL, + database_name varchar2(30) default '' NOT NULL, + database_version varchar2(10) default '' NOT NULL, + sort_order number(3) default '0' NOT NULL, + PRIMARY KEY (database_id) +); + INSERT INTO TBL_AUTH_USER (user_id, login, first_name, last_name, email, password) values (1, 'OPTION_ADMIN_EMAIL', 'System', 'Admin', 'OPTION_ADMIN_EMAIL', @@ -365,3 +376,8 @@ INSERT INTO TBL_STATUS VALUES (6,'Verified','The resolution is confirmed by the reporter',6); INSERT INTO TBL_STATUS VALUES (7,'Closed','The bug is officially squashed (QA)',7); CREATE SEQUENCE TBL_STATUS_seq START WITH 8 NOCACHE; + +INSERT INTO TBL_DATABASE VALUES (1,'Oracle','8.1.7',1); +INSERT INTO TBL_DATABASE VALUES (2,'MySQL','3.23.49',2); +INSERT INTO TBL_DATABASE VALUES (3,'PostgreSQL','7.1.3',3); +CREATE SEQUENCE TBL_DATABASE_seq START WITH 4 NOCACHE; Index: pgsql.in =================================================================== RCS file: /cvsroot/phpbt/phpbt/schemas/pgsql.in,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- pgsql.in 1 May 2002 12:20:55 -0000 1.28 +++ pgsql.in 18 May 2002 15:59:20 -0000 1.29 @@ -65,6 +65,7 @@ priority INT2 NOT NULL DEFAULT '0', status_id INT2 NOT NULL DEFAULT '0', resolution_id INT2 NOT NULL DEFAULT '0', + database_id INT2 NOT NULL DEFAULT '0', assigned_to INT4 NOT NULL DEFAULT '0', created_by INT4 NOT NULL DEFAULT '0', created_date INT8 NOT NULL DEFAULT '0', @@ -76,6 +77,8 @@ os_id INT2 NOT NULL DEFAULT '0', browser_string varchar(255) NOT NULL DEFAULT '', close_date INT8 NOT NULL DEFAULT '0', + closed_in_version_id INT4 NOT NULL DEFAULT '0', + to_be_closed_in_version_id INT4 NOT NULL DEFAULT '0', PRIMARY KEY (bug_id) ); @@ -248,6 +251,14 @@ PRIMARY KEY (version_id) ); +CREATE TABLE TBL_DATABASE ( + database_id INT4 NOT NULL DEFAULT '0', + database_name varchar(30) NOT NULL DEFAULT '', + database_version varchar(10) NOT NULL DEFAULT '', + sort_order INT2 NOT NULL DEFAULT '0', + PRIMARY KEY (database_id) +); + -- -- -- Insert initial data -- -- @@ -363,6 +374,10 @@ INSERT INTO TBL_STATUS VALUES (7,'Closed','The bug is officially squashed (QA)',7); CREATE SEQUENCE TBL_STATUS_seq START 7; +INSERT INTO TBL_DATABASE VALUES (1,'Oracle','8.1.7',1); +INSERT INTO TBL_DATABASE VALUES (2,'MySQL','3.23.49',2); +INSERT INTO TBL_DATABASE VALUES (3,'PostgreSQL','7.1.3',3); +CREATE SEQUENCE TBL_DATABASE_seq START 3; -- -- Indexes for table TBL_GROUP_PERM @@ -390,3 +405,4 @@ COMMIT; + |
|
From: Jirka P. <fi...@us...> - 2002-05-18 15:40:23
|
Update of /cvsroot/phpbt/phpbt/languages In directory usw-pr-cvs1:/tmp/cvs-serv16285/phpbt/languages Modified Files: cz_iso-8859-2.php cz.php en.php Log Message: Some translations to Czech and copyright update in en.php. Index: cz_iso-8859-2.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/cz_iso-8859-2.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- cz_iso-8859-2.php 7 May 2002 13:43:38 -0000 1.2 +++ cz_iso-8859-2.php 18 May 2002 15:40:19 -0000 1.3 @@ -1,8 +1,8 @@ <?php -// cz.php - Czech strings and titles encoded in iso-8859-2 codepage +// cz_iso-8859-2.php - Czech strings and titles encoded in iso-8859-2 // ------------------------------------------------------------------------ -// Copyright (c) 2002 The phpBugTracker Group +// Copyright (c) 2001, 2002 The phpBugTracker Group // ------------------------------------------------------------------------ // This file is part of phpBugTracker // @@ -23,7 +23,7 @@ // $Id$ $STRING = array( - 'lang_charset' => 'iso-8859-2', + 'lang_charset' => 'Windows-1250', 'nouser' => 'Tento u¾ivatel neexistuje', 'dupeofself' => 'BUG nemù¾e být shodný se sám se sebou', 'nobug' => 'Tento BUG neexistuje', @@ -75,6 +75,8 @@ 2 => 'Neaktivní u¾ivatelé'), 'dupe_dependency' => 'Tato závislost ji¾ byla pøidána', 'image_path_not_writeable' => 'Webprocess nemù¾e zapisovat do podadresáøe "jpgimages", pøehledový obrázek nemù¾e být vygenerován.' + 'password_changed' => 'Va¹e heslo bylo zmìnìno', + 'prefs_changed' => 'Va¹e nastavení byla zmìnìna', ); // Page titles @@ -92,12 +94,32 @@ 'editversion' => 'Upravit verzi', 'project' => 'Projekty', 'os' => 'Operaèní systémy', - 'resolution' => 'Rozli¹ení', + 'resolution' => 'Rozhodnutí', 'status' => 'Statusy', 'severity' => 'Dùle¾itosti', 'user' => 'U¾ivatelé', 'home' => 'Domù', 'reporting' => 'Hlá¹ení', 'group' => 'Skupiny' + 'bugvotes' => 'Volby bugù', + 'bughistory' => 'Historie bugù', + 'viewbug' => 'Prohlédnout bug', + 'addattachment' => 'Pøidat pøílohu', + 'accountcreated' => 'Úèet vytvoøen', + 'changessaved' => 'Zmìny ulo¾eny', + 'preferences' => 'U¾ivatelská nastavení', + 'edituser' => 'Zmìnit U¾ivatele', + 'adduser' => 'Pøidat U¾ivatele', + 'editstatus' => 'Zmìnit Status', + 'addstatus' => 'Pøidat Status', + 'editseverity' => 'Zmìnit Dùle¾itost', + 'addseverity' => 'Pøidat Dùle¾itost', + 'editresolution' => 'Zmìnit Rozhodnutí', + 'addresolution' => 'Pøidat Rozhodnutí', + 'editos' => 'Zmìnit Operaèní systém', + 'addos' => 'Pøidat Operaèní systém', + 'editgroup' => 'Zmìnit Skupinu', + 'addgroup' => 'Pøidat Skupinu', + 'configuration' => 'Nastavení', ); ?> Index: cz.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/cz.php,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- cz.php 7 May 2002 13:43:38 -0000 1.6 +++ cz.php 18 May 2002 15:40:19 -0000 1.7 @@ -75,6 +75,8 @@ 2 => 'Neaktivní uivatelé'), 'dupe_dependency' => 'Tato závislost ji byla pøidána', 'image_path_not_writeable' => 'Webprocess nemùe zapisovat do podadresáøe "jpgimages", pøehledový obrázek nemùe být vygenerován.' + 'password_changed' => 'Vae heslo bylo zmìnìno', + 'prefs_changed' => 'Vae nastavení byla zmìnìna', ); // Page titles @@ -92,12 +94,32 @@ 'editversion' => 'Upravit verzi', 'project' => 'Projekty', 'os' => 'Operaèní systémy', - 'resolution' => 'Rozliení', + 'resolution' => 'Rozhodnutí', 'status' => 'Statusy', 'severity' => 'Dùleitosti', 'user' => 'Uivatelé', 'home' => 'Domù', 'reporting' => 'Hláení', 'group' => 'Skupiny' + 'bugvotes' => 'Volby bugù', + 'bughistory' => 'Historie bugù', + 'viewbug' => 'Prohlédnout bug', + 'addattachment' => 'Pøidat pøílohu', + 'accountcreated' => 'Úèet vytvoøen', + 'changessaved' => 'Zmìny uloeny', + 'preferences' => 'Uivatelská nastavení', + 'edituser' => 'Zmìnit Uivatele', + 'adduser' => 'Pøidat Uivatele', + 'editstatus' => 'Zmìnit Status', + 'addstatus' => 'Pøidat Status', + 'editseverity' => 'Zmìnit Dùleitost', + 'addseverity' => 'Pøidat Dùleitost', + 'editresolution' => 'Zmìnit Rozhodnutí', + 'addresolution' => 'Pøidat Rozhodnutí', + 'editos' => 'Zmìnit Operaèní systém', + 'addos' => 'Pøidat Operaèní systém', + 'editgroup' => 'Zmìnit Skupinu', + 'addgroup' => 'Pøidat Skupinu', + 'configuration' => 'Nastavení', ); ?> Index: en.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/en.php,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- en.php 18 May 2002 03:01:22 -0000 1.16 +++ en.php 18 May 2002 15:40:19 -0000 1.17 @@ -2,7 +2,7 @@ // en.php - English strings and titles // ------------------------------------------------------------------------ -// Copyright (c) 2001 The phpBugTracker Group +// Copyright (c) 2001, 2002 The phpBugTracker Group // ------------------------------------------------------------------------ // This file is part of phpBugTracker // |
|
From: Jirka P. <fi...@us...> - 2002-05-18 14:41:53
|
> If you don't feel comfortable editing the postgres and oracle files, I > can do that. Adding the configuration option for sending mime email is > a good idea, but I wonder if it's overkill. That is, will enough people > not want to send mime email to justify yet another configuration option? I'm working with Oracle and MySQL every day, but I don't know much about Po= stgresql (I think I'm able to edit chemas for Postgresql, but I think bette= r will be to let you or somebody else to do it). I will always start with M= ySQL schemas because I'm testing on MySQL, then I'll modify Oracle schema a= nd let you modify Postgresql schema, OK? I don't know how many people will use this option, but I think it's a good = option. I actually think we will be forced by users to add this option in t= he future. So, I will add it, OK? Jirka P.S.: How are you reading this e-mail (uses qp_mail with same qp_enc functi= on for sending)? :-) |
|
From: Ben C. <php...@be...> - 2002-05-18 14:32:04
|
If you don't feel comfortable editing the postgres and oracle files, I can do that. Adding the configuration option for sending mime email is a good idea, but I wonder if it's overkill. That is, will enough people not want to send mime email to justify yet another configuration option? On Sat, May 18, 2002 at 02:24:10PM -0000, Jirka Pech wrote: > > OK, I will do it this way in the future. My next question is how it's done = > with non-mysql schemas, when I modify mysql.in and I'm not sure I'm able to= > modify schema for Postgresql? > > My next steps will be some translations from en.php to Czech. > > What do you think about configuration option SEND_MIME_EMAIL? > > Jirka |
|
From: Jirka P. <fi...@us...> - 2002-05-18 14:24:16
|
> The schema change is fine, and yes, please update config.php along with > config-dist.php. Even though it is distributed empty, it is much easier > for those keeping up with cvs (i.e., us) to keep current with database > changes. Thanks for the work! OK, I will do it this way in the future. My next question is how it's done = =3D with non-mysql schemas, when I modify mysql.in and I'm not sure I'm able to= =3D modify schema for Postgresql? My next steps will be some translations from en.php to Czech. What do you think about configuration option SEND_MIME_EMAIL? Jirka |
|
From: Benjamin C. <bc...@us...> - 2002-05-18 03:01:24
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv28837/templates/default/admin
Added Files:
wrap-popup.html wrap.html
Log Message:
Moving back to wrap.html from header/footer.html
--- NEW FILE: wrap-popup.html ---
<html>
<head>
<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%">
<tr>
<td class="maincontent">
{include file=$content_template}
</td>
</tr>
</table>
</body>
</html>
<head><meta HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"></head>
|
|
From: Benjamin C. <bc...@us...> - 2002-05-18 03:01:24
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv28837/templates/default
Added Files:
changessaved.html wrap-popup.html wrap.html
Log Message:
Moving back to wrap.html from header/footer.html
--- NEW FILE: changessaved.html ---
<div align="center">
<br>
<br>
{$changetext}
<br>
<br>
Return to the <a href="user.php">Personal Page</a> or <a href="index.php">phpBugTracker Home</a>.
</div>
--- NEW FILE: wrap-popup.html ---
<html>
<head>
<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">
<tr>
<td class="maincontent">
{include file=$content_template}
</td>
</tr>
</table>
</body>
</html>
<head><meta HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"></head>
|
|
From: Benjamin C. <bc...@us...> - 2002-05-18 03:01:24
|
Update of /cvsroot/phpbt/phpbt/languages In directory usw-pr-cvs1:/tmp/cvs-serv28837/languages Modified Files: en.php Log Message: Moving back to wrap.html from header/footer.html Index: en.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/en.php,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- en.php 11 Apr 2002 18:39:31 -0000 1.15 +++ en.php 18 May 2002 03:01:22 -0000 1.16 @@ -74,7 +74,9 @@ 1 => 'Active users', 2 => 'Inactive users'), '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' + 'image_path_not_writeable' => 'The subdirectory "jpgimages" is not writeable by the web process, so the summary image can not be rendered', + 'password_changed' => 'Your password has been changed', + 'prefs_changed' => 'Your preferences have been changed', ); // Page titles @@ -98,7 +100,27 @@ 'user' => 'Users', 'home' => 'Home', 'reporting' => 'Reporting', - 'group' => 'Groups' + 'group' => 'Groups', + 'bugvotes' => 'Bug Votes', + 'bughistory' => 'Bug History', + 'viewbug' => 'View Bug', + 'addattachment' => 'Add Attachment', + 'accountcreated' => 'Account Created', + 'changessaved' => 'Changes Saved', + 'preferences' => 'User Preferences', + 'edituser' => 'Edit User', + 'adduser' => 'Add User', + 'editstatus' => 'Edit Status', + 'addstatus' => 'Add Status', + 'editseverity' => 'Edit Severity', + 'addseverity' => 'Add Severity', + 'editresolution' => 'Edit Resolution', + 'addresolution' => 'Add Resolution', + 'editos' => 'Edit Operating System', + 'addos' => 'Add Operating System', + 'editgroup' => 'Edit Group', + 'addgroup' => 'Add Group', + 'configuration' => 'Configuration', ); ?> |
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv28631/default/admin
Modified Files:
component-edit.html configure.html group-edit.html
grouplist.html os-edit.html oslist.html project-add.html
project-edit.html projectlist.html resolution-edit.html
resolutionlist.html severity-edit.html severitylist.html
status-edit.html statuslist.html user-edit.html userlist.html
version-edit.html
Log Message:
Moving back to wrap.html from header/footer.html
Index: component-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/component-edit.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- component-edit.html 8 May 2002 01:10:00 -0000 1.3
+++ component-edit.html 18 May 2002 03:00:50 -0000 1.4
@@ -1,13 +1,3 @@
-{if $component_id}
- {assign var="page_title" value=$TITLE.editcomponent}
-{else}
- {assign var="page_title" value=$TITLE.addcomponent}
-{/if}
-{if $smarty.request.use_js}
- {include file="admin/header-popup.html" page_title=$page_title}
-{else}
- {include file="admin/header.html" page_title=$page_title}
-{/if}
<b>{$page_title}</b>
<hr size="1">
{if $error}<div class="error">{$error}</div>{/if}
@@ -56,8 +46,3 @@
</tr>
</table>
</form>
-{if $smarty.request.use_js}
- {include file="admin/footer-popup.html"}
-{else}
- {include file="admin/footer.html"}
-{/if}
Index: configure.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/configure.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- configure.html 8 May 2002 01:10:00 -0000 1.4
+++ configure.html 18 May 2002 03:00:50 -0000 1.5
@@ -1,9 +1,8 @@
-{include file="admin/header.html" page_title="Configuration"}
<form action="{$smarty.server.PHP_SELF}" method="post">
<table border="0" width="640">
<tr>
<td valign="top">
- <b> Configuration</b>
+ <b> {$page_title}</b>
<hr size="1">
<table border="0">
<tr>
@@ -38,4 +37,3 @@
</tr>
</table>
</form>
-{include file="admin/footer.html"}
Index: group-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/group-edit.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- group-edit.html 8 May 2002 01:10:00 -0000 1.2
+++ group-edit.html 18 May 2002 03:00:50 -0000 1.3
@@ -1,14 +1,4 @@
-{if $user_id}
- {assign var="action" value=$STRING.edit}
-{else}
- {assign var="action" value=$STRING.addnew}
-{/if}
-{if $smarty.request.use_js}
- {include file="admin/header-popup.html" page_title="$action Group"}
-{else}
- {include file="admin/header.html" page_title="$action Group"}
-{/if}
-<b>{$action} Group </b>
+<b>{$page_title} </b>
<hr size="1">
<form action="{$smarty.server.PHP_SELF}" method="post">
<input type="hidden" name="group_id" value="{$group_id}">
@@ -27,8 +17,3 @@
<br>
<input type='submit' name='submit' value='Submit'>
</form>
-{if $smarty.request.use_js}
- {include file="admin/footer-popup.html"}
-{else}
- {include file="admin/footer.html"}
-{/if}
Index: grouplist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/grouplist.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- grouplist.html 8 May 2002 01:10:00 -0000 1.5
+++ grouplist.html 18 May 2002 03:00:50 -0000 1.6
@@ -1,5 +1,3 @@
-{include file="admin/header.html" page_title="$TITLE[group]"}
-
<script language="JavaScript">
<!--
var me = '{$smarty.server.PHP_SELF}';
@@ -14,7 +12,7 @@
<table border="0" width="100%">
<tr>
<td valign="top">
- <b> Group List</b> - <a href="{$smarty.server.PHP_SELF}?op=edit&group_id=0" onClick="popupGroup(0); return false;">{$STRING.addnew} Group</a>
+ <b> {$page_title}</b> - <a href="{$smarty.server.PHP_SELF}?op=edit&group_id=0" onClick="popupGroup(0); return false;">{$STRING.addnew} Group</a>
<hr size="1">
<table border="0" width="100%">
<tr>
@@ -49,4 +47,3 @@
</td>
</tr>
</table>
-{include file="admin/footer.html"}
Index: os-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/os-edit.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- os-edit.html 8 May 2002 01:10:00 -0000 1.3
+++ os-edit.html 18 May 2002 03:00:50 -0000 1.4
@@ -1,14 +1,4 @@
-{if $os_id}
- {assign var="action" value=$STRING.edit}
-{else}
- {assign var="action" value=$STRING.addnew}
-{/if}
-{if $smarty.request.use_js}
- {include file="admin/header-popup.html" page_title="$action OS"}
-{else}
- {include file="admin/header.html" page_title="$action OS"}
-{/if}
-<b>{$action} OS </b>
+<b>{$page_title} </b>
<hr size="1">
<form action="{$smarty.server.PHP_SELF}" method="post">
<input type="hidden" name="os_id" value="{$os_id}">
@@ -37,8 +27,3 @@
<input type='submit' name='submit' value='Submit'>
</form>
</td>
-{if $smarty.request.use_js}
- {include file="admin/footer-popup.html"}
-{else}
- {include file="admin/footer.html"}
-{/if}
Index: oslist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/oslist.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- oslist.html 8 May 2002 01:10:00 -0000 1.8
+++ oslist.html 18 May 2002 03:00:50 -0000 1.9
@@ -1,5 +1,3 @@
-{include file="admin/header.html" page_title="$TITLE[os]"}
-
<script language="JavaScript">
<!--
var me = '{$smarty.server.PHP_SELF}';
@@ -14,7 +12,7 @@
<table border="0" width="100%">
<tr>
<td valign="top">
- <b> OS List</b> - <a href="{$smarty.server.PHP_SELF}?op=edit&os_id=0" onClick="popupOS(0); return false;">{$STRING.addnew} OS</a>
+ <b> {$page_title}</b> - <a href="{$smarty.server.PHP_SELF}?op=edit&os_id=0" onClick="popupOS(0); return false;">{$STRING.addnew} OS</a>
<hr size="1">
<table border="0" cellpadding="2" cellspacing="1" width="100%">
<tr>
@@ -54,4 +52,3 @@
</td>
</tr>
</table>
-{include file="admin/footer.html"}
Index: project-add.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/project-add.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- project-add.html 11 Apr 2002 16:08:05 -0000 1.3
+++ project-add.html 18 May 2002 03:00:50 -0000 1.4
@@ -1,5 +1,3 @@
-{include file="admin/header.html" page_title="$TITLE[addproject]"}
-
<form action="project.php" method="post">
<input type="hidden" name="id" value="0">
<input type="hidden" name="do" value="project">
@@ -93,4 +91,3 @@
</table>
<input type='submit' name='submit' value='Submit'>
</form>
-{include file="admin/footer.html"}
Index: project-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/project-edit.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- project-edit.html 8 May 2002 01:10:00 -0000 1.9
+++ project-edit.html 18 May 2002 03:00:50 -0000 1.10
@@ -1,5 +1,3 @@
-{include file="admin/header.html" page_title="Edit Project"}
-
<script language="JavaScript">
<!--
var me = '{$smarty.server.PHP_SELF}';
@@ -114,4 +112,3 @@
</td>
</tr>
</table>
-{include file="admin/footer.html"}
Index: projectlist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/projectlist.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- projectlist.html 8 May 2002 01:10:00 -0000 1.6
+++ projectlist.html 18 May 2002 03:00:50 -0000 1.7
@@ -1,9 +1,7 @@
-{include file="admin/header.html" page_title="$TITLE[project]"}
-
<table border="0" width="100%">
<tr>
<td valign="top">
- <b> Project List</b> - <a href="{$smarty.server.PHP_SELF}?op=add">{$STRING.addnew} Project</a>
+ <b> {$page_title}</b> - <a href="{$smarty.server.PHP_SELF}?op=add">{$STRING.addnew} Project</a>
<hr size="1">
<table border="0" cellpadding="2" cellspacing="1" width="100%">
<tr>
@@ -31,4 +29,3 @@
</td>
</tr>
</table>
-{include file="admin/footer.html"}
Index: resolution-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/resolution-edit.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- resolution-edit.html 8 May 2002 01:10:00 -0000 1.2
+++ resolution-edit.html 18 May 2002 03:00:50 -0000 1.3
@@ -1,14 +1,4 @@
-{if $resolution_id}
- {assign var="action" value=$STRING.edit}
-{else}
- {assign var="action" value=$STRING.addnew}
-{/if}
-{if $smarty.request.use_js}
- {include file="admin/header-popup.html" page_title="$action Resolution"}
-{else}
- {include file="admin/header.html" page_title="$action Resolution"}
-{/if}
-<b>{$action} Resolution </b>
+<b>{$page_title} </b>
<hr size="1">
<form action="{$smarty.server.PHP_SELF}" method="post">
<input type="hidden" name="resolution_id" value="{$resolution_id}">
@@ -36,8 +26,3 @@
<br>
<input type='submit' name='submit' value='Submit'>
</form>
-{if $smarty.request.use_js}
- {include file="admin/footer-popup.html"}
-{else}
- {include file="admin/footer.html"}
-{/if}
Index: resolutionlist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/resolutionlist.html,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- resolutionlist.html 8 May 2002 01:10:00 -0000 1.10
+++ resolutionlist.html 18 May 2002 03:00:50 -0000 1.11
@@ -1,5 +1,3 @@
-{include file="admin/header.html" page_title="$TITLE[resolution]"}
-
<script language="JavaScript">
<!--
var me = '{$smarty.server.PHP_SELF}';
@@ -14,7 +12,7 @@
<table border="0" width="100%">
<tr>
<td valign="top">
- <b> Resolution List</b> - <a href="{$smarty.server.PHP_SELF}?op=edit&resolution_id=0" onClick="popupResolution(0); return false;">{$STRING.addnew} Resolution</a>
+ <b> {$page_title}</b> - <a href="{$smarty.server.PHP_SELF}?op=edit&resolution_id=0" onClick="popupResolution(0); return false;">{$STRING.addnew} Resolution</a>
<hr size="1">
<table border="0" cellpadding="2" cellspacing="1">
<tr>
@@ -54,4 +52,3 @@
</td>
</tr>
</table>
-{include file="admin/footer.html"}
Index: severity-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/severity-edit.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- severity-edit.html 8 May 2002 01:10:00 -0000 1.2
+++ severity-edit.html 18 May 2002 03:00:50 -0000 1.3
@@ -1,14 +1,4 @@
-{if $status_id}
- {assign var="action" value=$STRING.edit}
-{else}
- {assign var="action" value=$STRING.addnew}
-{/if}
-{if $smarty.request.use_js}
- {include file="admin/header-popup.html" page_title="$action User"}
-{else}
- {include file="admin/header.html" page_title="$action User"}
-{/if}
-<b>{$action} Severity </b>
+<b>{$page_title} </b>
<hr size="1">
<form action="{$smarty.server.PHP_SELF}" method="post">
<input type="hidden" name="severity_id" value="{$severity_id}">
@@ -40,8 +30,3 @@
<br>
<input type='submit' name='submit' value='Submit'>
</form>
-{if $smarty.request.use_js}
- {include file="admin/footer-popup.html"}
-{else}
- {include file="admin/footer.html"}
-{/if}
Index: severitylist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/severitylist.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- severitylist.html 8 May 2002 01:10:00 -0000 1.8
+++ severitylist.html 18 May 2002 03:00:50 -0000 1.9
@@ -1,5 +1,3 @@
-{include file="admin/header.html" page_title="$TITLE[severity]"}
-
<script language="JavaScript">
<!--
var me = '{$smarty.server.PHP_SELF}';
@@ -14,7 +12,7 @@
<table border="0" width="100%">
<tr>
<td valign="top">
- <b> Severity List</b> - <a href="{$smarty.server.PHP_SELF}?op=edit&severity_id=0" onClick="popupSeverity(0); return false;">{$STRING.addnew} Severity</a>
+ <b> {$page_title}</b> - <a href="{$smarty.server.PHP_SELF}?op=edit&severity_id=0" onClick="popupSeverity(0); return false;">{$STRING.addnew} Severity</a>
<hr size="1">
<table border="0" cellpadding="2" cellspacing="1" width="100%">
<tr>
@@ -54,5 +52,3 @@
</td>
</tr>
</table>
-
-{include file="admin/footer.html"}
Index: status-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/status-edit.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- status-edit.html 8 May 2002 01:10:00 -0000 1.2
+++ status-edit.html 18 May 2002 03:00:50 -0000 1.3
@@ -1,14 +1,4 @@
-{if $status_id}
- {assign var="action" value=$STRING.edit}
-{else}
- {assign var="action" value=$STRING.addnew}
-{/if}
-{if $smarty.request.use_js}
- {include file="admin/header-popup.html" page_title="$action User"}
-{else}
- {include file="admin/header.html" page_title="$action User"}
-{/if}
-<b>{$action} Status </b>
+<b>{$page_title} </b>
<hr size="1">
<form action="{$smarty.server.PHP_SELF}" method="post">
<input type="hidden" name="status_id" value="{$status_id}">
@@ -36,8 +26,3 @@
<br>
<input type='submit' name='submit' value='Submit'>
</form>
-{if $smarty.request.use_js}
- {include file="admin/footer-popup.html"}
-{else}
- {include file="admin/footer.html"}
-{/if}
Index: statuslist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/statuslist.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- statuslist.html 8 May 2002 01:10:00 -0000 1.8
+++ statuslist.html 18 May 2002 03:00:50 -0000 1.9
@@ -1,5 +1,3 @@
-{include file="admin/header.html" page_title="$TITLE[status]"}
-
<script language="JavaScript">
<!--
var me = '{$smarty.server.PHP_SELF}';
@@ -14,7 +12,7 @@
<table border="0" width="100%">
<tr>
<td valign="top">
- <b> Status List</b> - <a href="{$smarty.server.PHP_SELF}?op=edit&status_id=0" onClick="popupStatus(0); return false;">{$STRING.addnew} Status</a>
+ <b> {$page_title}</b> - <a href="{$smarty.server.PHP_SELF}?op=edit&status_id=0" onClick="popupStatus(0); return false;">{$STRING.addnew} Status</a>
<hr size="1">
<table border="0" cellpadding="2" cellspacing="1" width="100%">
<tr>
@@ -54,4 +52,3 @@
</td>
</tr>
</table>
-{include file="admin/footer.html"}
Index: user-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/user-edit.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- user-edit.html 3 Apr 2002 00:57:10 -0000 1.1
+++ user-edit.html 18 May 2002 03:00:50 -0000 1.2
@@ -1,13 +1,3 @@
-{if $user_id}
- {assign var="action" value=$STRING.edit}
-{else}
- {assign var="action" value=$STRING.addnew}
-{/if}
-{if $smarty.request.use_js}
- {include file="admin/header-popup.html" page_title="$action User"}
-{else}
- {include file="admin/header.html" page_title="$action User"}
-{/if}
<script language="JavaScript">
<!--
var hadAdmin = {$hadadmin};
@@ -31,7 +21,7 @@
{/literal}
// -->
</script>
-<b>{$action} User </b>
+<b>{$page_title} </b>
<hr size="1">
<form action="user.php" method="post">
<input type="hidden" name="user_id" value="{$user_id}">
@@ -85,8 +75,3 @@
<br>
<input type='submit' name='submit' value='Submit'>
</form>
-{if $smarty.request.use_js}
- {include file="admin/footer-popup.html"}
-{else}
- {include file="admin/footer.html"}
-{/if}
Index: userlist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/userlist.html,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- userlist.html 8 May 2002 01:10:00 -0000 1.10
+++ userlist.html 18 May 2002 03:00:50 -0000 1.11
@@ -1,5 +1,3 @@
-{include file="admin/header.html" page_title="$TITLE[user]"}
-
<script language="JavaScript">
<!--
var me = '{$smarty.server.PHP_SELF}';
@@ -14,7 +12,7 @@
<table border="0" width="100%">
<tr>
<td valign="top">
- <b> User List</b> - <a href="{$smarty.server.PHP_SELF}?op=edit&user_id=0&filter={$filter}" onClick="popupUser(0); return false;">{$STRING.addnew} User</a>
+ <b> {$page_title}</b> - <a href="{$smarty.server.PHP_SELF}?op=edit&user_id=0&filter={$filter}" onClick="popupUser(0); return false;">{$STRING.addnew} User</a>
<hr size="1">
<form>
<div align="center">
@@ -50,5 +48,3 @@
</td>
</tr>
</table>
-
-{include file="admin/footer.html"}
Index: version-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/version-edit.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- version-edit.html 8 May 2002 01:10:00 -0000 1.3
+++ version-edit.html 18 May 2002 03:00:51 -0000 1.4
@@ -1,13 +1,3 @@
-{if $version_id}
- {assign var="page_title" value=$TITLE.editversion}
-{else}
- {assign var="page_title" value=$TITLE.addversion}
-{/if}
-{if $smarty.request.use_js}
- {include file="admin/header-popup.html" page_title=$page_title}
-{else}
- {include file="admin/header.html" page_title=$page_title}
-{/if}
<b>{$page_title}</b>
<hr size="1">
{if $error}<div class="error">{$error}</div>{/if}
@@ -40,8 +30,4 @@
</tr>
</table>
</form>
-{if $smarty.request.use_js}
- {include file="admin/footer-popup.html"}
-{else}
- {include file="admin/footer.html"}
-{/if}
+
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv28631/default
Modified Files:
bugattachmentform.html bugdisplay-printable.html
bugdisplay.html bugform.html bughistory.html buglist.html
bugvotes.html index.html newaccount-disabled.html
newaccount.html newaccountsuccess.html projectlist.html
queryform-simple.html queryform.html report.html user.html
Removed Files:
footer-popup.html footer.html header-popup.html header.html
passwordchanged.html preferenceschanged.html
Log Message:
Moving back to wrap.html from header/footer.html
Index: bugattachmentform.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugattachmentform.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- bugattachmentform.html 8 May 2002 01:10:00 -0000 1.6
+++ bugattachmentform.html 18 May 2002 03:00:50 -0000 1.7
@@ -1,8 +1,3 @@
-{if $smarty.request.use_js}
- {include file="header-popup.html" page_title="Add Attachment"}
-{else}
- {include file="header.html" page_title="Add Attachment"}
-{/if}
<form enctype="multipart/form-data" action="{$smarty.server.PHP_SELF}" method="post">
<input type="hidden" name="bugid" value="{$bugid}">
<input type="hidden" name="use_js" value="{$smarty.request.use_js}">
@@ -44,8 +39,3 @@
</tr>
</table>
</form>
-{if $smarty.request.use_js}
- {include file="admin/footer-popup.html"}
-{else}
- {include file="admin/footer.html"}
-{/if}
Index: bugdisplay-printable.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugdisplay-printable.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- bugdisplay-printable.html 8 May 2002 01:10:00 -0000 1.6
+++ bugdisplay-printable.html 18 May 2002 03:00:50 -0000 1.7
@@ -1,4 +1,3 @@
-{include file="header.html" page_title="Bug #$bug_id"}
<table border='0' width="640">
<tr>
<td width="210" colspan="2">
@@ -132,4 +131,3 @@
<a href="{$smarty.server.PHP_SELF}?op=show&bugid={$bug_id}">Back to bug #{$bug_id}</a>
<br>
<br>
-{include file="footer.html"}
Index: bugdisplay.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugdisplay.html,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- bugdisplay.html 8 May 2002 01:10:00 -0000 1.30
+++ bugdisplay.html 18 May 2002 03:00:50 -0000 1.31
@@ -1,4 +1,3 @@
-{include file="header.html" page_title="$TITLE[editbug] #$bug_id"}
<script language="JavaScript">
<!--
versions = new Array();
@@ -263,5 +262,3 @@
</tr>
{/section}
</table>
-
-{include file="footer.html"}
Index: bugform.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugform.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bugform.html 3 Apr 2002 18:45:27 -0000 1.4
+++ bugform.html 18 May 2002 03:00:50 -0000 1.5
@@ -1,4 +1,3 @@
-{include file="header.html" page_title="$TITLE[enterbug]"}
<form action="bug.php" method="post">
<input type="hidden" name="bugid" value="0">
<input type="hidden" name="project" value="{$project}">
@@ -82,4 +81,3 @@
</table>
<input type="submit" name="submit" value="Submit">
</form>
-{include file="footer.html"}
Index: bughistory.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bughistory.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- bughistory.html 8 May 2002 01:10:00 -0000 1.3
+++ bughistory.html 18 May 2002 03:00:50 -0000 1.4
@@ -1,4 +1,3 @@
-{include file="header.html" page_title="Bug History"}
<table border="0" cellspacing="2" cellpadding="2">
<tr bgcolor="#eeeeee">
<th>Who</th>
@@ -25,4 +24,3 @@
<a href="{$smarty.server.PHP_SELF}?op=show&bugid={$smarty.get.bugid}">Back to bug #{$smarty.get.bugid}</a>
<br>
<br>
-{include file="footer.html"}
Index: buglist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/buglist.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- buglist.html 3 Apr 2002 00:57:51 -0000 1.6
+++ buglist.html 18 May 2002 03:00:50 -0000 1.7
@@ -1,4 +1,3 @@
-{include file="header.html" page_title="Bug List"}
<table cellpadding="2">
<tr>
{section name=col loop=$db_fields}
@@ -32,4 +31,3 @@
</td>
</tr>
</table>
-{include file="footer.html"}
Index: bugvotes.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugvotes.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- bugvotes.html 8 May 2002 01:10:00 -0000 1.3
+++ bugvotes.html 18 May 2002 03:00:50 -0000 1.4
@@ -1,4 +1,3 @@
-{include file="header.html" page_title="Bug Votes"}
<table border="0" cellspacing="2" cellpadding="2">
<tr bgcolor="#eeeeee">
<th>Who</th>
@@ -19,4 +18,3 @@
<a href="{$smarty.server.PHP_SELF}?op=show&bugid={$smarty.get.bugid}">Back to bug #{$smarty.get.bugid}</a>
<br>
<br>
-{include file="footer.html"}
Index: index.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/index.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- index.html 3 Apr 2002 00:57:51 -0000 1.8
+++ index.html 18 May 2002 03:00:50 -0000 1.9
@@ -1,4 +1,3 @@
-{include file="header.html" page_title="Home"}
<table border=0 width="100%">
<tr>
<td valign="top" width="250">
@@ -60,4 +59,3 @@
{/section}
</table>
{/if}
-{include file="footer.html"}
Index: newaccount-disabled.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/newaccount-disabled.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- newaccount-disabled.html 3 Apr 2002 00:57:51 -0000 1.2
+++ newaccount-disabled.html 18 May 2002 03:00:50 -0000 1.3
@@ -1,4 +1,3 @@
-{include file="header.html"}
<table width="640" border="0">
<tr>
<td align="center">
@@ -7,4 +6,3 @@
</td>
</tr>
</table>
-{include file="footer.html"}
Index: newaccount.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/newaccount.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- newaccount.html 8 May 2002 01:10:00 -0000 1.5
+++ newaccount.html 18 May 2002 03:00:50 -0000 1.6
@@ -1,4 +1,3 @@
-{include file="header.html" page_title="Create a New Account"}
<h2>Create a new account</h2>
<form action="{$smarty.server.PHP_SELF}" method="post">
<input type="hidden" name="createaccount" value="1">
@@ -35,5 +34,3 @@
</table>
<input type="submit" value="Create new account">
</form>
-{include file="footer.html"}
-
Index: newaccountsuccess.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/newaccountsuccess.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- newaccountsuccess.html 3 Apr 2002 00:57:51 -0000 1.2
+++ newaccountsuccess.html 18 May 2002 03:00:50 -0000 1.3
@@ -1,4 +1,3 @@
-{include file="header.html" page_title="Account Created"}
<br>
<br>
<table border="0" width="640" align="center">
@@ -10,4 +9,3 @@
</table>
<br>
<br>
-{include file="footer.html"}
Index: projectlist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/projectlist.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- projectlist.html 3 Apr 2002 00:57:51 -0000 1.2
+++ projectlist.html 18 May 2002 03:00:50 -0000 1.3
@@ -1,4 +1,3 @@
-{include file="header.html" page_title="Add Bug"}
<H2>First, you must pick a product on which to enter
a bug.</H2>
@@ -14,4 +13,3 @@
</tr>
{/section}
</table>
-{include file="footer.html"}
Index: queryform-simple.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/queryform-simple.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- queryform-simple.html 8 May 2002 01:10:00 -0000 1.3
+++ queryform-simple.html 18 May 2002 03:00:50 -0000 1.4
@@ -1,4 +1,3 @@
-{include file="header.html" page_title="Bug Query"}
<script language="JavaScript">
<!--
versions = new Array();
@@ -88,5 +87,3 @@
</form>
<br>
Go to the <a href="{$smarty.server.PHP_SELF}?op=query&form=advanced">advanced query page</a>
-
-{include file="footer.html"}
Index: queryform.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/queryform.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- queryform.html 8 May 2002 01:10:00 -0000 1.9
+++ queryform.html 18 May 2002 03:00:50 -0000 1.10
@@ -1,4 +1,3 @@
-{include file="header.html" page_title="Bug Query"}
<script language="JavaScript">
<!--
versions = new Array();
@@ -230,6 +229,4 @@
</form>
<br>
Go to the <a href="{$smarty.server.PHP_SELF}?op=query">simple query page</a>
-
-{include file="footer.html"}
Index: report.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/report.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- report.html 8 May 2002 01:10:00 -0000 1.7
+++ report.html 18 May 2002 03:00:50 -0000 1.8
@@ -1,4 +1,3 @@
-{include file="header.html" page_title="Home"}
<form action="{$smarty.server.PHP_SELF}">
Bug statistics for
<select name="projectid" onChange="document.location.href='{$smarty.server.PHP_SELF}?projectid='+this.options[this.selectedIndex].value">
@@ -27,4 +26,3 @@
</tr>
{/section}
</table>
-{include file="footer.html"}
Index: user.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/user.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- user.html 8 May 2002 01:10:00 -0000 1.7
+++ user.html 18 May 2002 03:00:50 -0000 1.8
@@ -1,4 +1,3 @@
-{include file="header.html" page_title="User Page"}
<table border="0" cellpadding="0" cellspacing="0" width="600">
<td width="300" valign="top">
<form action="{$smarty.server.PHP_SELF}" method="post">
@@ -111,4 +110,3 @@
</tr>
</table>
</form>
-{include file="footer.html"}
--- footer-popup.html DELETED ---
--- footer.html DELETED ---
--- header-popup.html DELETED ---
--- header.html DELETED ---
--- passwordchanged.html DELETED ---
--- preferenceschanged.html DELETED ---
|