PluginEzfaq » History » Version 6
Chaoqun Zou, 2008-11-16 12:10
1 | 5 | Chaoqun Zou | h1. ezFAQ Plugin (current version 0.0.2) |
---|---|---|---|
2 | 2 | Chaoqun Zou | |
3 | 1 | Chaoqun Zou | A FAQ management plugin to collect the frequently asked questions. |
4 | 5 | Chaoqun Zou | Using ezFAQ, you can add a question, assign someone to answer it, or modify the answer, ezFAQ will record each modifications. ezFAQ will send notify email to the author and the assigned user. |
5 | |||
6 | Futher more, ezFAQ can generate a pdf document of all the valid FAQs(version 0.0.3). |
||
7 | 2 | Chaoqun Zou | |
8 | It can be downloaded from github: |
||
9 | 4 | Chaoqun Zou | |
10 | 3 | Chaoqun Zou | http://github.com/zouchaoqun/ezfaq/tree/master |
11 | 2 | Chaoqun Zou | |
12 | 6 | Chaoqun Zou | It also can be downloaded here as attachment. |
13 | |||
14 | 2 | Chaoqun Zou | Screenshot: |
15 | |||
16 | 3 | Chaoqun Zou | !ezfaq_tn.png!:/attachments/download/863 |
17 | 2 | Chaoqun Zou | |
18 | h2. To install from git: |
||
19 | |||
20 | (Git Version < 1.5.3) |
||
21 | <pre> |
||
22 | cd {RAILS_ROOT}/vendor/plugins |
||
23 | git clone git://github.com/zouchaoqun/ezfaq.git |
||
24 | </pre> |
||
25 | |||
26 | (Git Version >= 1.5.3 -- Because the "git-rails" gem uses Git Submodules introduced in ver. 1.5.3) |
||
27 | 1 | Chaoqun Zou | <pre> |
28 | 4 | Chaoqun Zou | gem install git-rails |
29 | 2 | Chaoqun Zou | git-rails install git://github.com/zouchaoqun/ezfaq.git |
30 | </pre> |
||
31 | |||
32 | h2. Plugin setup |
||
33 | 1 | Chaoqun Zou | |
34 | 2 | Chaoqun Zou | 1. Install will_paginate gem |
35 | 3 | Chaoqun Zou | |
36 | gem install will_paginate |
||
37 | 1 | Chaoqun Zou | |
38 | 2 | Chaoqun Zou | 2. Add will_paginate to the last of enviroment.rb |
39 | 3 | Chaoqun Zou | |
40 | require 'will_paginate' |
||
41 | 1 | Chaoqun Zou | |
42 | 3 | Chaoqun Zou | 3. Install the plugin as described "here":http://www.redmine.org/wiki/redmine/Plugins (this plugin *requires* migration). |
43 | 2 | Chaoqun Zou | |
44 | 1 | Chaoqun Zou | 4. Copy the plugin directory(ezfaq_plugin) into the vendor/plugins directory |
45 | 3 | Chaoqun Zou | |
46 | 4 | Chaoqun Zou | 5. Migrate plugin: |
47 | 1 | Chaoqun Zou | |
48 | rake db:migrate_plugins |
||
49 | 2 | Chaoqun Zou | |
50 | 4 | Chaoqun Zou | 6. Start Redmine |
51 | 2 | Chaoqun Zou | |
52 | 4 | Chaoqun Zou | 7. In your project in Redmine, go to "Project settings" : On the "Modules" tab, enable the module by checking "Ezfaq". |
53 | 2 | Chaoqun Zou | |
54 | h2. Using ezFAQ |
||
55 | |||
56 | 3 | Chaoqun Zou | # Registered users can add new faqs by click the 'New FAQ' link. |
57 | # Privileged users can modify faqs, modify faq categories by click the appropriate link. |
||
58 | # Privileged users can modify the FAQ list's note which will be displayed before the list and exported to the pdf document. |
||
59 | # When a faq is created and assigned to someone, the assigned user will receive a notify email to complete the answer. |