siebrand | 8 Oct 00:47

SF.net SVN: mantisbt:[5636] trunk/mantisbt/lang/strings_polish.txt

Revision: 5636
          http://mantisbt.svn.sourceforge.net/mantisbt/?rev=5636&view=rev
Author:   siebrand
Date:     2008-10-07 22:48:02 +0000 (Tue, 07 Oct 2008)

Log Message:
-----------
Fix #0009424: Update Polish localisation

Modified Paths:
--------------
    trunk/mantisbt/lang/strings_polish.txt

Modified: trunk/mantisbt/lang/strings_polish.txt
===================================================================
--- trunk/mantisbt/lang/strings_polish.txt	2008-10-07 21:27:38 UTC (rev 5635)
+++ trunk/mantisbt/lang/strings_polish.txt	2008-10-07 22:48:02 UTC (rev 5636)
@@ -31,6 +31,7 @@
  * @author Adam Bienias <adam <at> fireworks.atomnet.pl>
  * @author Arkadiusz Hutta <hutta <at> poczta.onet.pl> 2005/08/10
  * @author Derbeth
+ * @author Hubert Kario <hka <at> qbs.com.pl>
  * @author Jaroslaw Lewandowski <jotel <at> jotel.net>
  * @author Kacper Kruszewski <kacper <at> netcetera.pl>
  * @author Leinad
@@ -51,7 +52,12 @@
 $s_actiongroup_menu_update_category = 'Aktualizuj kategorię';
 $s_actiongroup_menu_set_sticky = 'Przyklej/odklej';
 $s_actiongroup_menu_update_field = 'Aktualizuj %s';
-$s_actiongroup_bugs = 'Wybrane zagadnienia';
(Continue reading)

siebrand | 7 Oct 23:26

SF.net SVN: mantisbt:[5635] trunk/mantisbt/lang

Revision: 5635
          http://mantisbt.svn.sourceforge.net/mantisbt/?rev=5635&view=rev
Author:   siebrand
Date:     2008-10-07 21:27:38 +0000 (Tue, 07 Oct 2008)

