Redmine Project Setup
Version 1 (Redmine Admin, 05/05/2012 03:03 PM)
1 | 1 | Redmine Admin | h1. Redmine Project Setup |
---|---|---|---|
2 | 1 | Redmine Admin | |
3 | 1 | Redmine Admin | |
4 | 1 | Redmine Admin | h2. "Mailing List" and "Project Info" tabs |
5 | 1 | Redmine Admin | |
6 | 1 | Redmine Admin | The solution I found is not perfect, as it needs some manual setup, but it is relatively simple: |
7 | 1 | Redmine Admin | |
8 | 1 | Redmine Admin | * I installed the 'embedded' plugin for redmine, which allows to define a new project tab |
9 | 1 | Redmine Admin | * in the plugin config, the tab name is set to 'Mailing List', and the tab content points to /var/www/redmine/doc/details/{PROJECT}/ |
10 | 1 | Redmine Admin | * for each project, one needs to create that directory, and in there have an index.html like this one for the saga-wg: |
11 | 1 | Redmine Admin | <pre><code class="bash"> |
12 | 1 | Redmine Admin | root@ogfapp:/var/www/redmine/doc/details/saga-wg# cat index.html |
13 | 1 | Redmine Admin | <iframe width="100%" height='2000' scrolling="no" frameborder='no' src="http://www.ogf.org/mailman/listinfo/saga-core-wg"></iframe> |
14 | 1 | Redmine Admin | </pre> |
15 | 1 | Redmine Admin | which gets the respective mailman page displayed in an iframe on that tab. |
16 | 1 | Redmine Admin | |
17 | 1 | Redmine Admin | |
18 | 1 | Redmine Admin | I have a similar solution for the project info: there is a 'tab' plugin which provides an additional tab per project. For each project which enables that plugin, the project settings have an additional key 'ProjectInfo', which can be defined by the project. For the saga-wg again, that is for example set to |
19 | 1 | Redmine Admin | |
20 | 1 | Redmine Admin | <pre><code class="html"> |
21 | 1 | Redmine Admin | <iframe width="100%" height='2000' scrolling="no" frameborder='no' src="http://www.ogf.org/gf/group_info/view_bare.php?group=saga-wg"></iframe> |
22 | 1 | Redmine Admin | </pre> |
23 | 1 | Redmine Admin | |
24 | 1 | Redmine Admin | and you can probably guess what that shows :-) |
25 | 1 | Redmine Admin | |
26 | 1 | Redmine Admin | I did not find a way to do both tabs with a single module, but if the above scheme proves to be too limited, I'll try to expand the tab embedded plugin to serve our needs. |