Project

General

Profile

PluginEzfaq » History » Version 3

Chaoqun Zou, 2008-08-11 16:30

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