openproject-meeting 3.0.2 → 3.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +9 -9
- data/CHANGELOG.md +28 -0
- data/README.md +3 -3
- data/app/assets/stylesheets/meeting/meeting.css.erb +19 -10
- data/app/controllers/meeting_agendas_controller.rb +11 -3
- data/app/controllers/meeting_contents_controller.rb +21 -7
- data/app/controllers/meeting_minutes_controller.rb +11 -3
- data/app/controllers/meetings_controller.rb +11 -3
- data/app/helpers/meeting_contents_helper.rb +11 -3
- data/app/helpers/meetings_helper.rb +17 -3
- data/app/mailers/meeting_mailer.rb +11 -3
- data/app/models/journal/meeting_content_journal.rb +40 -0
- data/app/models/journal/meeting_journal.rb +38 -0
- data/app/models/meeting.rb +17 -6
- data/app/models/meeting_agenda.rb +11 -66
- data/app/models/meeting_content.rb +30 -4
- data/app/models/meeting_minutes.rb +11 -67
- data/app/models/meeting_participant.rb +11 -3
- data/app/views/hooks/meetings/_activity_index_head.html.erb +21 -0
- data/app/views/meeting_contents/_form.html.erb +11 -3
- data/app/views/meeting_contents/_show.html.erb +11 -3
- data/app/views/meeting_contents/diff.html.erb +13 -6
- data/app/views/meeting_contents/history.html.erb +11 -3
- data/app/views/meeting_contents/show.html.erb +11 -3
- data/app/views/meeting_mailer/content_for_review.html.erb +11 -3
- data/app/views/meeting_mailer/content_for_review.text.erb +20 -0
- data/app/views/meetings/_form.html.erb +11 -3
- data/app/views/meetings/edit.html.erb +11 -3
- data/app/views/meetings/index.html.erb +11 -3
- data/app/views/meetings/new.html.erb +11 -3
- data/app/views/meetings/show.html.erb +12 -4
- data/app/views/shared/_meeting_header.html.erb +11 -3
- data/config/locales/de.yml +22 -0
- data/config/locales/en.yml +22 -0
- data/config/routes.rb +11 -3
- data/db/migrate/20110106210555_create_meetings.rb +11 -3
- data/db/migrate/20110106221214_create_meeting_contents.rb +11 -3
- data/db/migrate/20110106221946_create_meeting_content_versions.rb +11 -3
- data/db/migrate/20110108230721_create_meeting_participants.rb +11 -3
- data/db/migrate/20110224180804_add_lock_to_meeting_content.rb +11 -3
- data/db/migrate/20110819162852_create_initial_meeting_journals.rb +11 -3
- data/db/migrate/20111605171815_merge_meeting_content_versions_with_journals.rb +11 -3
- data/db/migrate/20130731151542_remove_meeting_role_id_from_meeting_participants.rb +11 -3
- data/db/migrate/20130822113942_create_meeting_journals.rb +39 -0
- data/db/migrate/20130924091342_legacy_meeting_journal_data.rb +36 -0
- data/db/migrate/20130924093842_legacy_meeting_agenda_journal_data.rb +62 -0
- data/db/migrate/20130924114042_legacy_meeting_minutes_journal_data.rb +62 -0
- data/doc/{COPYRIGHT.rdoc → COPYRIGHT.md} +1 -1
- data/doc/COPYRIGHT_short.md +16 -0
- data/lib/open_project/meeting.rb +11 -3
- data/lib/open_project/meeting/engine.rb +12 -4
- data/lib/open_project/meeting/hooks.rb +12 -4
- data/lib/open_project/meeting/patches/project_patch.rb +11 -3
- data/lib/open_project/meeting/version.rb +12 -4
- data/lib/openproject-meeting.rb +11 -3
- data/spec/controllers/meetings_controller_spec.rb +11 -3
- data/spec/factories/meeting_agenda_factory.rb +11 -3
- data/spec/factories/meeting_content_journal_factory.rb +23 -0
- data/spec/factories/meeting_factory.rb +11 -3
- data/spec/factories/meeting_journal_factory.rb +31 -0
- data/spec/factories/meeting_minutes_factory.rb +11 -3
- data/spec/factories/meeting_participant_factory.rb +11 -3
- data/spec/mailers/meeting_mailer_spec.rb +11 -3
- data/spec/models/meeting_agenda_spec.rb +14 -6
- data/spec/models/meeting_content_journal_spec.rb +30 -0
- data/spec/models/meeting_minutes_spec.rb +11 -3
- data/spec/models/meeting_spec.rb +11 -3
- data/spec/models/user_deletion_spec.rb +16 -14
- data/spec/spec_helper.rb +11 -3
- data/spec/support/plugin_spec_helper.rb +14 -22
- metadata +18 -13
- data/app/views/hooks/_activity_index_head.html.erb +0 -13
- data/spec/factories/meeting_agenda_journal_factory.rb +0 -18
- data/spec/factories/meeting_minutes_journal_factory.rb +0 -18
- data/spec/models/meeting_agenda_journal_spec.rb +0 -21
- data/spec/models/meeting_minutes_journal_spec.rb +0 -21
@@ -1,12 +1,20 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2011-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2011-2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
9
|
-
#
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with this program; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
16
|
+
#
|
17
|
+
# See doc/COPYRIGHT.md for more details.
|
10
18
|
#++
|
11
19
|
|
12
20
|
FactoryGirl.define do
|
@@ -1,12 +1,20 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2011-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2011-2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
9
|
-
#
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with this program; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
16
|
+
#
|
17
|
+
# See doc/COPYRIGHT.md for more details.
|
10
18
|
#++
|
11
19
|
|
12
20
|
FactoryGirl.define do
|
@@ -1,12 +1,20 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2011-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2011-2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
9
|
-
#
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with this program; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
16
|
+
#
|
17
|
+
# See doc/COPYRIGHT.md for more details.
|
10
18
|
#++
|
11
19
|
|
12
20
|
require File.dirname(__FILE__) + '/../spec_helper'
|
@@ -1,12 +1,20 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2011-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2011-2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
9
|
-
#
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with this program; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
16
|
+
#
|
17
|
+
# See doc/COPYRIGHT.md for more details.
|
10
18
|
#++
|
11
19
|
|
12
20
|
require File.dirname(__FILE__) + '/../spec_helper'
|
@@ -15,7 +23,7 @@ describe "MeetingAgenda" do
|
|
15
23
|
before(:each) do
|
16
24
|
@a = FactoryGirl.build :meeting_agenda, :text => "Some content...\n\nMore content!\n\nExtraordinary content!!"
|
17
25
|
end
|
18
|
-
|
26
|
+
|
19
27
|
# TODO: Test the right user and messages are set in the history
|
20
28
|
describe "#lock!" do
|
21
29
|
it "locks the agenda" do
|
@@ -26,7 +34,7 @@ describe "MeetingAgenda" do
|
|
26
34
|
@a.locked.should be_true
|
27
35
|
end
|
28
36
|
end
|
29
|
-
|
37
|
+
|
30
38
|
describe "#unlock!" do
|
31
39
|
it "unlocks the agenda" do
|
32
40
|
@a.locked = true
|
@@ -37,7 +45,7 @@ describe "MeetingAgenda" do
|
|
37
45
|
@a.locked.should be_false
|
38
46
|
end
|
39
47
|
end
|
40
|
-
|
48
|
+
|
41
49
|
# a meeting agenda is editable when it is not locked
|
42
50
|
describe "#editable?" do
|
43
51
|
it "is editable when not locked" do
|
@@ -0,0 +1,30 @@
|
|
1
|
+
#-- copyright
|
2
|
+
# OpenProject is a project management system.
|
3
|
+
# Copyright (C) 2011-2013 the OpenProject Foundation (OPF)
|
4
|
+
#
|
5
|
+
# This program is free software; you can redistribute it and/or
|
6
|
+
# modify it under the terms of the GNU General Public License version 3.
|
7
|
+
#
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with this program; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
16
|
+
#
|
17
|
+
# See doc/COPYRIGHT.md for more details.
|
18
|
+
#++
|
19
|
+
|
20
|
+
require File.dirname(__FILE__) + '/../spec_helper'
|
21
|
+
|
22
|
+
require 'journal/meeting_content_journal'
|
23
|
+
|
24
|
+
describe Journal do
|
25
|
+
include PluginSpecHelper
|
26
|
+
|
27
|
+
let(:journal) { FactoryGirl.build(:meeting_content_journal) }
|
28
|
+
|
29
|
+
it_should_behave_like "customized journal class"
|
30
|
+
end
|
@@ -1,12 +1,20 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2011-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2011-2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
9
|
-
#
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with this program; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
16
|
+
#
|
17
|
+
# See doc/COPYRIGHT.md for more details.
|
10
18
|
#++
|
11
19
|
|
12
20
|
require File.dirname(__FILE__) + '/../spec_helper'
|
data/spec/models/meeting_spec.rb
CHANGED
@@ -1,12 +1,20 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2011-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2011-2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
9
|
-
#
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with this program; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
16
|
+
#
|
17
|
+
# See doc/COPYRIGHT.md for more details.
|
10
18
|
#++
|
11
19
|
|
12
20
|
require File.dirname(__FILE__) + '/../spec_helper'
|
@@ -1,12 +1,20 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2011-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2011-2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
9
|
-
#
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with this program; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
16
|
+
#
|
17
|
+
# See doc/COPYRIGHT.md for more details.
|
10
18
|
#++
|
11
19
|
|
12
20
|
require File.dirname(__FILE__) + '/../spec_helper'
|
@@ -17,12 +25,6 @@ describe User, "#destroy" do
|
|
17
25
|
let(:substitute_user) { DeletedUser.first }
|
18
26
|
let(:project) do
|
19
27
|
project = FactoryGirl.create(:valid_project)
|
20
|
-
# FactoryGirl.create(:member, :project => project,
|
21
|
-
# :user => user,
|
22
|
-
# :roles => [FactoryGirl.build(:role)])
|
23
|
-
# FactoryGirl.create(:member, :project => project,
|
24
|
-
# :user => user2,
|
25
|
-
# :roles => [FactoryGirl.build(:role)])
|
26
28
|
project
|
27
29
|
end
|
28
30
|
|
@@ -66,13 +68,13 @@ describe User, "#destroy" do
|
|
66
68
|
it { associated_instance.journals.first.user.should == user2 }
|
67
69
|
it "should update first journal changes" do
|
68
70
|
associations.each do |association|
|
69
|
-
associated_instance.journals.first.changed_data[association.to_s + "_id"].last.should == user2.id
|
71
|
+
associated_instance.journals.first.changed_data[(association.to_s + "_id").to_sym].last.should == user2.id
|
70
72
|
end
|
71
73
|
end
|
72
74
|
it { associated_instance.journals.last.user.should == substitute_user }
|
73
75
|
it "should update second journal changes" do
|
74
76
|
associations.each do |association|
|
75
|
-
associated_instance.journals.last.changed_data[association.to_s + "_id"].last.should == substitute_user.id
|
77
|
+
associated_instance.journals.last.changed_data[(association.to_s + "_id").to_sym].last.should == substitute_user.id
|
76
78
|
end
|
77
79
|
end
|
78
80
|
end
|
@@ -105,14 +107,14 @@ describe User, "#destroy" do
|
|
105
107
|
it { associated_instance.journals.first.user.should == substitute_user }
|
106
108
|
it "should update the first journal" do
|
107
109
|
associations.each do |association|
|
108
|
-
associated_instance.journals.first.changed_data[association.to_s + "_id"].last.should == substitute_user.id
|
110
|
+
associated_instance.journals.first.changed_data[(association.to_s + "_id").to_sym].last.should == substitute_user.id
|
109
111
|
end
|
110
112
|
end
|
111
113
|
it { associated_instance.journals.last.user.should == user2 }
|
112
114
|
it "should update the last journal" do
|
113
115
|
associations.each do |association|
|
114
|
-
associated_instance.journals.last.changed_data[association.to_s + "_id"].first.should == substitute_user.id
|
115
|
-
associated_instance.journals.last.changed_data[association.to_s + "_id"].last.should == user2.id
|
116
|
+
associated_instance.journals.last.changed_data[(association.to_s + "_id").to_sym].first.should == substitute_user.id
|
117
|
+
associated_instance.journals.last.changed_data[(association.to_s + "_id").to_sym].last.should == user2.id
|
116
118
|
end
|
117
119
|
end
|
118
120
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1,12 +1,20 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2011-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2011-2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
9
|
-
#
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with this program; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
16
|
+
#
|
17
|
+
# See doc/COPYRIGHT.md for more details.
|
10
18
|
#++
|
11
19
|
|
12
20
|
# -- load spec_helper from OpenProject core
|
@@ -1,47 +1,39 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
|
-
#
|
4
|
-
# Copyright (C) 2011-2013 the OpenProject Team
|
3
|
+
# Copyright (C) 2011-2013 the OpenProject Foundation (OPF)
|
5
4
|
#
|
6
5
|
# This program is free software; you can redistribute it and/or
|
7
6
|
# modify it under the terms of the GNU General Public License version 3.
|
8
7
|
#
|
9
|
-
#
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with this program; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
16
|
+
#
|
17
|
+
# See doc/COPYRIGHT.md for more details.
|
10
18
|
#++
|
11
19
|
|
12
20
|
module PluginSpecHelper
|
13
21
|
shared_examples_for "customized journal class" do
|
14
22
|
describe :save do
|
15
23
|
let(:text) { "Lorem ipsum" }
|
16
|
-
let(:changed_data) { {
|
24
|
+
let(:changed_data) { { :text => [nil, text] } }
|
17
25
|
|
18
26
|
describe "WITHOUT compression" do
|
19
27
|
before do
|
20
|
-
|
28
|
+
#we have to save here because changed_data will update (and save) attributes and miss an ID
|
21
29
|
journal.save!
|
22
|
-
|
23
|
-
journal.reload
|
24
|
-
end
|
25
|
-
|
26
|
-
it { journal.changed_data["data"].should == text }
|
27
|
-
it { journal.changed_data["compression"].should be_blank }
|
28
|
-
end
|
29
|
-
|
30
|
-
describe "WITH gzip compression" do
|
31
|
-
before do
|
32
|
-
Setting.stub(:wiki_compression).and_return("gzip")
|
33
|
-
|
34
30
|
journal.changed_data = changed_data
|
35
|
-
journal.save!
|
36
31
|
|
37
32
|
journal.reload
|
38
33
|
end
|
39
34
|
|
40
|
-
it { journal.changed_data[
|
41
|
-
it { journal.changed_data["compression"].should == Setting.wiki_compression }
|
35
|
+
it { journal.changed_data[:text][1].should == text }
|
42
36
|
end
|
43
37
|
end
|
44
|
-
|
45
38
|
end
|
46
|
-
|
47
39
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openproject-meeting
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Finn GmbH
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-10-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -60,7 +60,7 @@ files:
|
|
60
60
|
- app/controllers/meeting_agendas_controller.rb
|
61
61
|
- app/controllers/meeting_minutes_controller.rb
|
62
62
|
- app/views/shared/_meeting_header.html.erb
|
63
|
-
- app/views/hooks/_activity_index_head.html.erb
|
63
|
+
- app/views/hooks/meetings/_activity_index_head.html.erb
|
64
64
|
- app/views/meeting_contents/_show.html.erb
|
65
65
|
- app/views/meeting_contents/show.html.erb
|
66
66
|
- app/views/meeting_contents/history.html.erb
|
@@ -75,19 +75,25 @@ files:
|
|
75
75
|
- app/views/meetings/_form.html.erb
|
76
76
|
- app/models/meeting_content.rb
|
77
77
|
- app/models/meeting_participant.rb
|
78
|
+
- app/models/journal/meeting_journal.rb
|
79
|
+
- app/models/journal/meeting_content_journal.rb
|
78
80
|
- app/models/meeting_minutes.rb
|
79
81
|
- app/models/meeting.rb
|
80
82
|
- app/models/meeting_agenda.rb
|
81
83
|
- config/routes.rb
|
82
84
|
- config/locales/de.yml
|
83
85
|
- config/locales/en.yml
|
86
|
+
- db/migrate/20130822113942_create_meeting_journals.rb
|
84
87
|
- db/migrate/20110819162852_create_initial_meeting_journals.rb
|
85
88
|
- db/migrate/20130731151542_remove_meeting_role_id_from_meeting_participants.rb
|
89
|
+
- db/migrate/20130924091342_legacy_meeting_journal_data.rb
|
86
90
|
- db/migrate/20110106221946_create_meeting_content_versions.rb
|
87
91
|
- db/migrate/20110224180804_add_lock_to_meeting_content.rb
|
88
92
|
- db/migrate/20110106210555_create_meetings.rb
|
89
93
|
- db/migrate/20111605171815_merge_meeting_content_versions_with_journals.rb
|
94
|
+
- db/migrate/20130924093842_legacy_meeting_agenda_journal_data.rb
|
90
95
|
- db/migrate/20110108230721_create_meeting_participants.rb
|
96
|
+
- db/migrate/20130924114042_legacy_meeting_minutes_journal_data.rb
|
91
97
|
- db/migrate/20110106221214_create_meeting_contents.rb
|
92
98
|
- lib/openproject-meeting.rb
|
93
99
|
- lib/open_project/meeting/version.rb
|
@@ -95,7 +101,8 @@ files:
|
|
95
101
|
- lib/open_project/meeting/hooks.rb
|
96
102
|
- lib/open_project/meeting/patches/project_patch.rb
|
97
103
|
- lib/open_project/meeting.rb
|
98
|
-
- doc/COPYRIGHT.
|
104
|
+
- doc/COPYRIGHT.md
|
105
|
+
- doc/COPYRIGHT_short.md
|
99
106
|
- doc/GPL.txt
|
100
107
|
- CHANGELOG.md
|
101
108
|
- README.md
|
@@ -103,18 +110,17 @@ files:
|
|
103
110
|
- spec/support/plugin_spec_helper.rb
|
104
111
|
- spec/mailers/meeting_mailer_spec.rb
|
105
112
|
- spec/controllers/meetings_controller_spec.rb
|
106
|
-
- spec/models/meeting_minutes_journal_spec.rb
|
107
113
|
- spec/models/user_deletion_spec.rb
|
108
|
-
- spec/models/meeting_agenda_journal_spec.rb
|
109
114
|
- spec/models/meeting_minutes_spec.rb
|
110
115
|
- spec/models/meeting_agenda_spec.rb
|
116
|
+
- spec/models/meeting_content_journal_spec.rb
|
111
117
|
- spec/models/meeting_spec.rb
|
112
118
|
- spec/factories/meeting_participant_factory.rb
|
113
|
-
- spec/factories/meeting_agenda_journal_factory.rb
|
114
|
-
- spec/factories/meeting_minutes_journal_factory.rb
|
115
119
|
- spec/factories/meeting_agenda_factory.rb
|
116
120
|
- spec/factories/meeting_factory.rb
|
117
121
|
- spec/factories/meeting_minutes_factory.rb
|
122
|
+
- spec/factories/meeting_journal_factory.rb
|
123
|
+
- spec/factories/meeting_content_journal_factory.rb
|
118
124
|
homepage: https://www.openproject.org/projects/plugin-meetings
|
119
125
|
licenses:
|
120
126
|
- GPLv3
|
@@ -135,7 +141,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
135
141
|
version: '0'
|
136
142
|
requirements: []
|
137
143
|
rubyforge_project:
|
138
|
-
rubygems_version: 2.
|
144
|
+
rubygems_version: 2.1.5
|
139
145
|
signing_key:
|
140
146
|
specification_version: 4
|
141
147
|
summary: This OpenProject plugin adds a meeting module with functionality to plan
|
@@ -145,16 +151,15 @@ test_files:
|
|
145
151
|
- spec/support/plugin_spec_helper.rb
|
146
152
|
- spec/mailers/meeting_mailer_spec.rb
|
147
153
|
- spec/controllers/meetings_controller_spec.rb
|
148
|
-
- spec/models/meeting_minutes_journal_spec.rb
|
149
154
|
- spec/models/user_deletion_spec.rb
|
150
|
-
- spec/models/meeting_agenda_journal_spec.rb
|
151
155
|
- spec/models/meeting_minutes_spec.rb
|
152
156
|
- spec/models/meeting_agenda_spec.rb
|
157
|
+
- spec/models/meeting_content_journal_spec.rb
|
153
158
|
- spec/models/meeting_spec.rb
|
154
159
|
- spec/factories/meeting_participant_factory.rb
|
155
|
-
- spec/factories/meeting_agenda_journal_factory.rb
|
156
|
-
- spec/factories/meeting_minutes_journal_factory.rb
|
157
160
|
- spec/factories/meeting_agenda_factory.rb
|
158
161
|
- spec/factories/meeting_factory.rb
|
159
162
|
- spec/factories/meeting_minutes_factory.rb
|
163
|
+
- spec/factories/meeting_journal_factory.rb
|
164
|
+
- spec/factories/meeting_content_journal_factory.rb
|
160
165
|
has_rdoc:
|