Log Message:
-----------
Localisation updates from Betawiki (http://translatewiki.net - 2008-10-07)

Modified Paths:
--------------
    trunk/mantisbt/lang/strings_italian.txt
    trunk/mantisbt/lang/strings_slovak.txt

Modified: trunk/mantisbt/lang/strings_italian.txt
===================================================================
--- trunk/mantisbt/lang/strings_italian.txt	2008-10-07 14:15:13 UTC (rev 5634)
+++ trunk/mantisbt/lang/strings_italian.txt	2008-10-07 21:27:38 UTC (rev 5635)
@@ -29,6 +29,7 @@
  * @file
  *
  * @author Darth Kule
+ * @author Giallu
  * @author Lele Gaifax, lele <at> seldati.it
  * @author Luca Pescatore, l.pescatore <at> network.it
  * @author Marcello Scatà, marcello <at> marcelloscata.com
@@ -684,6 +685,7 @@
 $s_edit_project_version_title = 'Modifica la versione del progetto';
 $s_update_version_button = 'Aggiorna versione';
 $s_released = 'Rilasciata';
(Continue reading)

nuclear_eclipse | 7 Oct 16:11

SF.net SVN: mantisbt:[5634] trunk/mantisbt/core/category_api.php

Revision: 5634
          http://mantisbt.svn.sourceforge.net/mantisbt/?rev=5634&view=rev
Author:   nuclear_eclipse
Date:     2008-10-07 14:15:13 +0000 (Tue, 07 Oct 2008)

Log Message:
-----------
Fix #9677: SQL errors when deleting categories from projects with no categories.

Modified Paths:
--------------
    trunk/mantisbt/core/category_api.php

Modified: trunk/mantisbt/core/category_api.php
===================================================================
--- trunk/mantisbt/core/category_api.php	2008-10-07 12:53:37 UTC (rev 5633)
+++ trunk/mantisbt/core/category_api.php	2008-10-07 14:15:13 UTC (rev 5634)
@@ -223,6 +223,12 @@
 		while( $t_row = db_fetch_array( $t_result ) ) {
 			$t_category_ids[] = $t_row['id'];
 		}
+
+		# Handle projects with no categories
+		if ( count( $t_category_ids ) < 1 ) {
+			return true;
+		}
+
 		$t_category_ids = join( ',', $t_category_ids );

 		# update bug history entries
(Continue reading)

nuclear_eclipse | 7 Oct 14:50

SF.net SVN: mantisbt:[5633] trunk/mantisbt/manage_proj_create.php

Revision: 5633
          http://mantisbt.svn.sourceforge.net/mantisbt/?rev=5633&view=rev
Author:   nuclear_eclipse
Date:     2008-10-07 12:53:37 +0000 (Tue, 07 Oct 2008)

Log Message:
-----------
Fix #9676: Bad default values for category bools when creating projects.

Modified Paths:
--------------
    trunk/mantisbt/manage_proj_create.php

Modified: trunk/mantisbt/manage_proj_create.php
===================================================================
--- trunk/mantisbt/manage_proj_create.php	2008-10-06 18:04:45 UTC (rev 5632)
+++ trunk/mantisbt/manage_proj_create.php	2008-10-07 12:53:37 UTC (rev 5633)
@@ -40,8 +40,8 @@
 	$f_view_state	= gpc_get_int( 'view_state' );
 	$f_status		= gpc_get_int( 'status' );
 	$f_file_path	= gpc_get_string( 'file_path', '' );
-	$f_inherit_global = gpc_get_bool( 'inherit_global', 1 );
-	$f_inherit_parent = gpc_get_bool( 'inherit_parent', 1 );
+	$f_inherit_global = gpc_get_bool( 'inherit_global', 0 );
+	$f_inherit_parent = gpc_get_bool( 'inherit_parent', 0 );

 	$f_parent_id	= gpc_get_int( 'parent_id', 0 );

This was sent by the SourceForge.net collaborative development platform, the world's largest Open
Source development site.
(Continue reading)

nuclear_eclipse | 6 Oct 20:03

SF.net SVN: mantisbt:[5632] trunk/mantisbt

Revision: 5632
          http://mantisbt.svn.sourceforge.net/mantisbt/?rev=5632&view=rev
Author:   nuclear_eclipse
Date:     2008-10-06 18:04:45 +0000 (Mon, 06 Oct 2008)

Log Message:
-----------
Revert "Move bug_create() validation to bug_report.php so that form security tokens work right."
With the changes to form_api, this commit has been superceded.

Modified Paths:
--------------
    trunk/mantisbt/bug_report.php
    trunk/mantisbt/core/bug_api.php

Modified: trunk/mantisbt/bug_report.php
===================================================================
--- trunk/mantisbt/bug_report.php	2008-10-05 22:11:51 UTC (rev 5631)
+++ trunk/mantisbt/bug_report.php	2008-10-06 18:04:45 UTC (rev 5632)
@@ -94,24 +94,6 @@
 		}
 	}

-	# Summary cannot be blank
-	if ( is_blank( $t_bug_data->summary ) ) {
-		error_parameters( lang_get( 'summary' ) );
-		trigger_error( ERROR_EMPTY_FIELD, ERROR );
-	}
-
-	# Description cannot be blank
(Continue reading)

vboctor | 6 Oct 00:09

SF.net SVN: mantisbt:[5631] trunk/mantisbt/docbook/adminguide/en

Revision: 5631
          http://mantisbt.svn.sourceforge.net/mantisbt/?rev=5631&view=rev
Author:   vboctor
Date:     2008-10-05 22:11:51 +0000 (Sun, 05 Oct 2008)

Log Message:
-----------
- Changing "Bug" to "Issue".
- Removing configuration relating to freemind since it is now a plugin.

Modified Paths:
--------------
    trunk/mantisbt/docbook/adminguide/en/configuration.sgml
    trunk/mantisbt/docbook/adminguide/en/customizing_mantis.sgml
    trunk/mantisbt/docbook/adminguide/en/installation.sgml
    trunk/mantisbt/docbook/adminguide/en/page_descriptions.sgml
    trunk/mantisbt/docbook/adminguide/en/project_management.sgml
    trunk/mantisbt/docbook/adminguide/en/user_management.sgml
    trunk/mantisbt/docbook/adminguide/en/workflow.sgml

Modified: trunk/mantisbt/docbook/adminguide/en/configuration.sgml
===================================================================
--- trunk/mantisbt/docbook/adminguide/en/configuration.sgml	2008-10-05 07:37:58 UTC (rev 5630)
+++ trunk/mantisbt/docbook/adminguide/en/configuration.sgml	2008-10-05 22:11:51 UTC (rev 5631)
@@ -2423,20 +2423,4 @@
             </varlistentry>
         </variablelist>
     </section>
