Victor Boctor | 1 Aug 2007 08:38
Picon

mantisbt/core database_api.php,1.62,1.63

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

Modified Files:
	database_api.php 
Log Message:
Preparing for the 1.1.0a4.  Waiting on a couple of fixes before releasing.

Index: database_api.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/core/database_api.php,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -d -r1.62 -r1.63
--- database_api.php	26 Jul 2007 22:11:09 -0000	1.62
+++ database_api.php	1 Aug 2007 06:38:36 -0000	1.63
 <at>  <at>  -103,6 +103,7  <at>  <at> 

 		switch( $t_db_type ) {
 			case 'mysql':
+			case 'mysqli':
 				return true;
 		}

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
(Continue reading)

Victor Boctor | 1 Aug 2007 08:38
Picon

mantisbt/doc CREDITS, 1.71, 1.72 ChangeLog, 1.865, 1.866

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

Modified Files:
	CREDITS ChangeLog 
Log Message:
Preparing for the 1.1.0a4.  Waiting on a couple of fixes before releasing.

Index: CREDITS
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/doc/CREDITS,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -d -r1.71 -r1.72
--- CREDITS	30 Oct 2006 03:12:19 -0000	1.71
+++ CREDITS	1 Aug 2007 06:38:36 -0000	1.72
 <at>  <at>  -1,7 +1,7  <at>  <at> 
 -------------------------------------------------------------------------------
 Mantis - a PHP based bugtracking system
 Copyright (C) 2000-2002  Kenzaburo Ito - kenito@...
-Copyright (C) 2002-2006  Mantis Team   - mantisbt-dev@...
+Copyright (C) 2002-2007  Mantis Team   - mantisbt-dev@...
 -------------------------------------------------------------------------------

 *** Please contact project administrators if you should be on this list!
 <at>  <at>  -17,6 +17,7  <at>  <at> 
 ----------

 Alexey Chumakov (achumakov)
+Gianluca Sforna (giallu)
(Continue reading)

Gianluca Sforna | 1 Aug 2007 09:41
Picon

mantisbt/core summary_api.php,1.50,1.51

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

Modified Files:
	summary_api.php 
Log Message:
Do not show private bugs if user has not a proper access level

Index: summary_api.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/core/summary_api.php,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- summary_api.php	31 Jul 2007 22:55:03 -0000	1.50
+++ summary_api.php	1 Aug 2007 07:41:07 -0000	1.51
 <at>  <at>  -297,8 +297,16  <at>  <at> 
 		$result = db_query( $query );

 		$t_count = 0;
+		$t_private_bug_threshold = config_get( 'private_bug_threshold' );
 		while ( $row = db_fetch_array( $result ) ) {
-			if ( $t_count++ == 10 ) break; 
+			// Skip private bugs unless user has proper permissions
+			if ( ( VS_PRIVATE == bug_get_field( $row['id'], 'view_state' ) ) && 
+			( false == access_has_bug_level( $t_private_bug_threshold, $row['id'] ) ) ) {
+				continue;
+			}
+
+			if ( $t_count++ == 10 ) break;
(Continue reading)

Gianluca Sforna | 1 Aug 2007 10:03
Picon

mantisbt/core file_api.php,1.82,1.83

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

Modified Files:
	file_api.php 
Log Message:
Fix 8215: APPLICATION ERROR 401 on MySQL with file_upload_method = DISK

Index: file_api.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/core/file_api.php,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -d -r1.82 -r1.83
--- file_api.php	23 Jul 2007 21:42:45 -0000	1.82
+++ file_api.php	1 Aug 2007 08:02:58 -0000	1.83
 <at>  <at>  -648,7 +648,7  <at>  <at> 

 					chmod( $t_disk_file_name, config_get( 'attachments_file_permissions' ) );

-					$c_content = '';
+					$c_content = "''";
 				} else {
 					trigger_error( ERROR_FILE_DUPLICATE, ERROR );
 				}

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
(Continue reading)

Jorge Andres Brugger | 1 Aug 2007 13:26
Picon

mantisbt/lang strings_spanish.txt, 1.109, 1.110 strings_spanish_8859-15.txt, 1.6, 1.7

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

Modified Files:
	strings_spanish.txt strings_spanish_8859-15.txt 
Log Message:
sync'd with last strings_english.txt changes

Index: strings_spanish.txt
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/lang/strings_spanish.txt,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -d -r1.109 -r1.110
--- strings_spanish.txt	26 Jul 2007 11:43:51 -0000	1.109
+++ strings_spanish.txt	1 Aug 2007 11:26:22 -0000	1.110
 <at>  <at>  -239,7 +239,7  <at>  <at> 
 $MANTIS_ERROR[ERROR_CUSTOM_FIELD_NOT_FOUND] = 'Campo personalizado no encontrado';
 $MANTIS_ERROR[ERROR_CUSTOM_FIELD_NAME_NOT_UNIQUE] = 'Ese nombre está duplicado.';
 $MANTIS_ERROR[ERROR_CUSTOM_FIELD_IN_USE] = 'Al menos un proyecto tiene ese campo en uso.';
-$MANTIS_ERROR[ERROR_CUSTOM_FIELD_INVALID_VALUE] = 'Valor no válido para este campo';
+$MANTIS_ERROR[ERROR_CUSTOM_FIELD_INVALID_VALUE] = 'Valor no válido para %s';
 $MANTIS_ERROR[ERROR_CUSTOM_FIELD_INVALID_DEFINITION] = 'Definición de campo personalizado no válida';
 $MANTIS_ERROR[ERROR_LDAP_AUTH_FAILED] = 'Ha fallado la autenticación LDAP';
 $MANTIS_ERROR[ERROR_LDAP_SERVER_CONNECT_FAILED] = 'Falló la conexión al servidor LDAP';
 <at>  <at>  -1075,6 +1075,8  <at>  <at> 
 $s_errors = 'Incorrecto';
 $s_total = 'Total';
 $s_balance = 'Balance';
+$s_most_active = 'Más Activos';
(Continue reading)

Gianluca Sforna | 1 Aug 2007 17:20
Picon

mantisbt/core summary_api.php,1.51,1.52

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

Modified Files:
	summary_api.php 
Log Message:
Fix 8220: New summary item contains invalid (MS)sql

Index: summary_api.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/core/summary_api.php,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -d -r1.51 -r1.52
--- summary_api.php	1 Aug 2007 07:41:07 -0000	1.51
+++ summary_api.php	1 Aug 2007 15:20:45 -0000	1.52
 <at>  <at>  -292,7 +292,7  <at>  <at> 
 				WHERE h.bug_id = b.id
 				AND b.status < $t_resolved
 				AND $specific_where
-				GROUP BY h.bug_id
+				GROUP BY h.bug_id, b.id, b.summary, b.last_updated
 				ORDER BY count DESC, b.last_updated DESC";
 		$result = db_query( $query );

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
(Continue reading)

zakman | 2 Aug 2007 01:10
Picon

mantisbt/core/disposable changelog.txt, 1.1, 1.2 disposable.php, 1.1, 1.2

Update of /cvsroot/mantisbt/mantisbt/core/disposable
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9645

Modified Files:
	changelog.txt disposable.php 
Log Message:
Fixed Bug #:0008138: Add more services to disposable email address checker

Index: changelog.txt
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/core/disposable/changelog.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- changelog.txt	16 Jun 2007 23:04:34 -0000	1.1
+++ changelog.txt	1 Aug 2007 23:10:09 -0000	1.2
 <at>  <at>  -1,4 +1,13  <at>  <at> 
-Mantis ChangeLog
+DisposableEmailChecker ChangeLog
+
+2007.07.31  -  1.0.1
+
+- Initial implementation
+- 37 disposable forwarding email providers (29 new).
+- 111 disposable trash email providers (100 new).
+- 1 disposable shredder email provider (0 new).
+- 43 disposable time bound email provider (38 new).
+- 69 free email providers (66 new).

 2007.06.16  -  1.0.0
(Continue reading)

Victor Boctor | 2 Aug 2007 07:26
Picon

mantisbt/lang strings_italian.txt,1.120,1.121

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

Modified Files:
	strings_italian.txt 
Log Message:
Fixed #8221: Sync italian messages.

Index: strings_italian.txt
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/lang/strings_italian.txt,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -d -r1.120 -r1.121
--- strings_italian.txt	26 Jul 2007 07:39:49 -0000	1.120
+++ strings_italian.txt	2 Aug 2007 05:26:33 -0000	1.121
 <at>  <at>  -1,7 +1,7  <at>  <at> 
 <?php
 	# Mantis - a php based bugtracking system
 	# Copyright (C) 2000 - 2002  Kenzaburo Ito - kenito@...
-	# Copyright (C) 2002 - 2006  Mantis Team   - mantisbt-dev@...
+	# Copyright (C) 2002 - 2007  Mantis Team   - mantisbt-dev@...
 	# This program is distributed under the terms and conditions of the GPL
 	# See the README and LICENSE files for details
 	#
 <at>  <at>  -12,7 +12,7  <at>  <at> 
 	#
 	###########################################################################
 	# Italian strings for Mantis
-	# Based on strings_english.txt rev. 1.306
(Continue reading)

Victor Boctor | 2 Aug 2007 07:51
Picon

mantisbt/core authentication_api.php,1.57,1.58

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

Modified Files:
	authentication_api.php 
Log Message:
Fixed #8224: anonymous login is not automatic. -- had to revert an earlier optimization to get this
working.  We can reapply and fix the optimization after 1.1.0a4 is released.

Index: authentication_api.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/core/authentication_api.php,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -d -r1.57 -r1.58
--- authentication_api.php	24 Jul 2007 11:29:11 -0000	1.57
+++ authentication_api.php	2 Aug 2007 05:51:31 -0000	1.58
 <at>  <at>  -15,8 +15,6  <at>  <at> 

 	$g_script_login_cookie = null;
 	$g_cache_anonymous_user_cookie_string = null;
-	$g_cache_current_user_cookie_string = null; 
-	$g_cache_cookie_valid = null;

 	#===================================
 	# Boolean queries and ensures
 <at>  <at>  -56,9 +54,6  <at>  <at> 
 	# Return true if there is a currently logged in and authenticated user,
 	#  false otherwise
 	function auth_is_user_authenticated() {
(Continue reading)

Victor Boctor | 2 Aug 2007 07:58
Picon

mantisbt config_defaults_inc.php,1.348,1.349

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

Modified Files:
	config_defaults_inc.php 
Log Message:
Preparing for 1.1.0a4 release

Index: config_defaults_inc.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/config_defaults_inc.php,v
retrieving revision 1.348
retrieving revision 1.349
diff -u -d -r1.348 -r1.349
--- config_defaults_inc.php	28 Jul 2007 21:28:31 -0000	1.348
+++ config_defaults_inc.php	2 Aug 2007 05:58:06 -0000	1.349
 <at>  <at>  -329,7 +329,7  <at>  <at> 
 	#############################

 	# --- version variables -----------
-	$g_mantis_version		= '1.1.0a4-CVS';
+	$g_mantis_version		= '1.1.0a4';
 	$g_show_version			= ON;

 	################################

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
(Continue reading)


Gmane