Project

General

Profile

PluginEzfaq » History » Version 4

Chaoqun Zou, 2008-08-11 16:33

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