I am currently developing some plugins for Redmine, and I must say, I'm a bit disappointed with the lack of documentation available on this subject.

Normally, If I am looking for explanations on classes/methods, I need to spend a consistent amount of time browsing trough the core classes, and striving to understand the code written there (It seems that some people forgot to document their code, unfortunately).

I've checked their forums http://www.redmine.org/projects/redmine/boards, and it seems to take forever in order for a question to be answered.

That's why I would like some advice regarding some good API documentation/books/forums on this subject.

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

the better documentation is the codesource. One the Redmine's mainteners have almost all Redmine's plugin on github.

you can choose any plugin and see what is looks like. mostly it's about metaprogramming and alias_method_in_chain usage

link|improve this answer
This may not seem like the answer, but save yourself a lot of headache and believe us that it is. The plugins are actually not that hard to write. Go off of what's already written and you should be able to find out how to do most things. – Milimetric Jul 18 '11 at 18:01
yes, I also can't find a good 'text' documentation howto write plugin for Redmine. can you please let me know if you can find it? – mikhailov Jul 18 '11 at 18:05
I'm considering writing a couple of tutorials to help other people get started faster than I did, once I acquire more experience. I will probably post the link here, if I succeed. Thanks for the answers – Rails Rider Jul 18 '11 at 19:37
feedback

As stated on the redmine wiki page about plugin hooks:

There is a list of valid hooks. But the best way to find them is to just have a look into the code to find the place you would like to extend and search for a call to a hook nearby.

It seems browsing through the core classes as well as looking at other plugins is the way to go.

I assume you already found all the documentation on the wiki related to plugins:

As to the reactivity on the forum, you may try asking a question on the forum of chiliproject, the recent fork of redmine. Not sure though how much of it has already changed.

link|improve this answer
Redmine and ChiliProject 1.x are pretty close, we tried to keep compatability as much as possible. ChiliProject 2.x has some major changes especially around Journals (issue notes). Older code should still work but it will need to be tested and ported. About 50% of my plugins worked with no changes, 40% worked with a Gemfile for bundler, and the rest need some updates. – Eric Davis Jul 22 '11 at 22:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.