-
-    <section>
(Continue reading)

vboctor | 5 Oct 09:34

SF.net SVN: mantisbt:[5630] trunk/mantisbt

Revision: 5630
          http://mantisbt.svn.sourceforge.net/mantisbt/?rev=5630&view=rev
Author:   vboctor
Date:     2008-10-05 07:37:58 +0000 (Sun, 05 Oct 2008)

Log Message:
-----------
Fixed #9661: It should be possible to switch off short_url usage.

Modified Paths:
--------------
    trunk/mantisbt/config_defaults_inc.php
    trunk/mantisbt/permalink_page.php

Modified: trunk/mantisbt/config_defaults_inc.php
===================================================================
--- trunk/mantisbt/config_defaults_inc.php	2008-10-03 17:43:16 UTC (rev 5629)
+++ trunk/mantisbt/config_defaults_inc.php	2008-10-05 07:37:58 UTC (rev 5630)
@@ -1412,6 +1412,7 @@
 	$g_create_permalink_threshold = DEVELOPER;

 	# The service to use to create a short URL.  The %s will be replaced by the long URL.
+	# To disable the feature set to ''.
 	$g_create_short_url = 'http://tinyurl.com/create.php?url=%s';

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

Modified: trunk/mantisbt/permalink_page.php
===================================================================
--- trunk/mantisbt/permalink_page.php	2008-10-03 17:43:16 UTC (rev 5629)
(Continue reading)

nuclear_eclipse | 3 Oct 19:36

SF.net SVN: mantisbt:[5628] trunk/mantisbt

Revision: 5628
          http://mantisbt.svn.sourceforge.net/mantisbt/?rev=5628&view=rev
Author:   nuclear_eclipse
Date:     2008-10-03 17:37:06 +0000 (Fri, 03 Oct 2008)

Log Message:
-----------
Move all form_security_validate() calls before any processing happens.

Modified Paths:
--------------
    trunk/mantisbt/bug_report.php
    trunk/mantisbt/bug_update.php
    trunk/mantisbt/manage_config_email_set.php
    trunk/mantisbt/manage_config_revert.php
    trunk/mantisbt/manage_custom_field_create.php
    trunk/mantisbt/manage_custom_field_delete.php
    trunk/mantisbt/manage_custom_field_proj_add.php
    trunk/mantisbt/manage_custom_field_update.php
    trunk/mantisbt/manage_proj_cat_add.php
    trunk/mantisbt/manage_proj_cat_copy.php
    trunk/mantisbt/manage_proj_cat_delete.php
    trunk/mantisbt/manage_proj_cat_update.php
    trunk/mantisbt/manage_proj_create.php
    trunk/mantisbt/manage_proj_custom_field_add_existing.php
    trunk/mantisbt/manage_proj_custom_field_copy.php
    trunk/mantisbt/manage_proj_custom_field_remove.php
    trunk/mantisbt/manage_proj_custom_field_update.php
    trunk/mantisbt/manage_proj_delete.php
    trunk/mantisbt/manage_proj_subproj_add.php
(Continue reading)

nuclear_eclipse | 3 Oct 17:19

SF.net SVN: mantisbt:[5626] branches/BRANCH_1_1_0/mantisbt

Revision: 5626
          http://mantisbt.svn.sourceforge.net/mantisbt/?rev=5626&view=rev
Author:   nuclear_eclipse
Date:     2008-10-03 15:23:32 +0000 (Fri, 03 Oct 2008)

Log Message:
-----------
Second step of implementing form security purging.

Modified Paths:
--------------
    branches/BRANCH_1_1_0/mantisbt/account_prof_update.php
    branches/BRANCH_1_1_0/mantisbt/account_update.php
    branches/BRANCH_1_1_0/mantisbt/bug_actiongroup_ext.php
    branches/BRANCH_1_1_0/mantisbt/bug_report.php
    branches/BRANCH_1_1_0/mantisbt/bug_update.php
    branches/BRANCH_1_1_0/mantisbt/news_add.php
    branches/BRANCH_1_1_0/mantisbt/news_delete.php
    branches/BRANCH_1_1_0/mantisbt/news_update.php
    branches/BRANCH_1_1_0/mantisbt/signup.php
    branches/BRANCH_1_1_0/mantisbt/tag_attach.php
    branches/BRANCH_1_1_0/mantisbt/tag_delete.php
    branches/BRANCH_1_1_0/mantisbt/tag_detach.php
    branches/BRANCH_1_1_0/mantisbt/tag_update.php

