<?xml version="1.0" encoding="utf-8"?>
<!--RSS generated by Flaimo.com RSS Builder [2010-03-14 12:42:09]-->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"><channel><docs>http://www.mantisbt.org/bugs/</docs><link>http://www.mantisbt.org/bugs/</link><description><![CDATA[MantisBT - Issues]]></description><title>MantisBT - Issues</title><image><title>MantisBT - Issues</title><url>http://www.mantisbt.org/bugs/images/mantis_logo_button.gif</url><link>http://www.mantisbt.org/bugs/</link><description><![CDATA[MantisBT - Issues]]></description></image><language>en</language><category>All Projects</category><ttl>10</ttl><dc:language>en</dc:language><sy:updatePeriod>hourly</sy:updatePeriod><sy:updateFrequency>1</sy:updateFrequency><item><title>0011653: Is possible to create global category with same name of project specific category</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=11653</link><description><![CDATA[I've migrated form 1.1.1 to 1.2.0&lt;br /&gt;
I've on several projects HD category.&lt;br /&gt;
I think can be good to make HD GLOBAL CATEGORY.&lt;br /&gt;
Without deleting HD categories, I've created a GLOBAL CATEGORY HD.&lt;br /&gt;
System give no warning.&lt;br /&gt;
May be I'm missing some good reason to allow this, but IMHO this must be blocked.]]></description><category>administration</category><pubDate>Sun, 14 Mar 2010 10:26:45 -0400</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=11653</guid><comments>http://www.mantisbt.org/bugs/view.php?id=11653#bugnotes</comments></item><item><title>0011609: API : get issues of a project crash when category is empty</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=11609</link><description><![CDATA[If an issue have no category, SOAP API raise an exception.]]></description><category>api soap</category><pubDate>Sun, 14 Mar 2010 10:20:32 -0400</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=11609</guid><comments>http://www.mantisbt.org/bugs/view.php?id=11609#bugnotes</comments></item><item><title>0011556: Upgrade from 1.1.7 to 1.2.0 empties categories auto.assignment</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=11556</link><description><![CDATA[After upgrade to 1.2.0 all project categories have lost the &quot;autoassign to a specific developer&quot; attribute.]]></description><category>upgrade</category><pubDate>Sun, 14 Mar 2010 09:31:33 -0400</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=11556</guid><comments>http://www.mantisbt.org/bugs/view.php?id=11556#bugnotes</comments></item><item><title>0010840: You can set a 'released version' as the target version</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=10840</link><description><![CDATA[It is possible to use a version that is marked as released as the target version for a fix. How can something that is released be the target for a fix?&lt;br /&gt;
&lt;br /&gt;
We would like it so this doesn't happen as we are getting users who are confused and simple and keep setting target versions as things that have already gone out the door. This causes issues to not get 'caught' we the manager does a search for all things expected to be in a release.&lt;br /&gt;
&lt;br /&gt;
Is this a bug or a feature?]]></description><category>administration</category><pubDate>Sun, 14 Mar 2010 07:52:53 -0400</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=10840</guid><comments>http://www.mantisbt.org/bugs/view.php?id=10840#bugnotes</comments></item><item><title>0011627: Solution: Relationship Graph does not work with multi-byte code page</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=11627</link><description><![CDATA[In config_inc.php&lt;br /&gt;
$g_default_language = 'chinese_traditional';&lt;br /&gt;
$g_relationship_graph_enable = ON;&lt;br /&gt;
&lt;br /&gt;
WinGraphViz_v1.02.24.msi is installed.&lt;br /&gt;
&lt;br /&gt;
After clicking on &quot;Relation Graph&quot; and &quot;Dependency Graph&quot; near bug relationships, web browser shows &quot;Could not convert string to unicode: No mapping for the Unicode character exists in the target multi-byte code page.&quot;&lt;br /&gt;
&lt;br /&gt;
Solution: modify 2 places in \core\graphviz_api.php&lt;br /&gt;
Around line 314 &amp; 329 in, change &lt;br /&gt;
$t_dot_output = $t_graphviz-&gt;ToBinaryGraph( $t_dot_source, $t_type );&lt;br /&gt;
to&lt;br /&gt;
$t_dot_output = $t_graphviz-&gt;ToTextGraph( mb_convert_encoding($t_dot_source, &quot;Big5&quot;, &quot;UTF-8&quot;), $t_type );&lt;br /&gt;
&lt;br /&gt;
Please replace &quot;Big5&quot; if you are using other multi-byte code page.]]></description><category>relationships</category><pubDate>Sun, 14 Mar 2010 04:23:26 -0400</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=11627</guid><comments>http://www.mantisbt.org/bugs/view.php?id=11627#bugnotes</comments></item><item><title>0011153: Truncated download</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=11153</link><description><![CDATA[When I download a document it's truncated at 512KB.&lt;br /&gt;
&lt;br /&gt;
$g_file_upload_method = DISK&lt;br /&gt;
Browser: Firefox&lt;br /&gt;
Files are correctly uploaded and stored in file system.&lt;br /&gt;
In file_download.php &lt;br /&gt;
function file_send_chunk() has some problems with php 5.1.6&lt;br /&gt;
I fixed with:&lt;br /&gt;
//file_send_chunk( $t_local_disk_file );&lt;br /&gt;
header( 'Content-Length: ' . $v_filesize );&lt;br /&gt;
$fp = fopen($t_local_disk_file, 'rb');&lt;br /&gt;
fpassthru($fp);&lt;br /&gt;
....&lt;br /&gt;
//at the end of switch-case statement&lt;br /&gt;
//header( 'Content-Length: ' . $v_filesize );]]></description><category>attachments</category><pubDate>Fri, 12 Mar 2010 13:47:36 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=11153</guid><comments>http://www.mantisbt.org/bugs/view.php?id=11153#bugnotes</comments></item><item><title>0011011: Can't add UTF8 custom fields to the Manage columns enumeration</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=11011</link><description><![CDATA[Can't add a custom field to the &quot;View Issues Columns&quot;, &quot;Print Issues Columns&quot;, etc, when the custom field has russian title.&lt;br /&gt;
The custom field is listed fine in the &quot;All Available Columns&quot; area but error happens when I'm trying to add this field to any enumeration (Field &quot;print_issues&quot; contains invalid field &quot;...field name...&quot;)]]></description><category>custom fields</category><pubDate>Fri, 12 Mar 2010 12:57:22 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=11011</guid><comments>http://www.mantisbt.org/bugs/view.php?id=11011#bugnotes</comments></item><item><title>0011534: Url doubleslash</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=11534</link><description><![CDATA[Upgraded to Mantis 1.2.0 (stable) and noticed, that in my url appears a doubleslash.&lt;br /&gt;
&lt;br /&gt;
The url looks like this: &lt;a href=&quot;http://mantis.example.com//my_view_page.php&quot;&gt;http://mantis.example.com//my_view_page.php&lt;/a&gt; [&lt;a href=&quot;http://mantis.example.com//my_view_page.php&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]]]></description><category>webpage</category><pubDate>Fri, 12 Mar 2010 11:49:27 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=11534</guid><comments>http://www.mantisbt.org/bugs/view.php?id=11534#bugnotes</comments></item><item><title>0011650: File Upload problem - Issue 0 Not Found</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=11650</link><description><![CDATA[We restricted the Maximum upload file size as 2MB by setting &quot;post_max_size&quot; and &quot;upload_max_filesize&quot; in php.ini file, but after that it is NOT allowing us to submit the bug, and always displays the error message &quot;Issue 0 Not Found&quot;. How to make it work and also how to supply suitable &quot;Upload file &quot; error message.]]></description><category>bugtracker</category><pubDate>Fri, 12 Mar 2010 09:59:31 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=11650</guid><comments>http://www.mantisbt.org/bugs/view.php?id=11650#bugnotes</comments></item><item><title>0011652: Migration from 1.1.1 to 1.2.0 - Link bewteen user and category is not migrated</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=11652</link><description><![CDATA[I've had an installation where have several categories assigned to different users.&lt;br /&gt;
After migration to 1.2.0, this link/relationship bewteen category and user, does not exist anymore]]></description><category>installation</category><pubDate>Fri, 12 Mar 2010 09:54:06 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=11652</guid><comments>http://www.mantisbt.org/bugs/view.php?id=11652#bugnotes</comments></item><item><title>0011499: Fix for huge slowdown in e-mail queueing with MySql</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=11499</link><description><![CDATA[Change the field types for metadata and body in the e-mail database table to not be longtext, and switch them to mediumtext (still allows for 16 million bytes of data!)&lt;br /&gt;
&lt;br /&gt;
This is a problem in the schema preparation - the email table is defined as XL and this translates to longtext under mysql - looking around on the net shows that people never use longtext in a regular table (it allows for up to 4 terabytes of data and is inefficient if used like a normal field).&lt;br /&gt;
&lt;br /&gt;
The slowdowns aren't visible if using the InnoDB backend for MySql which is why reports of this slowdown are scattered, but even then I'd suggest changing the longtext to mediumtext for efficiency.&lt;br /&gt;
&lt;br /&gt;
This field change should be added to the database upgrade code too.]]></description><category>performance</category><pubDate>Fri, 12 Mar 2010 09:52:02 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=11499</guid><comments>http://www.mantisbt.org/bugs/view.php?id=11499#bugnotes</comments></item><item><title>0006871: Unable to update custom checbox field when updating issues.</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=6871</link><description><![CDATA[I have defined a custom field &quot;Reopen Flag&quot;. I have specified it as an checkbox. I have attached the scnreen shot of the custom field parameters.&lt;br /&gt;
&lt;br /&gt;
Whenever I try to update the issue it displays the checkbox ticked by default.&lt;br /&gt;
&lt;br /&gt;
The problem is that I am unable to update this field whenever I am trying to update my issue. Eventhough I try to check/uncheck the checkbox and update the field value in the issue, it always shows the field as checked whenever I try to view the issue again. The bug history displayed also does not indicate any change in the value of the field.&lt;br /&gt;
&lt;br /&gt;
I hope I am not missing any configuration parameters or some other required steps.]]></description><category>administration</category><pubDate>Fri, 12 Mar 2010 09:50:15 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=6871</guid><comments>http://www.mantisbt.org/bugs/view.php?id=6871#bugnotes</comments></item><item><title>0006945: custom checbox field values are not being updated</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=6945</link><description><![CDATA[I have defined a custom field checkbox &quot;Customer Issue&quot;. &lt;br /&gt;
&lt;br /&gt;
It always displays the checkbox checked by default. Whenever the custom field is updated it is not reflected when the issue is revisited. Morever the issue history also does not reflect any updates to the custom field]]></description><category>custom fields</category><pubDate>Fri, 12 Mar 2010 09:49:43 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=6945</guid><comments>http://www.mantisbt.org/bugs/view.php?id=6945#bugnotes</comments></item><item><title>0006610: Checkbox custom field and required status</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=6610</link><description><![CDATA[When a check box custom field type is created, and the required on ______ is set, I am forced to check the value.  This doesn't seem to fit my understanding of a check box.]]></description><category>custom fields</category><pubDate>Fri, 12 Mar 2010 09:48:51 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=6610</guid><comments>http://www.mantisbt.org/bugs/view.php?id=6610#bugnotes</comments></item><item><title>0006891: Problem having custom checkbox field required</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=6891</link><description><![CDATA[When having a checkbox field required for a project and you define it to be checked by default only unchecking it allows to to proceed.&lt;br /&gt;
&lt;br /&gt;
Furthermore the state of the edit field isn't displayed in the report (when viewing it).]]></description><category>custom fields</category><pubDate>Fri, 12 Mar 2010 09:44:53 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=6891</guid><comments>http://www.mantisbt.org/bugs/view.php?id=6891#bugnotes</comments></item><item><title>0006040: mandatory custom fields</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=6040</link><description><![CDATA[It would be nice to have a checkbox for custom fields which are mandatory for some projects.]]></description><category>custom fields</category><pubDate>Fri, 12 Mar 2010 09:40:15 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=6040</guid><comments>http://www.mantisbt.org/bugs/view.php?id=6040#bugnotes</comments></item><item><title>0005926: 'None' filter on checkbox field doesn't return bugs with a blank custom field value (as opposed to null/undefined values)</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=5926</link><description><![CDATA[I have created a custom field of the type &quot;checkbox&quot; with 3 possible values A, B and C. &lt;br /&gt;
When I filter on this field Mantis gives me 5 options to choose from: any, none, A, B, C. &lt;br /&gt;
If I choose &quot;none&quot; I'd expect Mantis to show me all issues for which none of the 3 checkboxes are set, instead it never shows me any issues. &lt;br /&gt;
&lt;br /&gt;
Am I doing something wrong, or is this a bug? &lt;br /&gt;
&lt;br /&gt;
Paul]]></description><category>administration</category><pubDate>Fri, 12 Mar 2010 09:34:53 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=5926</guid><comments>http://www.mantisbt.org/bugs/view.php?id=5926#bugnotes</comments></item><item><title>0006609: Custom field display for bug_change_status_page and bug_update_advanced_page</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=6609</link><description><![CDATA[For each custom field we have these 4 flags&lt;br /&gt;
&lt;br /&gt;
Display When Reporting Issues&lt;br /&gt;
Display When Updating Issues&lt;br /&gt;
Display When Resolivng Issues&lt;br /&gt;
Display When Closing Issues&lt;br /&gt;
&lt;br /&gt;
Here is the behaviour I found.&lt;br /&gt;
&lt;br /&gt;
Suppose we have a custom field named &quot;Test1&quot; and the check box for Resoloving Issues is unchecked.&lt;br /&gt;
&lt;br /&gt;
When I go to resolve the issue, I do not see the &quot;Test1&quot; custom field on the bug_change_status_page.php page as I would expect.   Then, later I decide that the custom field was set wrong for that bug and need to change it.  I view the issue, click on the Update Issue button and I am presented with the bug_update_advanced_page.php.  I change the value of &quot;Test1&quot; and notice that after clicking &quot;Update Issue&quot; the value has not changed???  &lt;br /&gt;
&lt;br /&gt;
It appeas that these &quot;Display when _______ issues&quot; flag is controling not only the visibility of issues on the bug_change_status_page.php but also controling whether the value is updated on the bug_update_advanced_page.php.  &lt;br /&gt;
&lt;br /&gt;
I would think that either the bug_update_advanced_page.php would simply not display custom fields that cannot be updated, or actually allow me to update the values.&lt;br /&gt;
&lt;br /&gt;
Personally, I would like to see these &quot;Display When _____ Issues&quot; only control the visibility of the custom fields on the bug_change_status_page and have no affect on the bug_update_advanced_page.   At the moment, most of the custom fields in the bug database I setup are used only when reporting bugs. I find it annoying to see every custom field, when I go to bug_change_status_page.]]></description><category>custom fields</category><pubDate>Fri, 12 Mar 2010 09:30:11 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=6609</guid><comments>http://www.mantisbt.org/bugs/view.php?id=6609#bugnotes</comments></item><item><title>0004864: Unable to filter on empty custom field value</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=4864</link><description><![CDATA[For an enumeration custom field which allows the user to choose a combo box to choose a target release, I wasn't able to filter the issues that have the custom field set to the value of empty string (which is one of the enumeration values).  I am only able to filter on &quot;any&quot; or specific values.]]></description><category>filters</category><pubDate>Fri, 12 Mar 2010 09:28:23 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=4864</guid><comments>http://www.mantisbt.org/bugs/view.php?id=4864#bugnotes</comments></item><item><title>0007926: MantisBT donÂ´t check value type entered in Custom Fields</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=7926</link><description><![CDATA[MantisBT donÂ´t check value type entered in Custom Fields.&lt;br /&gt;
(for example I can enter &quot;AA&quot; in Custom Field type Float or Numeric)&lt;br /&gt;
&lt;br /&gt;
Do I need to create a regular expression that will do the check ?]]></description><category>administration</category><pubDate>Fri, 12 Mar 2010 09:28:01 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=7926</guid><comments>http://www.mantisbt.org/bugs/view.php?id=7926#bugnotes</comments></item><item><title>0007599: Custom field of type enumeration not updated when assigning issue</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=7599</link><description><![CDATA[Custom field of type enumeration.&lt;br /&gt;
Possible values defined as &quot;|1.1|1.2|1.2 SP1|None&quot; (quotes not included).&lt;br /&gt;
Custom field is displayed when updating the issue in page bug_change_status_page.php.&lt;br /&gt;
Choose one of the values (like 1.1) from the combo box and accept changes.&lt;br /&gt;
=&gt; Field remains empty&lt;br /&gt;
Change of custom field value is only possible in page bug_update_advanced_page.php.]]></description><category>custom fields</category><pubDate>Fri, 12 Mar 2010 09:25:07 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=7599</guid><comments>http://www.mantisbt.org/bugs/view.php?id=7599#bugnotes</comments></item><item><title>0008383: Add Custom Drop-down field</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=8383</link><description><![CDATA[I'd like to be able to add a custom field that is in the form of a drop-down. Basically what I need is a Priority, which exists and I intend Product Management to use, and then I need a Dev Priority, that Dev will use to prioritize their work. &lt;br /&gt;
Does this functionality exist?]]></description><category>custom fields</category><pubDate>Fri, 12 Mar 2010 09:23:09 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=8383</guid><comments>http://www.mantisbt.org/bugs/view.php?id=8383#bugnotes</comments></item><item><title>0008323: Spaces in custom fields</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=8323</link><description><![CDATA[If you have a custom field with spaces included and you add it as a column to the &quot;View Issues&quot; page the column is not sortable.  When you click on the column nothing happens.&lt;br /&gt;
&lt;br /&gt;
The reason for the problem is that the URL sent to sort by that column includes the space thus producing the wrong information. If one adds &quot;urlencode&quot; around the sorting field, the column becomes sortable again.  This problem may also occur if you use the # sign. For example, we added a custom field called &quot;Marketing #&quot; but was unable to sort by it.&lt;br /&gt;
&lt;br /&gt;
I fixed the problem]]></description><category>custom fields</category><pubDate>Fri, 12 Mar 2010 09:22:03 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=8323</guid><comments>http://www.mantisbt.org/bugs/view.php?id=8323#bugnotes</comments></item><item><title>0008516: Checkbox-type custom fields displayed empty or as quotes in view issue</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=8516</link><description><![CDATA[We use checkbox-type custom field. When this is checked in submission - on view.php the result of this field is empty. When unchecked - it looks like comma-space-comma&lt;br /&gt;
, ,]]></description><category>custom fields</category><pubDate>Fri, 12 Mar 2010 09:21:24 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=8516</guid><comments>http://www.mantisbt.org/bugs/view.php?id=8516#bugnotes</comments></item><item><title>0008478: Create new custom field on advanced page and required</title><author></author><link>http://www.mantisbt.org/bugs/view.php?id=8478</link><description><![CDATA[The system does not allow this, when you select both checkboxes and press the update field button, an error is displayed: &lt;br /&gt;
&quot;APPLICATION ERROR &lt;a href=&quot;http://www.mantisbt.org/bugs/view.php?id=1304&quot;&gt;0001304&lt;/a&gt; &lt;br /&gt;
Invalid custom field definition&lt;br /&gt;
 &lt;br /&gt;
Please use the &quot;Back&quot; button in your web browser to return to the previous page. There you can correct whatever problems were identified in this error or select another action. You can also click an option from the menu bar to go directly to a new section.&quot;]]></description><category>custom fields</category><pubDate>Fri, 12 Mar 2010 09:20:05 -0500</pubDate><guid>http://www.mantisbt.org/bugs/view.php?id=8478</guid><comments>http://www.mantisbt.org/bugs/view.php?id=8478#bugnotes</comments></item></channel></rss>
