redmine

Redmine and SVN: How to link a Revision to an Issue AFTER the commit has happened?

跟風遠走 提交于 2019-12-05 08:16:36
So we have Redmine successfully integrated with SVN. It's a mature integration (a few months now). Post-commit-hook updates the repository in Redmine. Comments in SVN commit get beautifully imported into Redmine, which is able to create links between issues and revisions, log time, the whole 9 yards. However, for time constraint issues, there was an urgent bug which had to be fixed quickly and committed without comments. The issue wasn't even in Redmine. This happened at 3:35AM, when best practices are as valued as a bag of ice for sale in the Arctic winter. Now, this morning, we entered the

Internal bug tracking tickets - Redmine, Trac, or JIRA

╄→гoц情女王★ 提交于 2019-12-05 05:38:56
I've been looking at setting up Redmine , Trac , or JIRA to track issues. I want to be able to have my development team create internal tickets that are never seen by clients, while clients can create/edit tickets that are seen by the internal team. From the Trac documentation , you can set permissions to create or view tickets, but it doesn't seem to allow for viewing only certain tickets. It may be possible with Trac Fine Grained Permissions , but doesn't appear so. The Redmine documentation mentions: Define your own roles and set their permissions in a click but doesn't appear to have the

eclipse mylyn with redmine

淺唱寂寞╮ 提交于 2019-12-05 03:42:53
Is it possible to connect mylyn to redmine without rest support in redmine? ramunas there is a link http://download.eclipse.org/mylyn/incubator/3.8 that can be used in Eclipse. for Eclipse indigo : Help -> Install New Software -> Add -> use the link above for URL there should be plugin to check off : Mylyn Incubator -> Mylyn Task Connector:Web Templates (Advanced)(Incubation). Version = 3.8.0.I20120414-0402 after installing it, i was able to follow steps outlined in http://www.redmine.org/projects/redmine/wiki/HowTo_Mylyn ( the section 'Using the generic web repository connector' ). there is

debian 安装redmine1.2.2 使用apt-get安装ruby环境、mysql、手...

我们两清 提交于 2019-12-05 02:33:43
安装环境 ruby相关的 apt-get install binutils build-essential bzip2 ca-certificates cpp cpp-4.4 dbconfig-common dpkg-dev \ fakeroot g++ g++-4.4 gcc gcc-4.4 git git-core javascript-common libactionmailer-ruby \ libactionmailer-ruby1.8 libactionpack-ruby libactionpack-ruby1.8 libactiverecord-ruby1.8 \ libactiveresource-ruby libactiveresource-ruby1.8 libactivesupport-ruby libactivesupport-ruby1.8 \ libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libapr1 libaprutil1 \ libbreakpoint-ruby1.8 libbuilder-ruby1.8 libc-dev-bin libc6-dev libcmdparse2-ruby1.8 \ libcurl3-gnutls libdaemons

CentOS安裝Redmine2.1與配置

一个人想着一个人 提交于 2019-12-05 02:30:29
繼續折騰! Redmine2.1是支持多數據庫的,包括MySQL, PostgreSQL, Sqlite ,在這篇文章中我使用的是Sqlite,因為我已經源碼編譯安裝過MySQL,而Redmine如果使用MySQL數據源,還需要yum安裝一大堆雜七雜八的庫,像mysql-devel, mysql-libs等等,為了避免和已有的MySQL沖突,我決定使用Sqlite 作 數據源 。 su #進入root yum install rubygems ruby-devel sqlite-devel #安裝了ruby 1.8.7 gem install mongrel gem install bundler 修改Gemfile,加入 gem "mongrel" bundle install --without development test postgresql mysql rmagick #因為我使用Sqlite,所以忽略掉mysql和pgsql cd redmine-2.1.5 rake generate_secret_token cp config/database.yml.example config/database.yml RAILS_ENV=test_sqlite3 rake db:migrate #test_sqlite3是在config/database.yml定義的

redmine deploy on heroku cedar

