radiant-forum-extension 2.1.3 → 2.1.4

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.1.3
1
+ 2.1.4
@@ -15,8 +15,6 @@
15
15
  = javascript_tag "$('forum_name').activate()"
16
16
 
17
17
  - render_region :form_bottom do |form_bottom|
18
- - form_bottom.edit_timestamp do
19
- = updated_stamp @forum
20
18
  - form_bottom.edit_buttons do
21
19
  %p.buttons
22
20
  = save_model_button(@forum)
@@ -36,11 +36,7 @@
36
36
  - forum.topics.latest(1).each do |topic|
37
37
  %li.topic
38
38
  = friendly_date(topic.replied_at) + ":"
39
- - if topic.page
40
- - t('comment_on')
41
- = link_to topic.page.title, "#{topic.page.url}", {:class => 'topic'}
42
- = t('from_reader', :name => topic.replied_by.name)
43
- - elsif topic.replied_by
39
+ - if topic.replied_by
44
40
  = t('new_reply_to')
45
41
  = link_to topic.name, forum_topic_url(topic.forum, topic), {:class => 'topic'}
46
42
  = t('from_reader', :name => topic.replied_by.name)
data/forum_extension.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require_dependency 'application_controller'
2
2
 
3
3
  class ForumExtension < Radiant::Extension
4
- version "2.1.3"
4
+ version "2.1.4"
5
5
  description "Nice clean forums and page comments for inclusion in your radiant site. Requires the reader extension and share_layouts."
6
6
  url "http://spanner.org/radiant/forum"
7
7
 
@@ -27,7 +27,7 @@ module ForumAdminUI
27
27
  forum.edit = Radiant::AdminUI::RegionSet.new do |edit|
28
28
  edit.main.concat %w{edit_header edit_form}
29
29
  edit.form.concat %w{edit_name edit_description}
30
- edit.form_bottom.concat %w{edit_timestamp edit_buttons}
30
+ edit.form_bottom.concat %w{edit_buttons}
31
31
  end
32
32
  forum.index = Radiant::AdminUI::RegionSet.new do |index|
33
33
  index.thead.concat %w{title_header description_header latest_header modify_header}
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{radiant-forum-extension}
8
- s.version = "2.1.3"
8
+ s.version = "2.1.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["spanner"]
12
- s.date = %q{2011-02-09}
12
+ s.date = %q{2011-02-15}
13
13
  s.description = %q{Nice clean forums and page comments for inclusion in your radiant site. Derived long ago from beast. Requires the reader extension and share_layouts.}
14
14
  s.email = %q{will@spanner.org}
15
15
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: radiant-forum-extension
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 3
5
5
  prerelease: false
6
6
  segments:
7
7
  - 2
8
8
  - 1
9
- - 3
10
- version: 2.1.3
9
+ - 4
10
+ version: 2.1.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - spanner
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-02-09 00:00:00 +00:00
18
+ date: 2011-02-15 00:00:00 +00:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency