Alexander Leschinsky | 3 Sep 2004 10:12
Picon

mantisbt/doc ChangeLog,1.773,1.774

Update of /cvsroot/mantisbt/mantisbt/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4825/doc

Modified Files:
	ChangeLog 
Log Message:
Updated Dutch translation

Index: ChangeLog
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/doc/ChangeLog,v
retrieving revision 1.773
retrieving revision 1.774
diff -u -d -r1.773 -r1.774
--- ChangeLog	2 Sep 2004 22:00:16 -0000	1.773
+++ ChangeLog	3 Sep 2004 08:12:49 -0000	1.774
 <at>  <at>  -10,7 +10,7  <at>  <at> 
 - 0004429: [localization] Slovene national characters not displayed correctly (Jeroen Latour)
 - 0004423: [localization] Parse error in strings_hungarian.txt line 974 (Victor Boctor)
 - 0004435: [other] Auto-preview of attached images is broken (Victor Boctor)
-  Updated Spanish, German translations
+  Updated Spanish, German, Dutch translations

 2004.08.28  -  0.19.0rc1

-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
(Continue reading)

Alexander Leschinsky | 3 Sep 2004 10:12
Picon

mantisbt/lang strings_dutch.txt,1.72,1.73

Update of /cvsroot/mantisbt/mantisbt/lang
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4825/lang

Modified Files:
	strings_dutch.txt 
Log Message:
Updated Dutch translation

Index: strings_dutch.txt
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/lang/strings_dutch.txt,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -d -r1.72 -r1.73
--- strings_dutch.txt	26 Aug 2004 17:40:57 -0000	1.72
+++ strings_dutch.txt	3 Sep 2004 08:12:49 -0000	1.73
 <at>  <at>  -23,15 +23,15  <at>  <at> 

 # Group commands menuitems
 $s_actiongroup_menu_move = 'Verplaatsen';
-$s_actiongroup_menu_copy = 'Copy';
+$s_actiongroup_menu_copy = 'Kopie&euml;ren';
 $s_actiongroup_menu_assign = 'Toewijzen';
 $s_actiongroup_menu_close = 'Sluiten';
 $s_actiongroup_menu_delete = 'Verwijderen';
 $s_actiongroup_menu_resolve = 'Afronden';
 $s_actiongroup_menu_update_priority = 'Aanpassen prioriteit';
 $s_actiongroup_menu_update_status = 'Aanpassen status';
-$s_actiongroup_menu_update_view_status = 'Update View Status';
-$s_actiongroup_bugs = 'Selected Issues';
(Continue reading)

Glenn Henshaw | 4 Sep 2004 07:06
Picon

mantisbt bug_change_status_page.php,1.7,1.8 bug_update.php,1.69,1.70

Update of /cvsroot/mantisbt/mantisbt
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5769

Modified Files:
	bug_change_status_page.php bug_update.php 
Log Message:
fix for 0004479: Reporters can't close or reopen issues they reported

Index: bug_change_status_page.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/bug_change_status_page.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- bug_change_status_page.php	3 Sep 2004 04:19:01 -0000	1.7
+++ bug_change_status_page.php	4 Sep 2004 05:06:03 -0000	1.8
 <at>  <at>  -23,7 +23,12  <at>  <at> 
 	$f_bug_id = gpc_get_int( 'bug_id' );
 	$f_new_status = gpc_get_int( 'new_status' );

-	access_ensure_bug_level( access_get_status_threshold( $f_new_status ), $f_bug_id );
+	if ( ! ( ( access_has_bug_level( config_get( 'update_bug_threshold' ), $f_bug_id ) ) ||
+				( ( bug_get_field( $f_bug_id, 'reporter_id' ) == auth_get_current_user_id() ) && 
+						( ( ON == config_get( 'allow_reporter_reopen' ) ) ||
+								( ON == config_get( 'allow_reporter_close' ) ) ) ) ) ) {
+		access_denied();
+	}

 	$t_status_label = str_replace( " ", "_", get_enum_to_string( config_get( 'status_enum_string' ),
$f_new_status ) );
(Continue reading)

Glenn Henshaw | 4 Sep 2004 07:06
Picon

mantisbt/core html_api.php,1.129,1.130

Update of /cvsroot/mantisbt/mantisbt/core
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5769/core

Modified Files:
	html_api.php 
Log Message:
fix for 0004479: Reporters can't close or reopen issues they reported