冷暖自知 提交于 2019-12-05 01:05:09
I've been banging my head against the wall trying to deploy redmine 2.0.3 on heroku cedar. I had lots of problems with deploying with sqlite gem so I removed all sqlite references from my Gemefile, deleted Gemfile.lock, ran bundle install, and happily pushed to heroku. I ran heroku run rake db:migrate and I browsed to my app ( http://blooming-river-8784.herokuapp.com/ ) and I see the following: UPDATE!! -> when I run heroku run rake db:migrate I get the following warning messages: Running rake db:migrate attached to terminal... up, run.1 DEPRECATION WARNING: You have Rails 2.3-style plugins in

Including methods to a controller from a plugin

馋奶兔 提交于 2019-12-04 23:55:47
问题 Using Rails 2.3.11 , I'm creating a plugin for Redmine that add methods to ApplicationController . I've created the following module, in the plugin : module ApplicationControllerPatch def self.included(base) # :nodoc: base.class_eval do rescue_from AnException, :with => :rescue_method def rescue_method(exception) ... end end end end Now, if I include this module directly into the application_controller.rb file, like this: class ApplicationController < ActionController::Base include

how to install redmine2.4.1 on centos6.3

流过昼夜 提交于 2019-12-04 20:20:02
redmine是什么? 这是基于Ruby+Rails框架开发的一套跨平台项目管理系统, 支持多种数据库(百度) 安装开发包 yum install gcc gcc-c++ make automake autoconf curl-devel openssl-devel zlib-devel ImageMagick-devel -y 甘特图需要用到ImageMagick-devel 安装MYSQL yum install mysql mysql-server mysql-devel -y /etc/init.d/mysqld start mysql_secure_installation //安全配置一下 建立数据库 mysql> CREATE DATABASE redmine CHARACTER SET utf8; mysql> grant all privileges on redmine.* to redmine@'localhost' identified by 'BiVbJHSkZ4DU'; MYSQL编译的自己建库就行啦。 安装RUBY wget http://cache.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p353.tar.gz cd ruby-2.0.0-p353/ ./configure && make && make

在Redmine中查看txt文档出现乱码的解决方法

醉酒当歌 提交于 2019-12-04 20:19:51
在使用Redmine的过程中发现,查看txt的附件时中文显示为乱码,但是将该附件下载后打开显示正常。 问题原因如下: 我们在操作系统创建的txt文本文档默认的是ansi编码格式,而在整个Redmine中采用的都是UTF-8编码格式,所以上传后在Redmine中直接查看会显示乱码。 解决方法: 1.把txt附件下载下来查看 2.上传utf-8编码格式的txt附件 3.修改源代码。 修改Redmine安装目录下 app\controllers\attachments_controller.rb文件 在下面这行代码后面 @content = File.new(@attachment.diskfile, "rb").read 增加 @content = Iconv.new("utf-8","gb2312").iconv(@content) 保存文件,重启Redmine服务 来源: oschina 链接: https://my.oschina.net/u/1030976/blog/129510

Ruby + Redmine 简单安装配置

▼魔方 西西 提交于 2019-12-04 20:19:40
1.安装ruby 选择Ruby 2.1.0版本。 是个tar包。下到本地,解压。 进入到解压之后的目录 ./configure --prefix=/opt/local/ruby make && make install 其中,/opt/local/ruby是你要安装ruby的目标目录。自行选择。 安装完成之后,将/opt/local/ruby/bin加到path里面去。 运行 ruby -v 如果能获取到正确的版本号。则ruby顺利安装成功。 2. 下载rubygems 依然是tar包。解压。进入到解压后的目录。运行: ruby setup.rb 然后运行 gem install bundle 3. 下载redmine 我选择的版本是2.4.3版,tar包格式,下载后解压,进入解压后的目录。 给redmine创建数据库,进入mysql控制台,输入并运行 CREATE DATABASE redmine CHARACTER SET utf8; 配置redmine的数据库文件,进入redmine的解压目录中的config目录下 cp database.yml.example database.yml 编辑database.yml文件,将数据库的正确的连接信息配置进去。 在redmine的解压目录下,运行 gem install mysql2 bundle install -