mantis

How to make HTTP REQUEST to mantisBT's REST API using angular Http?

倾然丶 夕夏残阳落幕 提交于 2019-12-06 14:37:56
问题 Background: I installed mantisBT 2.5.0 on a test server, enabled the REST API (which is currently in beta phase). After that I generated an API Key and I have tried to make a test HTTP request using the swagger page on /api/rest/swagger. This works fine. (I could only access this page after renaming the .htaccess to _htaccess) What I want to do: I want to implement a feature in my app to enable sending "easy" bug reports without visiting mantisBT directly. To test the API I implemented this

测试总结报告

时间秒杀一切 提交于 2019-12-06 11:51:46
第一阶段学习总结报告 曾经心怀澎拜,曾经满怀激情,曾经翘首等待这为期四个月的实训终于拉开帷幕。2015年的这个暑假对于我来说是最幸运而同时有特别重要的一个暑假,因为我非常幸运的来到了济宁惠普软件人才实训基地进行为期四个月的实训学习。第一天来到惠普我变被浓厚的企业文化深深的吸引,作为一家跨国公司,她有强大的包容性和多元性。实训期间采取公司制的这一策略让我们真正融入到公司的文化中,时刻以惠普员工的高标准来严格要求自己,磨练自己。 我学习的专业是软件测试,虽然在大学也开过“软件工程”这门课,但对测试这门行业的了解基本为零。通过几天几位导师和班主任和蔼可亲的指导以及全心全意的关怀,我对测试行情以及职业要求和发展等都有了较深入的了解。几天的测试基础的学习也是我越来越喜欢测试了,也更加坚定了我的选择。 众所周知,做测试职业工具是必不可少的,在学习了一些理论知识后,我们的美女导师徐老师就带领我们学习了第一个开源测试工具——testLink。第一次接触这个工具的时候我是丈二的和尚摸不着头脑,简直一头雾水,什么都不知道,课上跟着老师的思路做了一遍,虽然能做出来但是完全不明白做每一步的原因是什么。课下老师给了我们一个安装压缩包,让我们自己搭建环境,我不管是在网上百度也好找同学给帮忙也好几次都安装失败。软件XAMPP里的Ahache和Mysql总是启动不了,最后通过问老师才知道电脑的80端口被占用

How to make HTTP REQUEST to mantisBT's REST API using angular Http?

与世无争的帅哥 提交于 2019-12-04 19:36:19
Background: I installed mantisBT 2.5.0 on a test server, enabled the REST API (which is currently in beta phase). After that I generated an API Key and I have tried to make a test HTTP request using the swagger page on /api/rest/swagger. This works fine. (I could only access this page after renaming the .htaccess to _htaccess) What I want to do: I want to implement a feature in my app to enable sending "easy" bug reports without visiting mantisBT directly. To test the API I implemented this function, which just calls a "get issue" request. If this works, I can implement a method to create an

Bugzilla or Mantis? [closed]

北慕城南 提交于 2019-12-03 00:35:39
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . As the title says, I'm starting one project right now, and trying to layout the infrastructure for the project (SVN, Email, Bug

Bugzilla or Mantis? [closed]

泄露秘密 提交于 2019-12-02 14:09:31
As the title says, I'm starting one project right now, and trying to layout the infrastructure for the project (SVN, Email, Bug tracking, Online Forums, etc...) So, Bugzilla or Mantis? Corey Trager I think you'll find that your team will like either Trac or Redmine more than Bugzilla or Mantis. Both integrate nicely with Subversion. Both include wiki, forums, project management features... Quick overview: Trac : Very widely used and loved, written in python, huge community, lots of "plugins". A common complaint is that it doesn't support multiple projects out-of-the-box, but you can add a

Netflix-mantis 实时数据流开发平台

浪子不回头ぞ 提交于 2019-12-02 05:57:06
mantis 是netflix 开源的已经在netflix 使用了多年的实时流处理平台,目前从官方文档的介绍,在netflix使用场景很多 使用场景 上下文报警 监控netflix 的微服务 异常追踪 方便sre 分析问题 cassandra 以及elastic search 运行监控监视 日志报警 混沌工程 实时个人神份信息检测 参考架构图 说明 mantis 基于mesos 进行调度,基于zk 进行leader选举rxjava 进行job 的数据转换处理(job 开发基于spi) 参考资料 https://netflix.github.io/mantis/infrastructure/ https://github.com/Netflix/mantis 来源: https://www.cnblogs.com/rongfengliang/p/11733239.html

Centos6.5 Mantis 1.2.19版本邮件设置

旧巷老猫 提交于 2019-11-28 10:31:47
一.读取顺序 config_defaults_inc.php config_inc.php 二.config_defaults_inc.php 中邮件设置 $g_administrator_email = 'test@163.com'; $g_webmaster_email = 'test@163.com'; $g_from_email = 'test@163.com'; $g_from_name = 'Mantis Bug Tracker'; $g_return_path_email = 'test@163.com'; $g_phpMailer_method = PHPMAILER_METHOD_SMTP; $g_smtp_host = 'smtp.163.com'; $g_smtp_username = 'test@163.com'; $g_smtp_password = 'test7033'; 三.config_inc.php 中的邮件设置 因为我的config_inc.php 是拷贝的config_inc.php.sample 作为模板所以邮件按照以下配置进行。 $g_phpMailer_method = PHPMAILER_METHOD_SMTP; $g_smtp_host = 'smtp.163.com'; $g_smtp_username = 'test@163

Configuring MantisBT to send emails using GMail

青春壹個敷衍的年華 提交于 2019-11-28 09:50:26
I am new to Mantis bug tracker and I want to enable the email notification after registering for a new account. Well, I installed the MantisBT correctly without any problem on my local computer, I already changed the admin's password and removed the admin folder in the directory. After this I signed up for a new account, there was a confirmation message flashed saying that I need to verify my registration via email. My problem here is that no verification message was sent to my email. According to one of the tutorials I found, I need to configure first my config_inc.php . After the

mantis安装-Linux

回眸只為那壹抹淺笑 提交于 2019-11-27 21:09:09
抄袭: https://blog.csdn.net/qq_28082757/article/details/83545781 安装php时,需要修改配置,抄袭: https://www.jianshu.com/p/d44e912bf1b7 修改配置: 将 cgi.fix_pathinfo = 1 的注释去掉,并将值从 1 改为 0,用户使Laravel路径生效(增加php项目的安全性) 将 zlib.output_compression = Off 改为 On 将 zlib.output_compression_level = -1 的注释去掉,并将值修改为 5(上面两个配置是开启了php自带的压缩工具,提升运行速度) 然后重启 php7.1-fpm。 来源: https://www.cnblogs.com/buliudeshui/p/11376837.html

Configuring MantisBT to send emails using GMail

这一生的挚爱 提交于 2019-11-27 03:15:47
问题 I am new to Mantis bug tracker and I want to enable the email notification after registering for a new account. Well, I installed the MantisBT correctly without any problem on my local computer, I already changed the admin's password and removed the admin folder in the directory. After this I signed up for a new account, there was a confirmation message flashed saying that I need to verify my registration via email. My problem here is that no verification message was sent to my email.