Index: html_api.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/core/html_api.php,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -d -r1.129 -r1.130
--- html_api.php	28 Aug 2004 12:51:54 -0000	1.129
+++ html_api.php	4 Sep 2004 05:06:04 -0000	1.130
 <at>  <at>  -698,9 +698,22  <at>  <at> 
 			$t_status = $t_elem[0];
 			if ( ( $t_status <> $t_bug_current_state ) && ( $t_current_access >= access_get_status_threshold(
$t_status ) ) ) {
 				$t_enum_list[$t_status] = $t_elem2;
+			} 
+			# handle reporter can re-open
+			if ( ( config_get( 'bug_reopen_status' ) == $t_status ) && 
+						( config_get( 'bug_resolved_status_threshold' ) <= $t_bug_current_state ) && 
+						( ON == config_get( 'allow_reporter_reopen' ) ) && 
+						( bug_get_field( $p_bug_id, 'reporter_id' ) == auth_get_current_user_id() ) ) {
+				$t_enum_list[$t_status] = get_enum_to_string( lang_get( 'resolution_enum_string' ),
config_get( 'bug_reopen_resolution' ) );
+			}
(Continue reading)

Glenn Henshaw | 4 Sep 2004 07:06
Picon

mantisbt/doc ChangeLog,1.774,1.775

Update of /cvsroot/mantisbt/mantisbt/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5769/doc

Modified Files:
	ChangeLog 
Log Message:
fix for 0004479: Reporters can't close or reopen issues they reported

Index: ChangeLog
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/doc/ChangeLog,v
retrieving revision 1.774
retrieving revision 1.775
diff -u -d -r1.774 -r1.775
--- ChangeLog	3 Sep 2004 08:12:49 -0000	1.774
+++ ChangeLog	4 Sep 2004 05:06:04 -0000	1.775
 <at>  <at>  -5,6 +5,7  <at>  <at> 
 - 0003896: [security] Change default value of $g_view_summary_threshold to MANAGER (Victor Boctor)
 - 0004425: [bugtracker] Action group page exceeds max execution time (Victor Boctor)
 - 0004437: [bugtracker] Filenames of uploaded attached files are damaged (thraxisp)
+- 0004479: [bugtracker] Reporters can't close or reopen issues they reported
 - 0004426: [email] Email notifications to users with language set to "auto" causes errors (thraxisp)
 - 0004448: [email] Custom severity and status shown in mail as code (thraxisp)
 - 0004429: [localization] Slovene national characters not displayed correctly (Jeroen Latour)

-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
(Continue reading)

Jeroen Latour | 4 Sep 2004 12:21
Picon

mantisbt/admin/upgrades 0_18_inc.php,1.23,1.24

Update of /cvsroot/mantisbt/mantisbt/admin/upgrades
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12996/admin/upgrades

Modified Files:
	0_18_inc.php 
Log Message:
0004478: [upgrade] database upgrade from 0.18.3 problem: upgrade-ID filters-db1 does not work on mySQL4.1.3b-beta

Index: 0_18_inc.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/admin/upgrades/0_18_inc.php,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- 0_18_inc.php	20 Aug 2004 23:02:40 -0000	1.23
+++ 0_18_inc.php	4 Sep 2004 10:21:03 -0000	1.24
 <at>  <at>  -25,7 +25,7  <at>  <at> 
 			'filtersdb-1',
 			'Add mantis_filters_table',
 			"CREATE TABLE $t_filters_table (
-			  id int(7) unsigned DEFAULT '1' NOT NULL auto_increment,
+			  id int(7) unsigned NOT NULL auto_increment,
 			  user_id int(7) NOT NULL,
 			  project_id int(7) NOT NULL,
 			  is_public BOOL,

-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
(Continue reading)

Jeroen Latour | 4 Sep 2004 12:21
Picon

mantisbt/doc ChangeLog,1.775,1.776

Update of /cvsroot/mantisbt/mantisbt/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12996/doc

Modified Files:
	ChangeLog 
Log Message:
0004478: [upgrade] database upgrade from 0.18.3 problem: upgrade-ID filters-db1 does not work on mySQL4.1.3b-beta

Index: ChangeLog
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/doc/ChangeLog,v
retrieving revision 1.775
retrieving revision 1.776
diff -u -d -r1.775 -r1.776
--- ChangeLog	4 Sep 2004 05:06:04 -0000	1.775
+++ ChangeLog	4 Sep 2004 10:21:03 -0000	1.776
 <at>  <at>  -11,6 +11,7  <at>  <at> 
 - 0004429: [localization] Slovene national characters not displayed correctly (Jeroen Latour)
 - 0004423: [localization] Parse error in strings_hungarian.txt line 974 (Victor Boctor)
 - 0004435: [other] Auto-preview of attached images is broken (Victor Boctor)
+- 0004478: [upgrade] database upgrade from 0.18.3 problem: upgrade-ID "filters-db1" does not work on
mySQL4.1.3b-beta (Jeroen Latour)
   Updated Spanish, German, Dutch translations

 2004.08.28  -  0.19.0rc1

-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
(Continue reading)

Victor Boctor | 5 Sep 2004 13:52
Picon

mantisbt/doc ChangeLog,1.776,1.777

Update of /cvsroot/mantisbt/mantisbt/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4839/doc

Modified Files:
	ChangeLog 
Log Message:
Updated Czech (Jiri) and Swedish (Robort Wahlstrom) languages.

Index: ChangeLog
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/doc/ChangeLog,v
retrieving revision 1.776
retrieving revision 1.777
diff -u -d -r1.776 -r1.777
--- ChangeLog	4 Sep 2004 10:21:03 -0000	1.776
+++ ChangeLog	5 Sep 2004 11:52:31 -0000	1.777
 <at>  <at>  -12,7 +12,7  <at>  <at> 
 - 0004423: [localization] Parse error in strings_hungarian.txt line 974 (Victor Boctor)
 - 0004435: [other] Auto-preview of attached images is broken (Victor Boctor)
 - 0004478: [upgrade] database upgrade from 0.18.3 problem: upgrade-ID "filters-db1" does not work on
mySQL4.1.3b-beta (Jeroen Latour)
-  Updated Spanish, German, Dutch translations
+- Updated Czech, Swedish, Spanish, German, and Dutch translations

 2004.08.28  -  0.19.0rc1

-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
(Continue reading)

Victor Boctor | 5 Sep 2004 13:52
Picon

mantisbt/lang strings_czech.txt,1.63,1.64 strings_swedish.txt,1.70,1.71

Update of /cvsroot/mantisbt/mantisbt/lang
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4839/lang

Modified Files:
	strings_czech.txt strings_swedish.txt 
Log Message:
Updated Czech (Jiri) and Swedish (Robort Wahlstrom) languages.

Index: strings_swedish.txt
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/lang/strings_swedish.txt,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -d -r1.70 -r1.71
--- strings_swedish.txt	26 Aug 2004 17:40:59 -0000	1.70
+++ strings_swedish.txt	5 Sep 2004 11:52:31 -0000	1.71
 <at>  <at>  -32,18 +32,18  <at>  <at> 

 # new strings:
 $s_all_projects = 'Alla Projekt';
-$s_move_bugs = 'Flytta buggar';
+$s_move_bugs = 'Flytta ärenden';
 $s_operation_successful = 'Operationen lyckades.';
 $s_date_order = 'Datumordning';
 $s_print_all_bug_page_link = 'Skriv ut rapporter';
 $s_csv_export = 'CSV export';
 $s_login_anonymously = 'Logga in anonymt';
 $s_anonymous = 'Anonym';
-$s_jump_to_bugnotes = 'Hoppa till buggmeddelanden';
+$s_jump_to_bugnotes = 'Hoppa till ärendemeddelanden';
(Continue reading)

Glenn Henshaw | 6 Sep 2004 02:33
Picon

mantisbt/doc ChangeLog,1.777,1.778

Update of /cvsroot/mantisbt/mantisbt/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6916/doc

Modified Files:
	ChangeLog 
Log Message:
fix for 0004480: [email] admin/check.php - Check email failing.

Index: ChangeLog
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/doc/ChangeLog,v
retrieving revision 1.777
retrieving revision 1.778
diff -u -d -r1.777 -r1.778
--- ChangeLog	5 Sep 2004 11:52:31 -0000	1.777
+++ ChangeLog	6 Sep 2004 00:33:39 -0000	1.778
 <at>  <at>  -8,6 +8,7  <at>  <at> 
 - 0004479: [bugtracker] Reporters can't close or reopen issues they reported
 - 0004426: [email] Email notifications to users with language set to "auto" causes errors (thraxisp)
 - 0004448: [email] Custom severity and status shown in mail as code (thraxisp)
+- 0004480: [email] admin/check.php - Check email failing. (thraxisp)
 - 0004429: [localization] Slovene national characters not displayed correctly (Jeroen Latour)
 - 0004423: [localization] Parse error in strings_hungarian.txt line 974 (Victor Boctor)
 - 0004435: [other] Auto-preview of attached images is broken (Victor Boctor)

-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
(Continue reading)


Gmane