public
Description: This contains various plugins for Feather
Clone URL: git://github.com/eldiablo/feather-plugins.git
Click here to lend your support to: feather-plugins and make a donation at www.pledgie.com !
updated rake package task to allow packaging of all feather plugins at 
once - also updated plugin manifests inline with core plugin changes
eldiablo (author)
Fri Jun 06 19:31:21 -0700 2008
commit  9536530869262b116e851d850205203253866c56
tree    c45785e2d4baa53654d0eb62a6ef775335f6e778
parent  532ce005fea8d4f9a209f8553c90af8cf9c7fe0d
...
10
11
12
13
14
 
 
 
 
15
16
17
18
19
20
21
22
23
 
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
 
 
 
 
44
45
46
 
 
47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
 
 
49
50
...
10
11
12
 
 
13
14
15
16
17
18
19
 
 
 
 
 
 
20
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
23
24
25
26
 
 
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
0
@@ -10,40 +10,51 @@ require 'pp'
0
 namespace :feather do
0
   desc "Make plugin package"
0
   task :package do
0
-
0
- unless path = ENV['path']
0
+ # Grab the path specified, or use all feather-* plugins found
0
+ paths = ENV['path'].nil? ? Dir.glob("feather-*") : [ENV['path']]
0
+ if paths.empty?
0
+ # Show usage if no plugins are found and none is specified
0
       puts 'Usage: rake feather:package path=<plugin path> [target=<target path>]'
0
       return
0
     end
0
-
0
- # Load manifest
0
- puts "Load manifest..."
0
- pp manifest = YAML::load_file(File.join(path, 'manifest.yml'))
0
-
0
- # Target directory for package files
0
+ # Setup default target if none specified, otherwise use that
0
     target = ENV['target'] ? ENV['target'] : File.join(File.dirname(__FILE__), 'pkg')
0
- puts "Target is: #{target}"
0
- Dir.mkdir(target) if not File.exists?(target)
0
-
0
- # Package name
0
- package = "#{manifest['name']}-#{manifest['version']}"
0
- puts "Package: #{package}"
0
-
0
- # Tgz
0
- manifest['package'] = "#{package}.tgz"
0
- command = "tar -czf #{package}.tgz --exclude pkg -C #{path} ."
0
- puts "Packing: #{command}"
0
- system command
0
-
0
- # Move
0
- puts "Finishing.."
0
- FileUtils.mv("#{package}.tgz", target)
0
- File.open(File.join(target, "#{package}.yml"), 'w') do |f|
0
- f.puts(manifest.to_yaml)
0
- f.close
0
+ # Loop through paths, packaging each one
0
+ paths.each do |path|
0
+ puts "Packaging... (#{path})"
0
+ package(path, target)
0
     end
0
-
0
- puts "Done."
0
+ end
0
+end
0
 
0
+##
0
+# This packages the set path, with the specified target path
0
+def package(path, target)
0
+ # Load manifest
0
+ puts "Load manifest..."
0
+ manifest = YAML::load_file(File.join(path, 'manifest.yml'))
0
+
0
+ # Target directory for package files
0
+ puts "Target is: #{target}"
0
+ Dir.mkdir(target) if not File.exists?(target)
0
+
0
+ # Package name
0
+ package = "#{manifest['name']}-#{manifest['version']}"
0
+ puts "Package: #{package}"
0
+
0
+ # Tgz
0
+ manifest['package'] = "#{package}.tgz"
0
+ command = "tar -czf #{package}.tgz --exclude pkg -C #{path} ."
0
+ puts "Packing: #{command}"
0
+ system command
0
+
0
+ # Move
0
+ puts "Finishing.."
0
+ FileUtils.mv("#{package}.tgz", target)
0
+ File.open(File.join(target, "#{package}.yml"), 'w') do |f|
0
+ f.puts(manifest.to_yaml)
0
+ f.close
0
   end
0
+
0
+ puts "Done."
0
 end
0
\ No newline at end of file
...
1
2
3
4
 
 
 
 
 
 
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
29
...
 
 
 
 
1
2
3
4
5
6
7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
9
10
0
@@ -1,27 +1,8 @@
0
-plugin:
0
- name: feather-akismet
0
- author: Jake Good
0
- version: 1.0
0
+name: feather-akismet
0
+version: 1.0
0
+homepage: http://featherblog.org
0
+author:
0
+ name: Jake Good
0
+ email: gooberdlx@hotmail.com
0
     homepage: http://www.thoughtstoblog.com