Modified: branches/BRANCH_1_1_0/mantisbt/account_prof_update.php
===================================================================
--- branches/BRANCH_1_1_0/mantisbt/account_prof_update.php	2008-10-03 15:22:45 UTC (rev 5625)
+++ branches/BRANCH_1_1_0/mantisbt/account_prof_update.php	2008-10-03 15:23:32 UTC (rev 5626)
@@ -41,6 +41,7 @@
(Continue reading)

nuclear_eclipse | 3 Oct 17:19

SF.net SVN: mantisbt:[5625] branches/BRANCH_1_1_0/mantisbt

Revision: 5625
          http://mantisbt.svn.sourceforge.net/mantisbt/?rev=5625&view=rev
Author:   nuclear_eclipse
Date:     2008-10-03 15:22:45 +0000 (Fri, 03 Oct 2008)

Log Message:
-----------
First step to implementing new form security purge().

Modified Paths:
--------------
    branches/BRANCH_1_1_0/mantisbt/manage_config_email_set.php
    branches/BRANCH_1_1_0/mantisbt/manage_config_revert.php
    branches/BRANCH_1_1_0/mantisbt/manage_custom_field_create.php
    branches/BRANCH_1_1_0/mantisbt/manage_custom_field_delete.php
    branches/BRANCH_1_1_0/mantisbt/manage_custom_field_proj_add.php
    branches/BRANCH_1_1_0/mantisbt/manage_custom_field_update.php
    branches/BRANCH_1_1_0/mantisbt/manage_proj_cat_add.php
    branches/BRANCH_1_1_0/mantisbt/manage_proj_cat_copy.php
    branches/BRANCH_1_1_0/mantisbt/manage_proj_cat_delete.php
    branches/BRANCH_1_1_0/mantisbt/manage_proj_cat_update.php
    branches/BRANCH_1_1_0/mantisbt/manage_proj_create.php
    branches/BRANCH_1_1_0/mantisbt/manage_proj_custom_field_add_existing.php
    branches/BRANCH_1_1_0/mantisbt/manage_proj_custom_field_copy.php
    branches/BRANCH_1_1_0/mantisbt/manage_proj_custom_field_remove.php
    branches/BRANCH_1_1_0/mantisbt/manage_proj_custom_field_update.php
    branches/BRANCH_1_1_0/mantisbt/manage_proj_delete.php
    branches/BRANCH_1_1_0/mantisbt/manage_proj_subproj_add.php
    branches/BRANCH_1_1_0/mantisbt/manage_proj_subproj_delete.php
    branches/BRANCH_1_1_0/mantisbt/manage_proj_update.php
(Continue reading)

nuclear_eclipse | 3 Oct 17:06

SF.net SVN: mantisbt:[5621] trunk/mantisbt

Revision: 5621
          http://mantisbt.svn.sourceforge.net/mantisbt/?rev=5621&view=rev
Author:   nuclear_eclipse
Date:     2008-10-03 15:07:12 +0000 (Fri, 03 Oct 2008)

Log Message:
-----------
First step to implementing new form security purge().

Modified Paths:
--------------
    trunk/mantisbt/manage_config_email_set.php
    trunk/mantisbt/manage_config_revert.php
    trunk/mantisbt/manage_custom_field_create.php
    trunk/mantisbt/manage_custom_field_delete.php
    trunk/mantisbt/manage_custom_field_proj_add.php
    trunk/mantisbt/manage_custom_field_update.php
    trunk/mantisbt/manage_proj_cat_add.php
    trunk/mantisbt/manage_proj_cat_copy.php
    trunk/mantisbt/manage_proj_cat_delete.php
    trunk/mantisbt/manage_proj_cat_update.php
    trunk/mantisbt/manage_proj_create.php
    trunk/mantisbt/manage_proj_custom_field_add_existing.php
    trunk/mantisbt/manage_proj_custom_field_copy.php
    trunk/mantisbt/manage_proj_custom_field_remove.php
    trunk/mantisbt/manage_proj_custom_field_update.php
    trunk/mantisbt/manage_proj_delete.php
    trunk/mantisbt/manage_proj_subproj_add.php
    trunk/mantisbt/manage_proj_subproj_delete.php
    trunk/mantisbt/manage_proj_update.php
(Continue reading)


Gmane