openproject-meeting 3.0.1 → 3.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +3 -3
- data/app/assets/stylesheets/meeting/meeting.css.erb +11 -0
- data/app/controllers/meeting_agendas_controller.rb +1 -1
- data/app/controllers/meeting_contents_controller.rb +1 -1
- data/app/controllers/meeting_minutes_controller.rb +1 -1
- data/app/controllers/meetings_controller.rb +1 -1
- data/app/helpers/meeting_contents_helper.rb +1 -1
- data/app/helpers/meetings_helper.rb +1 -1
- data/app/mailers/meeting_mailer.rb +1 -1
- data/app/models/meeting.rb +1 -1
- data/app/models/meeting_agenda.rb +1 -1
- data/app/models/meeting_content.rb +1 -1
- data/app/models/meeting_minutes.rb +1 -1
- data/app/models/meeting_participant.rb +1 -1
- data/app/views/hooks/_activity_index_head.html.erb +1 -1
- data/app/views/meeting_contents/_form.html.erb +1 -1
- data/app/views/meeting_contents/_show.html.erb +1 -1
- data/app/views/meeting_contents/diff.html.erb +1 -1
- data/app/views/meeting_contents/history.html.erb +1 -1
- data/app/views/meeting_contents/show.html.erb +1 -1
- data/app/views/meeting_mailer/content_for_review.html.erb +1 -1
- data/app/views/meetings/_form.html.erb +1 -1
- data/app/views/meetings/edit.html.erb +1 -1
- data/app/views/meetings/index.html.erb +1 -1
- data/app/views/meetings/new.html.erb +1 -1
- data/app/views/meetings/show.html.erb +1 -1
- data/app/views/shared/_meeting_header.html.erb +12 -0
- data/config/routes.rb +1 -1
- data/db/migrate/20110106210555_create_meetings.rb +2 -2
- data/db/migrate/20110106221214_create_meeting_contents.rb +2 -2
- data/db/migrate/20110106221946_create_meeting_content_versions.rb +1 -1
- data/db/migrate/20110108230721_create_meeting_participants.rb +2 -2
- data/db/migrate/20110224180804_add_lock_to_meeting_content.rb +1 -1
- data/db/migrate/20110819162852_create_initial_meeting_journals.rb +1 -1
- data/db/migrate/20111605171815_merge_meeting_content_versions_with_journals.rb +1 -1
- data/db/migrate/20130731151542_remove_meeting_role_id_from_meeting_participants.rb +1 -1
- data/doc/COPYRIGHT.rdoc +1 -1
- data/lib/open_project/meeting.rb +1 -1
- data/lib/open_project/meeting/engine.rb +4 -7
- data/lib/open_project/meeting/hooks.rb +1 -1
- data/lib/open_project/meeting/patches/project_patch.rb +1 -1
- data/lib/open_project/meeting/version.rb +2 -2
- data/lib/openproject-meeting.rb +1 -1
- data/spec/controllers/meetings_controller_spec.rb +1 -1
- data/spec/factories/meeting_agenda_factory.rb +1 -1
- data/spec/factories/meeting_agenda_journal_factory.rb +1 -1
- data/spec/factories/meeting_factory.rb +1 -1
- data/spec/factories/meeting_minutes_factory.rb +1 -1
- data/spec/factories/meeting_minutes_journal_factory.rb +1 -1
- data/spec/factories/meeting_participant_factory.rb +1 -1
- data/spec/mailers/meeting_mailer_spec.rb +1 -1
- data/spec/models/meeting_agenda_journal_spec.rb +1 -1
- data/spec/models/meeting_agenda_spec.rb +1 -1
- data/spec/models/meeting_minutes_journal_spec.rb +1 -1
- data/spec/models/meeting_minutes_spec.rb +1 -1
- data/spec/models/meeting_spec.rb +1 -1
- data/spec/models/user_deletion_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/spec/support/plugin_spec_helper.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZjQxNGYzYWRjNTk1ZmRiZGQ2MWMyOWJmNmVjZTE2NmJjOWFlMzI1MQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YjE0ZDhlNmI4YWI1ZGRjNDNmOWJkZjg1Mjg3OGE4MGY5MjkyZjViNA==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MTUzZmIxOThmY2ZjOWYwZDY1MzZhYTcxMGJiNzQwNmRjZjA1NGJiOGRkZDFm
|
10
|
+
NGIwNTA4Y2UzZDYxNjg4ODAxMGRhZDI1OGZiNGVjYjUzMGE2MDJlZWZiZDk2
|
11
|
+
Nzc0ZDE4OWE1ZmUyM2Q0MjNhNjUyNmEyZGYyOGRkNTExMzA0MmY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
Y2I1NzQzOTk4NzgwOTBhNWFlZjVmZjdjZmQ0NjJkYWEwYjcyOTBhODk5OWI1
|
14
|
+
YjJjYmYyNTkyOTY1MjNmYWVhMWExMDZkZWM2YjBlNjZkY2YyNDcxNGMyYzM0
|
15
|
+
YTEzMTRiNTYwZDE1YWM0OGYxMTFkYmUxMmQ3YjZlNWZmZTE2ZGQ=
|
data/README.md
CHANGED
@@ -14,8 +14,8 @@ A more detailed feature tour can be found [here](https://www.openproject.org/pro
|
|
14
14
|
Requirements
|
15
15
|
------------
|
16
16
|
|
17
|
-
The
|
18
|
-
version 3.0.0pre9
|
17
|
+
The Meeting plugin currently requires the [OpenProject Core](https://github.com/opf/openproject/) in
|
18
|
+
version 3.0.0pre9 to 3.0.0pre12.
|
19
19
|
|
20
20
|
|
21
21
|
Installation
|
@@ -70,7 +70,7 @@ Credits
|
|
70
70
|
|
71
71
|
Special thanks go to
|
72
72
|
|
73
|
-
* Deutsche Telekom AG (opensource@telekom.de) for project
|
73
|
+
* Deutsche Telekom AG (opensource@telekom.de) for project sponsorship
|
74
74
|
* Le Moign Vincent and his fabulous Minicons icons on [webalys.com](http://www.webalys.com/minicons/icons-free-pack.php)
|
75
75
|
|
76
76
|
License
|
@@ -1,3 +1,14 @@
|
|
1
|
+
//-- copyright
|
2
|
+
// OpenProject is a project management system.
|
3
|
+
//
|
4
|
+
// Copyright (C) 2011-2013 the OpenProject Team
|
5
|
+
//
|
6
|
+
// This program is free software; you can redistribute it and/or
|
7
|
+
// modify it under the terms of the GNU General Public License version 3.
|
8
|
+
//
|
9
|
+
// See doc/COPYRIGHT.rdoc for more details.
|
10
|
+
//++
|
11
|
+
|
1
12
|
.meetings div.meeting {padding-bottom: 1em;}
|
2
13
|
div.meeting_content {padding-bottom: 2em;}
|
3
14
|
div.meetings_by_date {padding: 1em 0 1em 2em;}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
data/app/models/meeting.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%#-- copyright
|
2
2
|
OpenProject is a project management system.
|
3
3
|
|
4
|
-
Copyright (C)
|
4
|
+
Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
|
6
6
|
This program is free software; you can redistribute it and/or
|
7
7
|
modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%#-- copyright
|
2
2
|
OpenProject is a project management system.
|
3
3
|
|
4
|
-
Copyright (C)
|
4
|
+
Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
|
6
6
|
This program is free software; you can redistribute it and/or
|
7
7
|
modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%#-- copyright
|
2
2
|
OpenProject is a project management system.
|
3
3
|
|
4
|
-
Copyright (C)
|
4
|
+
Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
|
6
6
|
This program is free software; you can redistribute it and/or
|
7
7
|
modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%#-- copyright
|
2
2
|
OpenProject is a project management system.
|
3
3
|
|
4
|
-
Copyright (C)
|
4
|
+
Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
|
6
6
|
This program is free software; you can redistribute it and/or
|
7
7
|
modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%#-- copyright
|
2
2
|
OpenProject is a project management system.
|
3
3
|
|
4
|
-
Copyright (C)
|
4
|
+
Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
|
6
6
|
This program is free software; you can redistribute it and/or
|
7
7
|
modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%#-- copyright
|
2
2
|
OpenProject is a project management system.
|
3
3
|
|
4
|
-
Copyright (C)
|
4
|
+
Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
|
6
6
|
This program is free software; you can redistribute it and/or
|
7
7
|
modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%#-- copyright
|
2
2
|
OpenProject is a project management system.
|
3
3
|
|
4
|
-
Copyright (C)
|
4
|
+
Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
|
6
6
|
This program is free software; you can redistribute it and/or
|
7
7
|
modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%#-- copyright
|
2
2
|
OpenProject is a project management system.
|
3
3
|
|
4
|
-
Copyright (C)
|
4
|
+
Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
|
6
6
|
This program is free software; you can redistribute it and/or
|
7
7
|
modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%#-- copyright
|
2
2
|
OpenProject is a project management system.
|
3
3
|
|
4
|
-
Copyright (C)
|
4
|
+
Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
|
6
6
|
This program is free software; you can redistribute it and/or
|
7
7
|
modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%#-- copyright
|
2
2
|
OpenProject is a project management system.
|
3
3
|
|
4
|
-
Copyright (C)
|
4
|
+
Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
|
6
6
|
This program is free software; you can redistribute it and/or
|
7
7
|
modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%#-- copyright
|
2
2
|
OpenProject is a project management system.
|
3
3
|
|
4
|
-
Copyright (C)
|
4
|
+
Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
|
6
6
|
This program is free software; you can redistribute it and/or
|
7
7
|
modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%#-- copyright
|
2
2
|
OpenProject is a project management system.
|
3
3
|
|
4
|
-
Copyright (C)
|
4
|
+
Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
|
6
6
|
This program is free software; you can redistribute it and/or
|
7
7
|
modify it under the terms of the GNU General Public License version 3.
|
@@ -1,3 +1,15 @@
|
|
1
|
+
<%#-- copyright
|
2
|
+
OpenProject is a project management system.
|
3
|
+
|
4
|
+
Copyright (C) 2011-2013 the OpenProject Team
|
5
|
+
|
6
|
+
This program is free software; you can redistribute it and/or
|
7
|
+
modify it under the terms of the GNU General Public License version 3.
|
8
|
+
|
9
|
+
See doc/COPYRIGHT.rdoc for more details.
|
10
|
+
|
11
|
+
++#%>
|
12
|
+
|
1
13
|
<% content_for :header_tags do %>
|
2
14
|
<%= stylesheet_link_tag 'meeting/meeting.css' %>
|
3
15
|
<% end %>
|
data/config/routes.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -18,7 +18,7 @@ class CreateMeetings < ActiveRecord::Migration
|
|
18
18
|
t.column :location, :string
|
19
19
|
t.column :start_time, :datetime
|
20
20
|
t.column :duration, :float
|
21
|
-
|
21
|
+
|
22
22
|
t.timestamps
|
23
23
|
end
|
24
24
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -18,7 +18,7 @@ class CreateMeetingContents < ActiveRecord::Migration
|
|
18
18
|
t.column :text, :text
|
19
19
|
t.column :comment, :string
|
20
20
|
t.column :version, :integer
|
21
|
-
|
21
|
+
|
22
22
|
t.timestamps
|
23
23
|
end
|
24
24
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -19,7 +19,7 @@ class CreateMeetingParticipants < ActiveRecord::Migration
|
|
19
19
|
t.column :name, :string
|
20
20
|
t.column :invited, :boolean
|
21
21
|
t.column :attended, :boolean
|
22
|
-
|
22
|
+
|
23
23
|
t.timestamps
|
24
24
|
end
|
25
25
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
data/doc/COPYRIGHT.rdoc
CHANGED
data/lib/open_project/meeting.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,16 +1,13 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
8
8
|
#
|
9
9
|
# See doc/COPYRIGHT.rdoc for more details.
|
10
10
|
#++
|
11
|
-
|
12
|
-
require 'rails/engine'
|
13
|
-
|
14
11
|
module OpenProject::Meeting
|
15
12
|
class Engine < ::Rails::Engine
|
16
13
|
engine_name :openproject_meeting
|
@@ -23,12 +20,12 @@ module OpenProject::Meeting
|
|
23
20
|
|
24
21
|
name 'OpenProject Meeting'
|
25
22
|
author ((spec.authors.kind_of? Array) ? spec.authors[0] : spec.authors)
|
26
|
-
author_url
|
23
|
+
author_url "http://www.finn.de"
|
27
24
|
description spec.description
|
28
25
|
version spec.version
|
29
|
-
url
|
26
|
+
url spec.homepage
|
30
27
|
|
31
|
-
requires_openproject ">= 3.0.0pre9"
|
28
|
+
requires_openproject ">= 3.0.0pre9", "<= 3.0.0pre12"
|
32
29
|
|
33
30
|
project_module :meetings do
|
34
31
|
permission :create_meetings, {:meetings => [:new, :create, :copy]}, :require => :member
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -11,6 +11,6 @@
|
|
11
11
|
|
12
12
|
module OpenProject
|
13
13
|
module Meeting
|
14
|
-
VERSION = "3.0.
|
14
|
+
VERSION = "3.0.2"
|
15
15
|
end
|
16
16
|
end
|
data/lib/openproject-meeting.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
data/spec/models/meeting_spec.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
data/spec/spec_helper.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#-- copyright
|
2
2
|
# OpenProject is a project management system.
|
3
3
|
#
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2011-2013 the OpenProject Team
|
5
5
|
#
|
6
6
|
# This program is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU General Public License version 3.
|
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.2
|
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-08-
|
11
|
+
date: 2013-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -135,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
135
135
|
version: '0'
|
136
136
|
requirements: []
|
137
137
|
rubyforge_project:
|
138
|
-
rubygems_version: 2.0.
|
138
|
+
rubygems_version: 2.0.7
|
139
139
|
signing_key:
|
140
140
|
specification_version: 4
|
141
141
|
summary: This OpenProject plugin adds a meeting module with functionality to plan
|