0
- about: This plugin provides basic akismet comment validation.
0
- contents:
0
- .:
0
- - init.rb
0
- - install.rb
0
- helpers:
0
- .:
0
- - global_helpers.rb
0
- controllers:
0
- admin:
0
- .:
0
- - akismet_configuration.rb
0
- models:
0
- .:
0
- - akismet_config.rb
0
- - comment.rb
0
- views:
0
- admin:
0
- akismet_configuration:
0
- .:
0
- - edit.html.erb
0
- - show.html.erb
0
\ No newline at end of file
0
+about: This plugin provides basic akismet comment validation.
0
\ No newline at end of file
...
1
2
3
4
5
6
7
8
9
10
 
 
 
 
 
 
 
 
11
...
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
0
@@ -1,10 +1,8 @@
0
-plugin:
0
- name: feather-antispam
0
- author: Jake Good
0
- version: 1.0
0
- homepage: http://featherblog.org
0
- about: This plugin fights the good fight againts evil comment spammers.
0
- contents:
0
- .:
0
- - init.rb
0
- - install.rb
0
+name: feather-antispam
0
+version: 1.0
0
+homepage: http://featherblog.org
0
+author:
0
+ name: Jake Good
0
+ email: gooberdlx@hotmail.com
0
+ homepage: http://www.thoughtstoblog.com
0
+about: This plugin fights the good fight against evil comment spammers.
0
\ No newline at end of file
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
 
 
 
 
 
 
 
 
48
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
0
@@ -1,46 +1,8 @@
0
-plugin:
0
- name: feather-comments
0
- author: Michael Leung and El Draper
0
- version: 1.0
0
- homepage: http://featherblog.org
0
- about: This plugin provides the base commenting system for feather.
0
- contents:
0
- .:
0
- - init.rb
0
- - install.rb
0
- controllers:
0
- .:
0
- - comments.rb
0
- admin:
0
- .:
0
- - comment_settings.rb
0
- - comments.rb
0
- mailers:
0
- .:
0
- - comment_mailer.rb
0
- views:
0
- comment_mailer:
0
- .:
0
- - notify.text.erb
0
- models:
0
- .:
0
- - comment.rb
0
- - comment_setting.rb
0
- views:
0
- admin:
0
- comment_settings:
0
- .:
0
- - edit.html.erb
0
- - show.html.erb
0
- comments:
0
- .:
0
- - _comment.html.erb
0
- - index.html.erb
0
- - show.html.erb
0
- - update.js.erb
0
- after_article:
0
- .:
0
- - _comments.html.erb
0
- meta_section:
0
- .:
0
- - _comments.html.erb
0
\ No newline at end of file
0
+name: feather-comments
0
+version: 1.0
0
+homepage: http://featherblog.org
0
+author:
0
+ name: Michael Leung and El Draper
0
+ email: blamemike@gmail.com and el@eldiablo.co.uk
0
+ homepage: http://bloggingmyassoff.com and http://crazycool.co.uk
0
+about: This plugin provides the base commenting system for feather.
0
\ No newline at end of file
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
 
 
 
 
 
 
 
 
42
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
0
@@ -1,40 +1,8 @@
0
-plugin:
0
- name: feather-feeds
0
- author: El Draper
0
- version: 1.0
0
- homepage: http://featherblog.org
0
- about: This plugin provides an RSS feed for a Feather blog.
0
- contents:
0
- .:
0
- - init.rb
0
- - install.rb
0
- controllers:
0
- .:
0
- - feeds.rb
0
- - feed_settings.rb
0
- helpers:
0
- .:
0
- - global_helpers.rb
0
- models:
0
- .:
0
- - feed_setting.rb
0
- views:
0
- .:
0
- admin:
0
- .:
0
- feed_settings:
0
- .:
0
- - edit.html.erb
0
- - show.html.erb
0
- head:
0
- .:
0
- - _feed_link.html.erb
0
- sidebar:
0
- .:
0
- - _feed_link.html.erb
0
- gems:
0
- .:
0
- - builder-2.1.2.gem
0
- specifications:
0
- .:
0
- - builder-2.1.2.gemspec
0
\ No newline at end of file
0
+name: feather-feeds
0
+version: 1.0
0
+homepage: http://featherblog.org
0
+author:
0
+ name: El Draper
0
+ email: el@eldiablo.co.uk
0
+ homepage: http://crazycool.co.uk
0
+about: This plugin provides RSS/Atom feeds for a Feather blog.
0
\ No newline at end of file
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 
 
 
 
 
 
 
 
