bcms_page_comments 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE.txt +165 -0
- data/README.markdown +61 -0
- data/app/controllers/application_controller.rb +10 -0
- data/app/controllers/cms/page_comments_controller.rb +2 -0
- data/app/controllers/page_comments_controller.rb +19 -0
- data/app/helpers/application_helper.rb +3 -0
- data/app/models/page_comment.rb +11 -0
- data/app/portlets/most_commented_on_portlet.rb +18 -0
- data/app/portlets/page_comments_portlet.rb +14 -0
- data/app/views/cms/page_comments/_form.html.erb +5 -0
- data/app/views/cms/page_comments/render.html.erb +6 -0
- data/app/views/portlets/most_commented_on/_form.html.erb +3 -0
- data/app/views/portlets/most_commented_on/render.html.erb +7 -0
- data/app/views/portlets/page_comments/_form.html.erb +2 -0
- data/app/views/portlets/page_comments/render.html.erb +31 -0
- data/db/migrate/20090417155756_create_page_comments.rb +21 -0
- data/lib/bcms_page_comments/routes.rb +13 -0
- data/lib/bcms_page_comments.rb +1 -0
- data/rails/init.rb +3 -0
- data/test/performance/browsing_test.rb +9 -0
- data/test/test_helper.rb +38 -0
- data/test/unit/portlets/most_commented_on_portlet_test.rb +62 -0
- metadata +74 -0
data/LICENSE.txt
ADDED
@@ -0,0 +1,165 @@
|
|
1
|
+
GNU LESSER GENERAL PUBLIC LICENSE
|
2
|
+
Version 3, 29 June 2007
|
3
|
+
|
4
|
+
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
5
|
+
Everyone is permitted to copy and distribute verbatim copies
|
6
|
+
of this license document, but changing it is not allowed.
|
7
|
+
|
8
|
+
|
9
|
+
This version of the GNU Lesser General Public License incorporates
|
10
|
+
the terms and conditions of version 3 of the GNU General Public
|
11
|
+
License, supplemented by the additional permissions listed below.
|
12
|
+
|
13
|
+
0. Additional Definitions.
|
14
|
+
|
15
|
+
As used herein, "this License" refers to version 3 of the GNU Lesser
|
16
|
+
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
17
|
+
General Public License.
|
18
|
+
|
19
|
+
"The Library" refers to a covered work governed by this License,
|
20
|
+
other than an Application or a Combined Work as defined below.
|
21
|
+
|
22
|
+
An "Application" is any work that makes use of an interface provided
|
23
|
+
by the Library, but which is not otherwise based on the Library.
|
24
|
+
Defining a subclass of a class defined by the Library is deemed a mode
|
25
|
+
of using an interface provided by the Library.
|
26
|
+
|
27
|
+
A "Combined Work" is a work produced by combining or linking an
|
28
|
+
Application with the Library. The particular version of the Library
|
29
|
+
with which the Combined Work was made is also called the "Linked
|
30
|
+
Version".
|
31
|
+
|
32
|
+
The "Minimal Corresponding Source" for a Combined Work means the
|
33
|
+
Corresponding Source for the Combined Work, excluding any source code
|
34
|
+
for portions of the Combined Work that, considered in isolation, are
|
35
|
+
based on the Application, and not on the Linked Version.
|
36
|
+
|
37
|
+
The "Corresponding Application Code" for a Combined Work means the
|
38
|
+
object code and/or source code for the Application, including any data
|
39
|
+
and utility programs needed for reproducing the Combined Work from the
|
40
|
+
Application, but excluding the System Libraries of the Combined Work.
|
41
|
+
|
42
|
+
1. Exception to Section 3 of the GNU GPL.
|
43
|
+
|
44
|
+
You may convey a covered work under sections 3 and 4 of this License
|
45
|
+
without being bound by section 3 of the GNU GPL.
|
46
|
+
|
47
|
+
2. Conveying Modified Versions.
|
48
|
+
|
49
|
+
If you modify a copy of the Library, and, in your modifications, a
|
50
|
+
facility refers to a function or data to be supplied by an Application
|
51
|
+
that uses the facility (other than as an argument passed when the
|
52
|
+
facility is invoked), then you may convey a copy of the modified
|
53
|
+
version:
|
54
|
+
|
55
|
+
a) under this License, provided that you make a good faith effort to
|
56
|
+
ensure that, in the event an Application does not supply the
|
57
|
+
function or data, the facility still operates, and performs
|
58
|
+
whatever part of its purpose remains meaningful, or
|
59
|
+
|
60
|
+
b) under the GNU GPL, with none of the additional permissions of
|
61
|
+
this License applicable to that copy.
|
62
|
+
|
63
|
+
3. Object Code Incorporating Material from Library Header Files.
|
64
|
+
|
65
|
+
The object code form of an Application may incorporate material from
|
66
|
+
a header file that is part of the Library. You may convey such object
|
67
|
+
code under terms of your choice, provided that, if the incorporated
|
68
|
+
material is not limited to numerical parameters, data structure
|
69
|
+
layouts and accessors, or small macros, inline functions and templates
|
70
|
+
(ten or fewer lines in length), you do both of the following:
|
71
|
+
|
72
|
+
a) Give prominent notice with each copy of the object code that the
|
73
|
+
Library is used in it and that the Library and its use are
|
74
|
+
covered by this License.
|
75
|
+
|
76
|
+
b) Accompany the object code with a copy of the GNU GPL and this license
|
77
|
+
document.
|
78
|
+
|
79
|
+
4. Combined Works.
|
80
|
+
|
81
|
+
You may convey a Combined Work under terms of your choice that,
|
82
|
+
taken together, effectively do not restrict modification of the
|
83
|
+
portions of the Library contained in the Combined Work and reverse
|
84
|
+
engineering for debugging such modifications, if you also do each of
|
85
|
+
the following:
|
86
|
+
|
87
|
+
a) Give prominent notice with each copy of the Combined Work that
|
88
|
+
the Library is used in it and that the Library and its use are
|
89
|
+
covered by this License.
|
90
|
+
|
91
|
+
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
92
|
+
document.
|
93
|
+
|
94
|
+
c) For a Combined Work that displays copyright notices during
|
95
|
+
execution, include the copyright notice for the Library among
|
96
|
+
these notices, as well as a reference directing the user to the
|
97
|
+
copies of the GNU GPL and this license document.
|
98
|
+
|
99
|
+
d) Do one of the following:
|
100
|
+
|
101
|
+
0) Convey the Minimal Corresponding Source under the terms of this
|
102
|
+
License, and the Corresponding Application Code in a form
|
103
|
+
suitable for, and under terms that permit, the user to
|
104
|
+
recombine or relink the Application with a modified version of
|
105
|
+
the Linked Version to produce a modified Combined Work, in the
|
106
|
+
manner specified by section 6 of the GNU GPL for conveying
|
107
|
+
Corresponding Source.
|
108
|
+
|
109
|
+
1) Use a suitable shared library mechanism for linking with the
|
110
|
+
Library. A suitable mechanism is one that (a) uses at run time
|
111
|
+
a copy of the Library already present on the user's computer
|
112
|
+
system, and (b) will operate properly with a modified version
|
113
|
+
of the Library that is interface-compatible with the Linked
|
114
|
+
Version.
|
115
|
+
|
116
|
+
e) Provide Installation Information, but only if you would otherwise
|
117
|
+
be required to provide such information under section 6 of the
|
118
|
+
GNU GPL, and only to the extent that such information is
|
119
|
+
necessary to install and execute a modified version of the
|
120
|
+
Combined Work produced by recombining or relinking the
|
121
|
+
Application with a modified version of the Linked Version. (If
|
122
|
+
you use option 4d0, the Installation Information must accompany
|
123
|
+
the Minimal Corresponding Source and Corresponding Application
|
124
|
+
Code. If you use option 4d1, you must provide the Installation
|
125
|
+
Information in the manner specified by section 6 of the GNU GPL
|
126
|
+
for conveying Corresponding Source.)
|
127
|
+
|
128
|
+
5. Combined Libraries.
|
129
|
+
|
130
|
+
You may place library facilities that are a work based on the
|
131
|
+
Library side by side in a single library together with other library
|
132
|
+
facilities that are not Applications and are not covered by this
|
133
|
+
License, and convey such a combined library under terms of your
|
134
|
+
choice, if you do both of the following:
|
135
|
+
|
136
|
+
a) Accompany the combined library with a copy of the same work based
|
137
|
+
on the Library, uncombined with any other library facilities,
|
138
|
+
conveyed under the terms of this License.
|
139
|
+
|
140
|
+
b) Give prominent notice with the combined library that part of it
|
141
|
+
is a work based on the Library, and explaining where to find the
|
142
|
+
accompanying uncombined form of the same work.
|
143
|
+
|
144
|
+
6. Revised Versions of the GNU Lesser General Public License.
|
145
|
+
|
146
|
+
The Free Software Foundation may publish revised and/or new versions
|
147
|
+
of the GNU Lesser General Public License from time to time. Such new
|
148
|
+
versions will be similar in spirit to the present version, but may
|
149
|
+
differ in detail to address new problems or concerns.
|
150
|
+
|
151
|
+
Each version is given a distinguishing version number. If the
|
152
|
+
Library as you received it specifies that a certain numbered version
|
153
|
+
of the GNU Lesser General Public License "or any later version"
|
154
|
+
applies to it, you have the option of following the terms and
|
155
|
+
conditions either of that published version or of any later version
|
156
|
+
published by the Free Software Foundation. If the Library as you
|
157
|
+
received it does not specify a version number of the GNU Lesser
|
158
|
+
General Public License, you may choose any version of the GNU Lesser
|
159
|
+
General Public License ever published by the Free Software Foundation.
|
160
|
+
|
161
|
+
If the Library as you received it specifies that a proxy can decide
|
162
|
+
whether future versions of the GNU Lesser General Public License shall
|
163
|
+
apply, that proxy's public statement of acceptance of any version is
|
164
|
+
permanent authorization for you to choose that version for the
|
165
|
+
Library.
|
data/README.markdown
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
# Page Comments Module for BrowserCMS
|
2
|
+
|
3
|
+
A simple comments module that can be embedded into pages to allow users to leave comments. It adds the following capabilities:
|
4
|
+
|
5
|
+
* A page comment block, which stores the user name, email, url and comment of public visitors.
|
6
|
+
* A comments portlet, which can be added to any template, and will record comments for that page.
|
7
|
+
|
8
|
+
## Installation
|
9
|
+
To install this module, do the following:
|
10
|
+
|
11
|
+
### A. Build and install the gem from source
|
12
|
+
This assumes you have the latest copy of the code from github on your machine.
|
13
|
+
|
14
|
+
gem build bcms_page_comments.gemspec
|
15
|
+
sudo gem install bcms_page_comments-1.0.0.gem
|
16
|
+
|
17
|
+
At this point, the Page Comments gem should be installed as a gem on your system, and can be added to your projects.
|
18
|
+
|
19
|
+
### B. Adding the Page Comments to your project
|
20
|
+
In your BrowserCMS application, do the following steps.
|
21
|
+
|
22
|
+
#### 1. Edit the confing/environment.rb file
|
23
|
+
|
24
|
+
config.gem 'browsercms'
|
25
|
+
|
26
|
+
# Add this next line after the browsercms gem
|
27
|
+
config.gem "bcms_page_comments"
|
28
|
+
|
29
|
+
#### 2. Edit the routes.rb file
|
30
|
+
|
31
|
+
# Add this route. It must be before the core browser_cms route.
|
32
|
+
map.routes_for_bcms_page_comments
|
33
|
+
map.routes_for_browser_cms
|
34
|
+
|
35
|
+
#### 3. Install the new module code
|
36
|
+
From the root directory of your cms project, run:
|
37
|
+
|
38
|
+
script/generate browser_cms
|
39
|
+
|
40
|
+
This will copy all the necessary views and migrations from the gems into your local project. You should messages checking to see if files already exist or were created.
|
41
|
+
|
42
|
+
#### 4. Run migrations and start the server
|
43
|
+
Modules will often add new data types, like content blocks, so you need to run the migrations to add them to your project.
|
44
|
+
|
45
|
+
rake db:migrate
|
46
|
+
script/server
|
47
|
+
|
48
|
+
#### 5. Create a Comments portlet and embed into your templates
|
49
|
+
* Open your browser to localhost:3000/cms/portlets and login
|
50
|
+
* Click 'Add New Content', and select 'Page Comments Portlet'
|
51
|
+
* Set the name to 'Page Comments' and click save.
|
52
|
+
* Now go to Administration -> Page Templates -> Sub Page -> Edit
|
53
|
+
* Add the following line to your template, somewhere in the body (preferably after your main content area)
|
54
|
+
|
55
|
+
<%= render_portlet "Page Comments" %>
|
56
|
+
|
57
|
+
This will render embed the portlet named "Page Comments" into any page which uses the Sub Page template.
|
58
|
+
|
59
|
+
* Now add a new page using the "Sub Page" template and you should see the comments form. Adding a new comment will display on that page.
|
60
|
+
|
61
|
+
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# Filters added to this controller apply to all controllers in the application.
|
2
|
+
# Likewise, all the methods added will be available for all controllers.
|
3
|
+
|
4
|
+
class ApplicationController < ActionController::Base
|
5
|
+
helper :all # include all helpers, all the time
|
6
|
+
protect_from_forgery # See ActionController::RequestForgeryProtection for details
|
7
|
+
|
8
|
+
# Scrub sensitive parameters from your log
|
9
|
+
# filter_parameter_logging :password
|
10
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
class PageCommentsController < Cms::ApplicationController
|
2
|
+
|
3
|
+
before_filter :verify_user_is_logged_in
|
4
|
+
|
5
|
+
def create
|
6
|
+
@page_comment = PageComment.new(params[:page_comment])
|
7
|
+
@page_comment.ip = request.remote_ip
|
8
|
+
if @page_comment.save
|
9
|
+
flash[:notice] = "Comment was created"
|
10
|
+
end
|
11
|
+
redirect_to @page_comment.page.path
|
12
|
+
end
|
13
|
+
|
14
|
+
private
|
15
|
+
|
16
|
+
def verify_user_is_logged_in
|
17
|
+
raise Cms::Errors::AccessDenied if current_user.guest?
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
class MostCommentedOnPortlet < Portlet
|
2
|
+
|
3
|
+
def render
|
4
|
+
@pages = most_popular_pages(@portlet.number_to_show)
|
5
|
+
end
|
6
|
+
|
7
|
+
def most_popular_pages (limit)
|
8
|
+
Page.find(:all,
|
9
|
+
:select => 'pages.*, COUNT(page_comments.id) AS comments_count',
|
10
|
+
:joins => 'INNER JOIN page_comments ON page_comments.page_id = pages.id',
|
11
|
+
:group => 'pages.id',
|
12
|
+
:limit => limit,
|
13
|
+
:order => "comments_count desc")
|
14
|
+
|
15
|
+
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
class PageCommentsPortlet < Portlet
|
2
|
+
|
3
|
+
def render
|
4
|
+
@page = @controller.instance_variable_get("@page")
|
5
|
+
if @page
|
6
|
+
# The list of comments to show
|
7
|
+
@page_comments = PageComment.for_page(@page).all(:order => "created_at desc")
|
8
|
+
|
9
|
+
# For the form to create a new comment
|
10
|
+
@page_comment = PageComment.new(:page => @page)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
end
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<p><b>Page:</b> <%= @content_block.page.name %></p>
|
2
|
+
<p><b>Name:</b> <%= @content_block.name %></p>
|
3
|
+
<p><b>Email:</b> <%= @content_block.email %></p>
|
4
|
+
<p><b>Url:</b> <%= @content_block.url %></p>
|
5
|
+
<p><b>Body:</b> <%= h(@content_block.body).gsub(/\n/,'<br/>') %></p>
|
6
|
+
<p><b>Ip:</b> <%= @content_block.ip %></p>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<h2>Most Commented On Pages</h2>
|
2
|
+
<p>The list of pages below shows the most frequently commented on pages, in order of popularity.</p>
|
3
|
+
<ol>
|
4
|
+
<% @pages.each do |page| %>
|
5
|
+
<li><%= link_to page.name, page.path %> (<%= page.comments_count %> comments)</li>
|
6
|
+
<% end %>
|
7
|
+
</ol>
|
@@ -0,0 +1,31 @@
|
|
1
|
+
<% if @page %>
|
2
|
+
<% @page_comments.each do |page_comment| %>
|
3
|
+
<div id="page_comment_<%= page_comment.id %>" class="page_comment">
|
4
|
+
Comment by
|
5
|
+
<strong><%= h(page_comment.name) %></strong>
|
6
|
+
on <em><%= page_comment.created_at.strftime("%A, %B %e %Y") %></em>
|
7
|
+
at <em><%= page_comment.created_at.strftime("%l:%M %p") %></em>
|
8
|
+
<br />
|
9
|
+
<%= h(page_comment.body).gsub(/\n/,'<br/>') %>
|
10
|
+
</div>
|
11
|
+
<hr style="margin: 10px 0"/>
|
12
|
+
<% end %>
|
13
|
+
|
14
|
+
<% unless current_user.guest? %>
|
15
|
+
<% form_for @page_comment do |f| %>
|
16
|
+
<%= f.hidden_field :page_id %>
|
17
|
+
<%= f.label :name %>
|
18
|
+
<%= f.text_field :name %>
|
19
|
+
<br/>
|
20
|
+
<%= f.label :email %>
|
21
|
+
<%= f.text_field :email %>
|
22
|
+
<br/>
|
23
|
+
<%= f.label :url %>
|
24
|
+
<%= f.text_field :url %>
|
25
|
+
<br/>
|
26
|
+
<%= f.text_area :body, :size => "80x5" %>
|
27
|
+
<br/>
|
28
|
+
<%= f.submit "Post Comment" %>
|
29
|
+
<% end %>
|
30
|
+
<% end %>
|
31
|
+
<% end %>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
class CreatePageComments < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_versioned_table :page_comments do |t|
|
4
|
+
t.belongs_to :page
|
5
|
+
t.string :name
|
6
|
+
t.string :email
|
7
|
+
t.string :url
|
8
|
+
t.text :body
|
9
|
+
t.string :ip
|
10
|
+
end
|
11
|
+
|
12
|
+
|
13
|
+
ContentType.create!(:name => "PageComment", :group_name => "Comments")
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.down
|
17
|
+
ContentType.delete_all(['name = ?', 'PageComment'])
|
18
|
+
drop_table :page_comment_versions
|
19
|
+
drop_table :page_comments
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
module Cms::Routes
|
2
|
+
def routes_for_bcms_page_comments
|
3
|
+
|
4
|
+
page_comments "/page_comments",
|
5
|
+
:controller => "page_comments",
|
6
|
+
:action => "create",
|
7
|
+
:conditions => {:method => :post}
|
8
|
+
|
9
|
+
namespace(:cms) do |cms|
|
10
|
+
cms.content_blocks :page_comments
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'bcms_page_comments/routes'
|
data/rails/init.rb
ADDED
data/test/test_helper.rb
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
ENV["RAILS_ENV"] = "test"
|
2
|
+
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
|
3
|
+
require 'test_help'
|
4
|
+
|
5
|
+
class ActiveSupport::TestCase
|
6
|
+
# Transactional fixtures accelerate your tests by wrapping each test method
|
7
|
+
# in a transaction that's rolled back on completion. This ensures that the
|
8
|
+
# test database remains unchanged so your fixtures don't have to be reloaded
|
9
|
+
# between every test method. Fewer database queries means faster tests.
|
10
|
+
#
|
11
|
+
# Read Mike Clark's excellent walkthrough at
|
12
|
+
# http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
|
13
|
+
#
|
14
|
+
# Every Active Record database supports transactions except MyISAM tables
|
15
|
+
# in MySQL. Turn off transactional fixtures in this case; however, if you
|
16
|
+
# don't care one way or the other, switching from MyISAM to InnoDB tables
|
17
|
+
# is recommended.
|
18
|
+
#
|
19
|
+
# The only drawback to using transactional fixtures is when you actually
|
20
|
+
# need to test transactions. Since your test is bracketed by a transaction,
|
21
|
+
# any transactions started in your code will be automatically rolled back.
|
22
|
+
self.use_transactional_fixtures = true
|
23
|
+
|
24
|
+
# Instantiated fixtures are slow, but give you @david where otherwise you
|
25
|
+
# would need people(:david). If you don't want to migrate your existing
|
26
|
+
# test cases which use the @david style and don't mind the speed hit (each
|
27
|
+
# instantiated fixtures translates to a database query per test method),
|
28
|
+
# then set this back to true.
|
29
|
+
self.use_instantiated_fixtures = false
|
30
|
+
|
31
|
+
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
32
|
+
#
|
33
|
+
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
34
|
+
# -- they do not yet inherit this setting
|
35
|
+
fixtures :all
|
36
|
+
|
37
|
+
# Add more helper methods to be used by all tests here...
|
38
|
+
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), '/../../test_helper')
|
2
|
+
|
3
|
+
class MostCommentedOnPortletTest < ActiveSupport::TestCase
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
def teardown
|
8
|
+
|
9
|
+
end
|
10
|
+
|
11
|
+
class StubPortlet
|
12
|
+
attr_accessor :number_to_show
|
13
|
+
end
|
14
|
+
|
15
|
+
test "Finds only a limited # of pages" do
|
16
|
+
build_pages
|
17
|
+
portlet = MostCommentedOnPortlet.new
|
18
|
+
|
19
|
+
portlet = MostCommentedOnPortlet.new
|
20
|
+
params = StubPortlet.new
|
21
|
+
params.number_to_show = 1
|
22
|
+
portlet.instance_variable_set(:@portlet, params)
|
23
|
+
|
24
|
+
portlet.render
|
25
|
+
|
26
|
+
assert_equal 1, portlet.instance_variable_get(:@pages).size
|
27
|
+
|
28
|
+
end
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
test "Find pages" do
|
34
|
+
build_pages
|
35
|
+
portlet = MostCommentedOnPortlet.new
|
36
|
+
|
37
|
+
pages = portlet.most_popular_pages(2)
|
38
|
+
assert_equal 2, pages.size
|
39
|
+
assert_equal @popular.name, pages[0].name
|
40
|
+
assert_equal "3", pages[0].comments_count
|
41
|
+
assert_equal "/popular", pages[0].path
|
42
|
+
|
43
|
+
assert_equal @middle.name, pages[1].name
|
44
|
+
assert_equal "/middle", pages[1].path
|
45
|
+
end
|
46
|
+
private
|
47
|
+
|
48
|
+
def build_pages
|
49
|
+
@lonely = Page.create!(:name => "Lonely", :path=>"/lonely")
|
50
|
+
@popular = Page.create!(:name => "Popular", :path=>"/popular")
|
51
|
+
@middle = Page.create!(:name => "Middle", :path=>"/middle")
|
52
|
+
|
53
|
+
PageComment.create!(:page=>@lonely)
|
54
|
+
|
55
|
+
PageComment.create!(:page=>@middle)
|
56
|
+
PageComment.create!(:page=>@middle)
|
57
|
+
|
58
|
+
PageComment.create!(:page=>@popular)
|
59
|
+
PageComment.create!(:page=>@popular)
|
60
|
+
PageComment.create!(:page=>@popular)
|
61
|
+
end
|
62
|
+
end
|
metadata
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bcms_page_comments
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- BrowserMedia
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-07-02 00:00:00 -04:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: The Page Comments Module for BrowserCMS
|
17
|
+
email: github@browsermedia.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- LICENSE.txt
|
24
|
+
- README.markdown
|
25
|
+
files:
|
26
|
+
- app/controllers/application_controller.rb
|
27
|
+
- app/controllers/cms/page_comments_controller.rb
|
28
|
+
- app/controllers/page_comments_controller.rb
|
29
|
+
- app/helpers/application_helper.rb
|
30
|
+
- app/models/page_comment.rb
|
31
|
+
- app/portlets/most_commented_on_portlet.rb
|
32
|
+
- app/portlets/page_comments_portlet.rb
|
33
|
+
- app/views/cms/page_comments/_form.html.erb
|
34
|
+
- app/views/cms/page_comments/render.html.erb
|
35
|
+
- app/views/portlets/most_commented_on/_form.html.erb
|
36
|
+
- app/views/portlets/most_commented_on/render.html.erb
|
37
|
+
- app/views/portlets/page_comments/_form.html.erb
|
38
|
+
- app/views/portlets/page_comments/render.html.erb
|
39
|
+
- db/migrate/20090417155756_create_page_comments.rb
|
40
|
+
- lib/bcms_page_comments.rb
|
41
|
+
- lib/bcms_page_comments/routes.rb
|
42
|
+
- rails/init.rb
|
43
|
+
- LICENSE.txt
|
44
|
+
- README.markdown
|
45
|
+
has_rdoc: true
|
46
|
+
homepage: http://browsercms.org
|
47
|
+
post_install_message:
|
48
|
+
rdoc_options:
|
49
|
+
- --charset=UTF-8
|
50
|
+
require_paths:
|
51
|
+
- lib
|
52
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: "0"
|
57
|
+
version:
|
58
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: "0"
|
63
|
+
version:
|
64
|
+
requirements: []
|
65
|
+
|
66
|
+
rubyforge_project: browsercms
|
67
|
+
rubygems_version: 1.3.1
|
68
|
+
signing_key:
|
69
|
+
specification_version: 2
|
70
|
+
summary: The Page Comments Module for BrowserCMS
|
71
|
+
test_files:
|
72
|
+
- test/performance/browsing_test.rb
|
73
|
+
- test/test_helper.rb
|
74
|
+
- test/unit/portlets/most_commented_on_portlet_test.rb
|