Mantis 错误注释格式
是否可以格式化在 Mantis 错误跟踪器中输入的某个问题的错误注释(评论)?
我正在使用 Mantis v1.0.8
例如
“样本螳螂错误笔记”
,以纯文本形式显示。
我想将其加粗或以不同的颜色显示,
例如类似于 https://stackoverflow.com/editing-help
是否有任何其他错误跟踪系统允许此类功能?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正如 Gawcio 和 mhu 所说,该列表是有限的,在当前的 mantis
1.2.15
中允许在描述和内容中使用以下标签其他多行字段:、
、
< /code>、
、此外,摘要和其他单行字段(例如操作系统或平台)中允许使用以下标签:
、
、
、
、
。在问题摘要中强调一些内容很有趣,对吧? :)
没有明确说明的是这些列表是可定制的。不幸的是,它们是所谓的全局设置,因此无法使用 Web 界面进行设置,但如果您可以调整已安装的 mantis 代码,则可以修改
/ config_inc.php
文件(旨在本地修改)并在其中添加以下选项:服务器重新启动后,您应该能够在摘要和描述中使用
标记你的问题。
不幸的是,mantis 标签过滤器似乎不允许任何标签属性,因此允许自由格式化并不容易。就我个人而言,我调整了它的样式表来调整
这样您的报告可能会获得一些颜色:)
As it was said by Gawcio and mhu, the list is limited and in current mantis
1.2.15
use of following tags is allowed in description and other multi-line fields:<p>
,<li>
,<ul>
,<ol>
,<br>
,<pre>
,<i>
,<b>
,<u>
,<em>
,<strong>
.Additionally, following tags are allowed in summary and other single-line fields (e.g. OS or Platform):
<i>
,<b>
,<u>
,<em>
,<strong>
. That's funny to have some emphasis in issue summary, right? :)What is not explicitly said, is that these lists are customizable. Unfortunately, they are so-called global settings, so they can't be set using web interface, but if you have a possibility of tweaking the installed mantis code, you can modify the
<mantis-doc-root>/config_inc.php
file (which is purposed to be modified locally) and add following options there:After server restart, you should be able to use the
<code>
tag in summary and description of your issues.Unfortunately, mantis tags filters seem to disallow any tag attributes, so it won't be easy to allow free formatting. Personally, I have adjusted its style sheet to tweak the colour in which content of
<pre>
and<code>
tags is displayed. To achieve it, you can edit the<mantis-doc-root>
/css/default.css` file and add/adjust following rules:This way your report may gain some colours :)
在 Mantis 中,我们可以使用一些 HTML 标签(不幸的是并非所有标签都受支持)。根据我的经验(我记得很清楚),我成功地使用了:
、
、
> ;、
和列表,有序
和无序(项目符号):
目前我正在使用 1.1.8 版本的 Mantis,但我在旧版本(1.0 之前)中成功使用了它 - 所以你的也应该处理这个问题。
In Mantis one can use some of HTML tags (unfortunately not all are supported). From my experience (as I remember well) I've successfully used:
<B>
,<I>
,<U
>,<S>
and lists, both ordered<OL><LI>
and unordered (bullets):<UL><LI>
. It makes notes and descriptions more readable.Currently I'm using 1.1.8 version of Mantis but I was successfully using it in older version (prior to 1.0) - so yours should also handle that.
使用
/config/config_inc.php
下的个人config_inc.php
文件覆盖 Mantis(版本<1.3)默认配置您可以覆盖此配置文件中的所有默认设置。例如
$g_html_valid_tags
、$g_bug_view_page_fields
、...只需从/config_defaults_inc.php
复制/粘贴默认值> 到您的/config/config_inc.php
文件。Overwrite Mantis (ver.<1.3) default configuration by using your personal
config_inc.php
file under<mantis-doc-root>/config/config_inc.php
You can overwrite all default settings in this config file. E.g.
$g_html_valid_tags
,$g_bug_view_page_fields
, ... Just copy/paste the default values from<mantis-doc-root>/config_defaults_inc.php
to your<mantis-doc-root>/config/config_inc.php
file.