27
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
0
@@ -1,25 +1,8 @@
0
-plugin:
0
- name: feather-formatters
0
- author: El Draper & Michael Murray
0
- version: 1.0
0
- homepage: http://featherblog.org
0
- about: This plugin provides different formatters to be used with Feather. Also includes support for code syntax highlighting via <code:language> tags
0
- contents:
0
- .:
0
- - init.rb
0
- gems:
0
- .:
0
- - RedCloth-3.0.4.gem
0
- - BlueCloth-1.0.0.gem
0
- - rubypants-0.2.0.gem
0
- - coderay-0.7.4.215.gem
0
- specifications:
0
- .:
0
- - RedCloth-3.0.4.gemspec
0
- - BlueCloth-1.0.0.gemspec
0
- - rubypants-0.2.0.gemspec
0
- - coderay-0.7.4.215.gemspec
0
- views:
0
- head:
0
- .:
0
- - _coderay.html.erb
0
\ No newline at end of file
0
+name: feather-formatters
0
+version: 1.0
0
+homepage: http://featherblog.org
0
+author:
0
+ name: El Draper & Michael Murray
0
+ email: el@eldiablo.co.uk and unknown
0
+ homepage: http://crazycool.co.uk and http://sudothinker.com
0
+about: This plugin provides different formatters to be used with Feather. Also includes support for code syntax highlighting via <code:language> tags
0
\ No newline at end of file
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
 
 
 
 
 
 
 
22
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
0
@@ -1,20 +1,8 @@
0
-plugin:
0
- name: feather-import
0
- author: El Draper
0
- version: 1.0
0
- homepage: http://featherblog.org
0
- about: This plugin provides a way for users to import existing content (posts and comments) from other sources using RSS
0
- contents:
0
- .:
0
- - init.rb
0
- controllers:
0
- .:
0
- - importer.rb
0
- views:
0
- .:
0
- admin:
0
- .:
0
- importer:
0
- .:
0
- - show.html.erb
0
- - create.html.erb
0
\ No newline at end of file
0
+name: feather-import
0
+version: 1.0
0
+homepage: http://featherblog.org
0
+author:
0
+ name: El Draper
0
+ email: el@eldiablo.co.uk
0
+ homepage: http://crazycool.co.uk
0
+about: This plugin provides a way for users to import existing content (posts and comments) from other sources using RSS
0
\ No newline at end of file
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 
 
 
 
 
 
 
 
35
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
0
@@ -1,33 +1,8 @@
0
-plugin:
0
- name: feather-jabber
0
- author: Marc Seeger and Michael Leung
0
- version: 1.0
0
- homepage: http://featherblog.org
0
- about: This plugin provides Jabber support.
0
- contents:
0
- .:
0
- - init.rb
0
- - install.rb
0
- controllers:
0
- .:
0
- admin:
0
- .:
0
- - jabber_settings.rb
0
- gems:
0
- .:
0
- - xmpp4r-0.3.2.gem
0
- specifications:
0
- .:
0
- - xmpp4r-0.3.2.gemspec
0
- lib:
0
- .:
0
- - comment.rb
0
- models:
0
- .:
0
- - jabber_setting.rb
0
- views:
0
- admin:
0
- jabber_settings:
0
- .:
0
- - edit.html.erb
0
- - show.html.erb
0
\ No newline at end of file
0
+name: feather-jabber
0
+version: 1.0
0
+homepage: http://featherblog.org
0
+author:
0
+ name: Marc Seeger and Michael Leung
0
+ email: unknown and blamemike@gmail.com
0
+ homepage: http://www.marc-seeger.de and http://bloggingmyassoff.com
0
+about: This plugin provides Jabber support.
0
\ No newline at end of file
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 
 
 
 
 
 
 
 
31
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
0
@@ -1,29 +1,8 @@
0
-plugin:
0
- name: feather-mephisto
0
- author: Jake Good
0
- version: 1.0
0
- homepage: http://thoughtstoblog.com
0
- about: This plugin provides importing functionality from Mephisto.
0
- contents:
0
- .:
0
- - init.rb
0
- controllers:
0
- .:
0
- - mephisto.rb
0
- models:
0
- .:
0
- - mephisto_article.rb
0
- - mephisto_assigned_section.rb
0
- - mephisto_base.rb
0
- - mephisto_comment.rb
0
- - mephisto_section.rb
0
- - mephisto_tag.rb
0
- - mephisto_tagging.rb
0
- views:
0
- .:
0
- admin:
0
- .:
0
- mephisto:
0
- .:
0
- - show.html.erb
0
- - create.html.erb
0
\ No newline at end of file
0
+name: feather-mephisto
0
+version: 1.0
0
+homepage: http://featherblog.org
0
+author:
0
+ name: Jake Good
0
+ email: gooberdlx@hotmail.com
0
+ homepage: http://www.thoughtstoblog.com
0
+about: This plugin provides importing functionality from Mephisto.
0
\ No newline at end of file
...
1
2
3
4
 
 
 
 
 
 
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
29
...
 
 
 
 
1
2
3
4
5
6
7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
9
10
0
@@ -1,27 +1,8 @@
0
-plugin:
0
- name: feather-mollom
0
- author: Rob Kaufman
0
- version: 1.0
0
+name: feather-mollom
0
+version: 1.0
0
+homepage: http://featherblog.org
0
+author:
0
+ name: Rob Kaufman
0
+ email: unknown
0
     homepage: http://www.notch8.com
0
- about: This plugin provides basic Mollom comment validation.
0
- contents:
0
- .:
0
- - init.rb
0
- - install.rb
0
- controllers:
0
- admin:
0
- .:
0
- - mollom_settings.rb
0
- gems:
0
- .:
0
- - mollom-0.1.2.gem
0
- models:
0
- .:
0
- - mollom_config.rb
0
- - comment.rb
0
- views:
0
- admin:
0
- mollom_settings:
0
- .:
0
- - edit.html.erb
0
- - show.html.erb
0
\ No newline at end of file
0
+about: This plugin provides basic Mollom comment validation.
0
\ No newline at end of file
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 
 
 
 
 
 
 
 
37
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
0
@@ -1,35 +1,8 @@
0
-plugin:
0
- name: feather-pings
0
- author: El Draper
0
- version: 1.0
0
- homepage: http://featherblog.org
0
- about: This plugin adds the ability for ping services to be contacted whenever a new post is published.
0
- contents:
0
- .:
0
- - init.rb
0
- - install.rb
0
- controllers:
0
- .:
0
- - ping_logs.rb
0
- - ping_services.rb
0
- models:
0
- .:
0
- - ping_log.rb
0
- - ping_service.rb
0
- views:
0
- .:
0
- admin:
0
- .:
0
- ping_logs:
0
- .:
0
- - _ping_log.html.erb
0
- - index.html.erb
0
- - show.html.erb
0
- ping_services:
0
- .:
0
- - _form.html.erb
0
- - _ping_service.html.erb
0
- - edit.html.erb
0
- - index.html.erb
0
- - new.html.erb
0
- - show.html.erb
0
\ No newline at end of file
0
+name: feather-pings
0
+version: 1.0
0
+homepage: http://featherblog.org
0
+author:
0
+ name: El Draper
0
+ email: el@eldiablo.co.uk
0
+ homepage: http://crazycool.co.uk
0
+about: This plugin adds the ability for ping services to be contacted whenever a new post is published.
0
\ No newline at end of file
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
 
 
 
 
 
 
 
 
39
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
0
@@ -1,37 +1,8 @@
0
-plugin:
0
- name: feather-recaptcha
0
- author: Jake Good
0
- version: 1.0
0
- homepage: http://www.thoughtstoblog.com
0
- about: This plugin provides basic recaptcha comment validation.
0
- contents:
0
- .:
0
- - init.rb
0
- - install.rb
0
- helpers:
0
- .:
0
- - global_helpers.rb
0
- controllers:
0
- .:
0
- - comments.rb
0
- admin:
0
- .:
0
- - recaptcha_configuration.rb
0
- models:
0
- .:
0
- - recaptcha_config.rb
0
- views:
0
- admin:
0
- recaptcha_configuration:
0
- .:
0
- - edit.html.erb
0
- - show.html.erb
0
- after_article:
0
- .:
0
- - _recaptcha.html.erb
0
- gems:
0
- .:
0
- - recaptcha-0.1.47.gem
0
- specifications:
0
- .:
0
- - recaptcha-0.1.47.gemspec
0
\ No newline at end of file
0
+name: feather-recaptcha
0
+version: 1.0
0
+homepage: http://featherblog.org
0
+author:
0
+ name: Jake Good
0
+ email: gooberdlx@hotmail.com
0
+ homepage: http://www.thoughtstoblog.com
0
+about: This plugin provides basic recaptcha comment validation.
0
\ No newline at end of file
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 
 
 
 
 
 
 
 
30
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
0
@@ -1,28 +1,8 @@
0
-plugin:
0
- name: feather-redirects
0
- author: El Draper
0
- version: 1.0
0
- homepage: http://featherblog.org
0
- about: This plugin adds the ability for the user to setup custom redirects.
0
- contents:
0
- .:
0
- - init.rb
0
- - install.rb
0
- controllers:
0
- .:
0
- - redirector.rb
0
- - redirects.rb
0
- models:
0
- .:
0
- - redirect.rb
0
- views:
0
- .:
0
- admin:
0
- .:
0
- redirects:
0
- .:
0
- - _form.html.erb
0
- - edit.html.erb
0
- - index.html.erb
0
- - new.html.erb
0
- - show.html.erb
0
\ No newline at end of file
0
+name: feather-redirects
0
+version: 1.0
0
+homepage: http://featherblog.org
0
+author:
0
+ name: El Draper
0
+ email: el@eldiablo.co.uk
0
+ homepage: http://crazycool.co.uk
0
+about: This plugin adds the ability for the user to setup custom redirects.
0
\ No newline at end of file
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 
 
 
 
 
 
 
 
30
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
0
@@ -1,28 +1,8 @@
0
-plugin:
0
- name: feather-repo
0
- author: El Draper
0
- version: 1.0
0
- homepage: http://featherblog.org
0
- about: This plugin provides repository functionality, allowing you to host plugins for download directly from your Feather installation
0
- contents:
0
- .:
0
- - init.rb
0
- - install.rb
0
- controllers:
0
- .:
0
- admin:
0
- .:
0
- - releases.rb
0
- models:
0
- .:
0
- - release.rb
0
- views:
0
- admin:
0
- releases:
0
- .:
0
- - _form.html.erb
0
- - _release.html.erb
0
- - edit.html.erb
0
- - index.html.erb
0
- - new.html.erb
0
- - show.html.erb
0
\ No newline at end of file
0
+name: feather-repo
0
+version: 1.0
0
+homepage: http://featherblog.org
0
+author:
0
+ name: El Draper
0
+ email: el@eldiablo.co.uk
0
+ homepage: http://crazycool.co.uk
0
+about: This plugin provides repository functionality, allowing you to host plugins for download directly from your Feather installation
0
\ No newline at end of file
...
1
2
3
4
 
 
 
 
 
 
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 
26
...
 
 
 
 
1
2
3
4
5
6
7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
9
10
0
@@ -1,24 +1,8 @@
0
-plugin:
0
- name: feather-search
0
- author: Jake Good
0
- version: 1.0
0
+name: feather-search
0
+version: 1.0
0
+homepage: http://featherblog.org
0
+author:
0
+ name: Jake Good
0
+ email: gooberdlx@hotmail.com
0
     homepage: http://www.thoughtstoblog.com
0
- about: This plugin provides searching support.
0
- contents:
0
- .:
0
- - init.rb
0
- - install.rb
0
- controllers:
0
- .:
0
- - search.rb
0
- views:
0
- .:
0
- layout:
0
- .:
0
- - empty.html.erb
0
- search:
0
- .:
0
- - articles.html.erb
0
- sidebar:
0
- .:
0
- - _search_bar.html.erb
0
\ No newline at end of file
0
+about: This plugin provides searching support.
0
\ No newline at end of file
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
 
 
 
 
 
 
 
 
33
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
0
@@ -1,31 +1,8 @@
0
-plugin:
0
- name: feather-sidebar
0
- author: Michael Leung
0
- version: 1.0
0
- homepage: http://featherblog.org
0
- about: This plugin provides the ability to create arbitrary sidebar links.
0
- contents:
0
- .:
0
- - init.rb
0
- - install.rb
0
- controllers:
0
- .:
0
- - sidebar_groups.rb
0
- models:
0
- .:
0
- - sidebar_group.rb
0
- views:
0
- .:
0
- admin:
0
- .:
0
- sidebar_groups:
0
- .:
0
- - _form.html.erb
0
- - _sidebar_group.html.erb
0
- - edit.html.erb