mszczytowski / redmine_messenger

Plugin to allow users to communicate with Redmine via Instant Messenger.

This URL has Read+Write access

Maciej Szczytowski (author)
Sat Sep 12 06:19:54 -0700 2009
commit  baacff421c7a494bcd2d055d48daf6e24bdc1ffa
tree    fb48714e23ef678deebb857d9753cd1f0733cfd5
parent  caa8e8293fac4592cedd0e2da210ecdf8344d217
name age message
file README.markdown Sat Sep 12 06:19:54 -0700 2009 de translations [Maciej Szczytowski]
directory app/ Thu Sep 03 10:07:03 -0700 2009 fixes bug #1 and #2 [Maciej Szczytowski]
directory config/ Sat Sep 12 06:19:54 -0700 2009 de translations [Maciej Szczytowski]
directory db/ Thu Nov 06 09:29:12 -0800 2008 notification via messenger [mszczytowski]
file init.rb Thu Sep 03 10:09:47 -0700 2009 next version [Maciej Szczytowski]
directory lang/ Sat Sep 12 06:19:54 -0700 2009 de translations [Maciej Szczytowski]
directory lib/ Thu Sep 03 10:07:03 -0700 2009 fixes bug #1 and #2 [Maciej Szczytowski]
directory test/ Thu Sep 03 10:07:03 -0700 2009 fixes bug #1 and #2 [Maciej Szczytowski]
README.markdown

Redmine Messenger

Plugin to allow users to communicate with Redmine via Instant Messenger.

Instalation

Install Xmpp4r library.

$ gem install xmpp4r

Download the sources and put them to your vendor/plugins folder.

$ cd {REDMINE_ROOT}
$ git clone git://github.com/mszczytowski/redmine_messenger.git vendor/plugins/redmine_messenger

Copy default messenger.yml to your config folder.

$ cp vendor/plugins/redmine_messenger/config/messenger.yml config/

Create jabber account for Redmine user and set its configuration in messenger.yml.

$ vim config/messenger.yml

Migrate database.

$ rake db:migrate_plugins

Run Redmine and have a fun!

Translations

  • en by myself
  • es by smlghst
  • ru by akrus
  • pl by myself
  • de by Michael Jahn

Thanks for contribution.

Changelog

0.0.9

  • new translations (de)

0.0.8

  • bug fixes (#1, #2)

Registration

Login to your Redmine. Go to page http://your_redmine_domain/user_messenger and fill Messenger ID field with your jabber id. Click save. You will receive verification code.

Add Redmine jabber account as your contact and send him your verification code. You should receive confirmation.

Type 'help' and read what you can do with it.

Help

All user related help is on page http://your_redmine_domain/user_messenger.

Features

  • timers
  • logging times
  • searching for issues
  • details of issue
  • timer status with logged time statistics
  • commenting issues
  • pausing/resuming timer when user become away/visible (configurable)
  • changing status of issue to 'in progress' while starting timer (configurable)
  • changing status of issue to 'finished' while finishing timer with ratio equalt to 100 (configurable)
  • assigning issues
  • notifications (configurable)

Extending

To extend functionality create file app/messenger/NAME_messenger.rb. See app/messenger/issues_messenger.rb for usage example.